1998-06-09 04:51:44 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1998-06-09 04:51:44 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00: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-06-09 04:51:44 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1998-06-09 04:51:44 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:40:37 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1998-06-09 04:51:44 +00:00
|
|
|
*/
|
|
|
|
#ifndef nsHTMLReflowCommand_h___
|
|
|
|
#define nsHTMLReflowCommand_h___
|
|
|
|
|
|
|
|
#include "nsIReflowCommand.h"
|
|
|
|
#include "nsVoidArray.h"
|
|
|
|
|
1998-11-04 19:26:25 +00:00
|
|
|
class nsIAtom;
|
|
|
|
|
1998-06-09 04:51:44 +00:00
|
|
|
/**
|
|
|
|
* An HTML reflow command
|
|
|
|
*/
|
|
|
|
class nsHTMLReflowCommand : public nsIReflowCommand {
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Construct an HTML reflow command of type aReflowType and with target
|
|
|
|
* frame aTargetFrame. You can also specify an optional child frame, e.g.
|
|
|
|
* to indicate the inserted child frame
|
|
|
|
*/
|
|
|
|
nsHTMLReflowCommand(nsIFrame* aTargetFrame,
|
|
|
|
ReflowType aReflowType,
|
1998-11-04 19:26:25 +00:00
|
|
|
nsIFrame* aChildFrame = nsnull,
|
|
|
|
nsIAtom* aAttribute = nsnull);
|
1998-06-09 04:51:44 +00:00
|
|
|
|
|
|
|
virtual ~nsHTMLReflowCommand();
|
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIReflowCommand
|
1999-11-24 06:03:41 +00:00
|
|
|
NS_IMETHOD Dispatch(nsIPresContext* aPresContext,
|
1998-10-01 04:46:11 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-10-02 01:12:39 +00:00
|
|
|
const nsSize& aMaxSize,
|
|
|
|
nsIRenderingContext& aRendContext);
|
1999-01-20 05:11:17 +00:00
|
|
|
NS_IMETHOD GetNext(nsIFrame*& aNextFrame, PRBool aRemove);
|
1998-06-09 04:51:44 +00:00
|
|
|
NS_IMETHOD GetTarget(nsIFrame*& aTargetFrame) const;
|
1998-09-10 19:32:14 +00:00
|
|
|
NS_IMETHOD SetTarget(nsIFrame* aTargetFrame);
|
1998-06-09 04:51:44 +00:00
|
|
|
NS_IMETHOD GetType(ReflowType& aReflowType) const;
|
1998-11-04 19:26:25 +00:00
|
|
|
|
|
|
|
/** can return nsnull. If nsnull is not returned, the caller must NS_RELEASE aAttribute */
|
|
|
|
NS_IMETHOD GetAttribute(nsIAtom *& aAttribute) const;
|
|
|
|
|
1998-06-09 04:51:44 +00:00
|
|
|
NS_IMETHOD GetChildFrame(nsIFrame*& aChildFrame) const;
|
1998-11-10 04:31:02 +00:00
|
|
|
NS_IMETHOD GetChildListName(nsIAtom*& aListName) const;
|
1998-12-29 03:38:16 +00:00
|
|
|
NS_IMETHOD SetChildListName(nsIAtom* aListName);
|
1998-09-18 17:18:37 +00:00
|
|
|
NS_IMETHOD GetPrevSiblingFrame(nsIFrame*& aSiblingFrame) const;
|
1999-09-15 00:24:54 +00:00
|
|
|
NS_IMETHOD List(FILE* out) const;
|
1998-06-09 04:51:44 +00:00
|
|
|
|
1998-06-30 23:19:10 +00:00
|
|
|
protected:
|
|
|
|
void BuildPath();
|
1999-09-15 00:24:54 +00:00
|
|
|
nsIFrame* GetContainingBlock(nsIFrame* aFloater) const;
|
1998-06-30 23:19:10 +00:00
|
|
|
|
1998-06-09 04:51:44 +00:00
|
|
|
private:
|
|
|
|
ReflowType mType;
|
|
|
|
nsIFrame* mTargetFrame;
|
|
|
|
nsIFrame* mChildFrame;
|
1998-09-18 17:18:37 +00:00
|
|
|
nsIFrame* mPrevSiblingFrame;
|
1998-11-04 19:26:25 +00:00
|
|
|
nsIAtom* mAttribute;
|
1998-12-29 03:38:16 +00:00
|
|
|
nsIAtom* mListName;
|
1998-06-09 04:51:44 +00:00
|
|
|
nsVoidArray mPath;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsHTMLReflowCommand_h___ */
|