/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: NPL 1.1/GPL 2.0/LGPL 2.1 * * 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/ * * 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. * * The Original Code is Mozilla Communicator client code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * David Hyatt (hyatt@netscape.com) * * Alternatively, the contents of this file may be used under the terms of * either 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"), * 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 * use your version of this file under the terms of the NPL, indicate your * 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 * the terms of any one of the NPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ /** Eric D Vaughan nsBoxFrame is a frame that can lay its children out either vertically or horizontally. It lays them out according to a min max or preferred size. nsIBox is implemented on frames and thus should not be refcounted. Eventually it should not inherit from nsISupports. **/ #ifndef nsIBox_h___ #define nsIBox_h___ #include "nsISupports.h" #include "nsIBoxLayout.h" // turn on to spew box state //#define DEBUG_LAYOUT class nsBoxLayoutState; struct nsRect; struct nsSize; // {162F6B5A-F926-11d3-BA06-001083023C1E} #define NS_IBOX_IID { 0x162f6b5a, 0xf926, 0x11d3, { 0xba, 0x6, 0x0, 0x10, 0x83, 0x2, 0x3c, 0x1e } } #define DEFAULT_ORDINAL_GROUP 1 class nsIBox : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_IBOX_IID) enum Halignment { hAlign_Left, hAlign_Right, hAlign_Center }; enum Valignment { vAlign_Top, vAlign_Middle, vAlign_BaseLine, vAlign_Bottom }; NS_IMETHOD GetPrefSize(nsBoxLayoutState& aBoxLayoutState, nsSize& aSize)=0; NS_IMETHOD GetMinSize(nsBoxLayoutState& aBoxLayoutState, nsSize& aSize)=0; NS_IMETHOD GetMaxSize(nsBoxLayoutState& aBoxLayoutState, nsSize& aSize)=0; NS_IMETHOD GetFlex(nsBoxLayoutState& aBoxLayoutState, nscoord& aFlex)=0; NS_IMETHOD GetOrdinal(nsBoxLayoutState& aBoxLayoutState, PRUint32& aOrdinal)=0; NS_IMETHOD GetAscent(nsBoxLayoutState& aBoxLayoutState, nscoord& aAscent)=0; NS_IMETHOD IsCollapsed(nsBoxLayoutState& aBoxLayoutState, PRBool& aCollapsed)=0; NS_IMETHOD Collapse(nsBoxLayoutState& aBoxLayoutState)=0; NS_IMETHOD UnCollapse(nsBoxLayoutState& aBoxLayoutState)=0; NS_IMETHOD SetBounds(nsBoxLayoutState& aBoxLayoutState, const nsRect& aRect)=0; NS_IMETHOD GetBounds(nsRect& aRect)=0; NS_IMETHOD Layout(nsBoxLayoutState& aBoxLayoutState)=0; NS_IMETHOD IsDirty(PRBool& aIsDirty)=0; NS_IMETHOD HasDirtyChildren(PRBool& aIsDirty)=0; NS_IMETHOD MarkDirty(nsBoxLayoutState& aState)=0; NS_IMETHOD MarkDirtyChildren(nsBoxLayoutState& aState)=0; NS_IMETHOD SetDebug(nsBoxLayoutState& aState, PRBool aDebug)=0; NS_IMETHOD GetDebug(PRBool& aDebug)=0; NS_IMETHOD GetChildBox(nsIBox** aBox)=0; NS_IMETHOD GetNextBox(nsIBox** aBox)=0; NS_IMETHOD SetNextBox(nsIBox* aBox)=0; NS_IMETHOD GetParentBox(nsIBox** aParent)=0; NS_IMETHOD SetParentBox(nsIBox* aParent)=0; NS_IMETHOD GetFrame(nsIFrame** aFrame)=0; NS_IMETHOD GetBorderAndPadding(nsMargin& aBorderAndPadding)=0; NS_IMETHOD GetBorder(nsMargin& aBorderAndPadding)=0; NS_IMETHOD GetPadding(nsMargin& aBorderAndPadding)=0; NS_IMETHOD GetInset(nsMargin& aInset)=0; NS_IMETHOD GetMargin(nsMargin& aMargin)=0; NS_IMETHOD SetLayoutManager(nsIBoxLayout* aLayout)=0; NS_IMETHOD GetLayoutManager(nsIBoxLayout** aLayout)=0; NS_IMETHOD GetContentRect(nsRect& aContentRect) = 0; NS_IMETHOD GetClientRect(nsRect& aContentRect) = 0; NS_IMETHOD GetVAlign(Valignment& aAlign) = 0; NS_IMETHOD GetHAlign(Halignment& aAlign) = 0; NS_IMETHOD GetOrientation(PRBool& aIsHorizontal)=0; NS_IMETHOD GetDirection(PRBool& aIsNormal)=0; NS_IMETHOD Redraw(nsBoxLayoutState& aState, const nsRect* aRect = nsnull, PRBool aImmediate = PR_FALSE)=0; NS_IMETHOD NeedsRecalc()=0; NS_IMETHOD GetDebugBoxAt(const nsPoint& aPoint, nsIBox** aBox)=0; NS_IMETHOD RelayoutDirtyChild(nsBoxLayoutState& aState, nsIBox* aChild)=0; NS_IMETHOD RelayoutStyleChange(nsBoxLayoutState& aState, nsIBox* aChild)=0; NS_IMETHOD RelayoutChildAtOrdinal(nsBoxLayoutState& aState, nsIBox* aChild)=0; NS_IMETHOD GetMouseThrough(PRBool& aMouseThrough)=0; NS_IMETHOD MarkChildrenStyleChange()=0; NS_IMETHOD MarkStyleChange(nsBoxLayoutState& aState)=0; #ifdef DEBUG_LAYOUT NS_IMETHOD DumpBox(FILE* out)=0; #endif NS_IMETHOD ChildrenMustHaveWidgets(PRBool& aMust)=0; NS_IMETHOD GetIndexOf(nsIBox* aChild, PRInt32* aIndex)=0; static PRBool AddCSSPrefSize(nsBoxLayoutState& aState, nsIBox* aBox, nsSize& aSize); static PRBool AddCSSMinSize(nsBoxLayoutState& aState, nsIBox* aBox, nsSize& aSize); static PRBool AddCSSMaxSize(nsBoxLayoutState& aState, nsIBox* aBox, nsSize& aSize); static PRBool AddCSSFlex(nsBoxLayoutState& aState, nsIBox* aBox, nscoord& aFlex); static PRBool AddCSSCollapsed(nsBoxLayoutState& aState, nsIBox* aBox, PRBool& aCollapsed); static PRBool AddCSSOrdinal(nsBoxLayoutState& aState, nsIBox* aBox, PRUint32& aOrdinal); }; #endif