gecko-dev/layout/xul/nsBox.h

128 строки
3.9 KiB
C
Исходник Обычный вид История

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2012-05-21 15:12:37 +04:00
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
2000-03-31 11:02:06 +04:00
#ifndef nsBox_h___
#define nsBox_h___
#include "mozilla/Attributes.h"
#include "nsIFrame.h"
2000-03-31 11:02:06 +04:00
class nsITheme;
class nsBox : public nsIFrame {
2000-03-31 11:02:06 +04:00
public:
friend class nsIFrame;
static void Shutdown();
virtual nsSize GetXULPrefSize(nsBoxLayoutState& aBoxLayoutState) override;
virtual nsSize GetXULMinSize(nsBoxLayoutState& aBoxLayoutState) override;
virtual nsSize GetXULMaxSize(nsBoxLayoutState& aBoxLayoutState) override;
virtual nscoord GetXULFlex() override;
virtual nscoord GetXULBoxAscent(nsBoxLayoutState& aBoxLayoutState) override;
virtual nsSize GetXULMinSizeForScrollArea(nsBoxLayoutState& aBoxLayoutState) override;
virtual bool IsXULCollapsed() override;
2000-03-31 11:02:06 +04:00
virtual void SetXULBounds(nsBoxLayoutState& aBoxLayoutState, const nsRect& aRect,
bool aRemoveOverflowAreas = false) override;
virtual nsresult GetXULBorder(nsMargin& aBorderAndPadding) override;
virtual nsresult GetXULPadding(nsMargin& aBorderAndPadding) override;
virtual nsresult GetXULMargin(nsMargin& aMargin) override;
virtual Valignment GetXULVAlign() const override { return vAlign_Top; }
virtual Halignment GetXULHAlign() const override { return hAlign_Left; }
2000-03-31 11:02:06 +04:00
virtual nsresult XULRelayoutChildAtOrdinal(nsIFrame* aChild) override;
#ifdef DEBUG_LAYOUT
NS_IMETHOD GetDebugBoxAt(const nsPoint& aPoint, nsIFrame** aBox);
virtual nsresult GetXULDebug(bool& aDebug) override;
virtual nsresult SetXULDebug(nsBoxLayoutState& aState, bool aDebug) override;
virtual nsresult XULDumpBox(FILE* out) override;
void PropagateDebug(nsBoxLayoutState& aState);
#endif
explicit nsBox(mozilla::LayoutFrameType);
virtual ~nsBox();
2000-03-31 11:02:06 +04:00
/**
* Returns true if this box clips its children, e.g., if this box is an sc
rollbox.
*/
virtual bool DoesClipChildren();
virtual bool ComputesOwnOverflowArea() = 0;
nsresult SyncLayout(nsBoxLayoutState& aBoxLayoutState);
2000-03-31 11:02:06 +04:00
bool DoesNeedRecalc(const nsSize& aSize);
bool DoesNeedRecalc(nscoord aCoord);
void SizeNeedsRecalc(nsSize& aSize);
void CoordNeedsRecalc(nscoord& aCoord);
2000-03-31 11:02:06 +04:00
void AddBorderAndPadding(nsSize& aSize);
2000-03-31 11:02:06 +04:00
static void AddBorderAndPadding(nsIFrame* aBox, nsSize& aSize);
static void AddMargin(nsIFrame* aChild, nsSize& aSize);
2000-03-31 11:02:06 +04:00
static void AddMargin(nsSize& aSize, const nsMargin& aMargin);
static nsSize BoundsCheckMinMax(const nsSize& aMinSize, const nsSize& aMaxSize);
static nsSize BoundsCheck(const nsSize& aMinSize, const nsSize& aPrefSize, const nsSize& aMaxSize);
static nscoord BoundsCheck(nscoord aMinSize, nscoord aPrefSize, nscoord aMaxSize);
2000-03-31 11:02:06 +04:00
static nsIFrame* GetChildXULBox(const nsIFrame* aFrame);
static nsIFrame* GetNextXULBox(const nsIFrame* aFrame);
static nsIFrame* GetParentXULBox(const nsIFrame* aFrame);
2000-03-31 11:02:06 +04:00
protected:
#ifdef DEBUG_LAYOUT
virtual void AppendAttribute(const nsAutoString& aAttribute, const nsAutoString& aValue, nsAutoString& aResult);
virtual void ListBox(nsAutoString& aResult);
#endif
2000-03-31 11:02:06 +04:00
nsresult BeginXULLayout(nsBoxLayoutState& aState);
NS_IMETHOD DoXULLayout(nsBoxLayoutState& aBoxLayoutState);
nsresult EndXULLayout(nsBoxLayoutState& aState);
#ifdef DEBUG_LAYOUT
virtual void GetBoxName(nsAutoString& aName);
void PropagateDebug(nsBoxLayoutState& aState);
#endif
static bool gGotTheme;
static nsITheme* gTheme;
2000-03-31 11:02:06 +04:00
enum eMouseThrough {
unset,
2000-03-31 11:02:06 +04:00
never,
always
};
private:
//nscoord mX;
//nscoord mY;
};
2002-09-10 01:36:49 +04:00
#ifdef DEBUG_LAYOUT
#define NS_BOX_ASSERTION(box,expr,str) \
if (!(expr)) { \
box->XULDumpBox(stdout); \
NS_DebugBreak(NSDebugAssertion, str, #expr, __FILE__, __LINE__); \
}
#else
#define NS_BOX_ASSERTION(box,expr,str) {}
#endif
2000-03-31 11:02:06 +04:00
#endif