1998-10-01 01:01:11 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
#ifndef nsSplittableFrame_h___
|
|
|
|
#define nsSplittableFrame_h___
|
|
|
|
|
|
|
|
#include "nsFrame.h"
|
|
|
|
|
|
|
|
// Derived class that allows splitting
|
|
|
|
class nsSplittableFrame : public nsFrame
|
|
|
|
{
|
|
|
|
public:
|
1999-02-25 06:27:57 +03:00
|
|
|
NS_IMETHOD Init(nsIPresContext& aPresContext,
|
|
|
|
nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIStyleContext* aContext,
|
|
|
|
nsIFrame* aPrevInFlow);
|
|
|
|
|
1998-10-01 01:01:11 +04:00
|
|
|
NS_IMETHOD IsSplittable(nsSplittableType& aIsSplittable) const;
|
1999-09-01 05:02:16 +04:00
|
|
|
#ifdef DEBUG
|
1999-08-31 07:09:40 +04:00
|
|
|
NS_IMETHOD SizeOf(nsISizeOfHandler* aHandler, PRUint32* aResult) const;
|
1999-09-01 05:02:16 +04:00
|
|
|
#endif
|
1998-10-01 01:01:11 +04:00
|
|
|
|
|
|
|
// Flow member functions.
|
1999-02-24 07:48:08 +03:00
|
|
|
NS_IMETHOD GetPrevInFlow(nsIFrame** aPrevInFlow) const;
|
1998-10-01 01:01:11 +04:00
|
|
|
NS_IMETHOD SetPrevInFlow(nsIFrame*);
|
1999-02-24 07:48:08 +03:00
|
|
|
NS_IMETHOD GetNextInFlow(nsIFrame** aNextInFlow) const;
|
1998-10-01 01:01:11 +04:00
|
|
|
NS_IMETHOD SetNextInFlow(nsIFrame*);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the first frame in our current flow.
|
|
|
|
*/
|
|
|
|
nsIFrame* GetFirstInFlow() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the last frame in our current flow.
|
|
|
|
*/
|
|
|
|
nsIFrame* GetLastInFlow() const;
|
|
|
|
|
1999-10-22 18:53:52 +04:00
|
|
|
// Remove the frame from the flow. Connects the frame's prev-in-flow
|
|
|
|
// and its next-in-flow
|
|
|
|
static void RemoveFromFlow(nsIFrame* aFrame);
|
|
|
|
|
|
|
|
// Detach from previous frame in flow
|
|
|
|
static void BreakFromPrevFlow(nsIFrame* aFrame);
|
1998-10-01 01:01:11 +04:00
|
|
|
|
|
|
|
nsIFrame* GetPrevInFlow();
|
|
|
|
nsIFrame* GetNextInFlow();
|
|
|
|
|
|
|
|
protected:
|
1999-11-02 01:12:45 +03:00
|
|
|
#ifdef DEBUG
|
1999-10-27 07:56:14 +04:00
|
|
|
virtual void DumpBaseRegressionData(nsIPresContext* aPresContext, FILE* out, PRInt32 aIndent);
|
1999-11-02 01:12:45 +03:00
|
|
|
#endif
|
1998-11-19 21:51:53 +03:00
|
|
|
|
1998-10-01 01:01:11 +04:00
|
|
|
nsIFrame* mPrevInFlow;
|
|
|
|
nsIFrame* mNextInFlow;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsSplittableFrame_h___ */
|