2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 18:30:37 +04:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-04-14 00:24:54 +04:00
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1998-04-14 00:24:54 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1998-04-14 00:24:54 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-29 00:14:13 +04:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:40:37 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 18:30:37 +04:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-29 00:14:13 +04:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 18:30:37 +04:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-29 00:14:13 +04:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 18:30:37 +04:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1998-04-14 00:24:54 +04:00
|
|
|
#ifndef nsPlaceholderFrame_h___
|
|
|
|
#define nsPlaceholderFrame_h___
|
|
|
|
|
2002-05-29 02:50:43 +04:00
|
|
|
#include "nsSplittableFrame.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2002-01-10 17:16:05 +03:00
|
|
|
nsresult NS_NewPlaceholderFrame(nsIPresShell* aPresShell, nsIFrame** aInstancePtrResult);
|
|
|
|
|
1998-11-14 22:26:57 +03:00
|
|
|
/**
|
1999-04-23 18:34:48 +04:00
|
|
|
* Implementation of a frame that's used as a placeholder for a frame that
|
|
|
|
* has been moved out of the flow
|
1998-11-14 22:26:57 +03:00
|
|
|
*/
|
2002-05-29 02:50:43 +04:00
|
|
|
class nsPlaceholderFrame : public nsSplittableFrame {
|
1998-04-14 00:24:54 +04:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Create a new placeholder frame
|
|
|
|
*/
|
1999-12-05 02:49:50 +03:00
|
|
|
friend nsresult NS_NewPlaceholderFrame(nsIPresShell* aPresShell, nsIFrame** aInstancePtrResult);
|
2002-09-25 02:13:20 +04:00
|
|
|
nsPlaceholderFrame();
|
|
|
|
virtual ~nsPlaceholderFrame();
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-04-23 18:34:48 +04:00
|
|
|
// Get/Set the associated out of flow frame
|
1999-05-04 00:54:24 +04:00
|
|
|
nsIFrame* GetOutOfFlowFrame() const {return mOutOfFlowFrame;}
|
|
|
|
void SetOutOfFlowFrame(nsIFrame* aFrame) {mOutOfFlowFrame = aFrame;}
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-10-03 08:28:05 +04:00
|
|
|
// nsIHTMLReflow overrides
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
1998-10-03 08:28:05 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
|
|
|
// nsIFrame overrides
|
1999-11-02 01:12:45 +03:00
|
|
|
#ifdef DEBUG
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD Paint(nsPresContext* aPresContext,
|
1998-07-17 03:32:04 +04:00
|
|
|
nsIRenderingContext& aRenderingContext,
|
2001-09-19 16:35:19 +04:00
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsFramePaintLayer aWhichLayer,
|
|
|
|
PRUint32 aFlags = 0);
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD List(nsPresContext* aPresContext, FILE* out, PRInt32 aIndent) const;
|
1999-11-02 01:12:45 +03:00
|
|
|
#endif
|
1998-07-01 01:35:07 +04:00
|
|
|
|
1999-04-23 18:34:48 +04:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsLayoutAtoms::placeholderFrame
|
|
|
|
*/
|
2003-10-31 23:19:18 +03:00
|
|
|
virtual nsIAtom* GetType() const;
|
1999-04-23 18:34:48 +04:00
|
|
|
|
1999-09-01 05:02:16 +04:00
|
|
|
#ifdef DEBUG
|
2001-11-14 04:33:42 +03:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
1999-09-01 05:02:16 +04:00
|
|
|
#endif
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2004-11-14 23:22:58 +03:00
|
|
|
virtual PRBool IsEmpty() { return PR_TRUE; }
|
|
|
|
virtual PRBool IsFrameEmpty() { return PR_TRUE; }
|
2001-10-25 05:08:40 +04:00
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
protected:
|
1999-04-23 18:34:48 +04:00
|
|
|
nsIFrame* mOutOfFlowFrame;
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsPlaceholderFrame_h___ */
|