2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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:28:48 +04:00
|
|
|
|
|
|
|
#ifndef nsBoxLayout_h___
|
|
|
|
#define nsBoxLayout_h___
|
|
|
|
|
2011-07-11 18:05:10 +04:00
|
|
|
#include "nsISupports.h"
|
2012-08-06 07:00:57 +04:00
|
|
|
#include "nsCoord.h"
|
|
|
|
#include "nsFrameList.h"
|
|
|
|
|
|
|
|
class nsIFrame;
|
|
|
|
class nsBoxLayoutState;
|
|
|
|
struct nsSize;
|
|
|
|
struct nsMargin;
|
2000-03-31 11:28:48 +04:00
|
|
|
|
2011-07-11 18:05:10 +04:00
|
|
|
#define NS_BOX_LAYOUT_IID \
|
2018-11-30 13:46:48 +03:00
|
|
|
{ \
|
2011-07-11 18:05:10 +04:00
|
|
|
0x09d522a7, 0x304c, 0x4137, { \
|
|
|
|
0xaf, 0xc9, 0xe0, 0x80, 0x2e, 0x89, 0xb7, 0xe8 \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
|
|
|
class nsIGridPart;
|
|
|
|
|
|
|
|
class nsBoxLayout : public nsISupports {
|
2014-06-24 02:40:01 +04:00
|
|
|
protected:
|
|
|
|
virtual ~nsBoxLayout() {}
|
|
|
|
|
2000-03-31 11:28:48 +04:00
|
|
|
public:
|
2011-07-11 18:05:10 +04:00
|
|
|
nsBoxLayout() {}
|
2000-03-31 11:28:48 +04:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2011-07-11 18:05:10 +04:00
|
|
|
NS_DECLARE_STATIC_IID_ACCESSOR(NS_BOX_LAYOUT_IID)
|
|
|
|
|
2016-04-21 07:28:32 +03:00
|
|
|
NS_IMETHOD XULLayout(nsIFrame* aBox, nsBoxLayoutState& aState);
|
2000-03-31 11:28:48 +04:00
|
|
|
|
2016-04-21 07:28:31 +03:00
|
|
|
virtual nsSize GetXULPrefSize(nsIFrame* aBox,
|
|
|
|
nsBoxLayoutState& aBoxLayoutState);
|
2016-04-21 07:28:31 +03:00
|
|
|
virtual nsSize GetXULMinSize(nsIFrame* aBox,
|
|
|
|
nsBoxLayoutState& aBoxLayoutState);
|
2016-04-21 07:28:31 +03:00
|
|
|
virtual nsSize GetXULMaxSize(nsIFrame* aBox,
|
|
|
|
nsBoxLayoutState& aBoxLayoutState);
|
2012-08-06 07:00:57 +04:00
|
|
|
virtual nscoord GetAscent(nsIFrame* aBox, nsBoxLayoutState& aBoxLayoutState);
|
|
|
|
virtual void ChildrenInserted(nsIFrame* aBox, nsBoxLayoutState& aState,
|
|
|
|
nsIFrame* aPrevBox,
|
2011-07-11 18:05:10 +04:00
|
|
|
const nsFrameList::Slice& aNewChildren) {}
|
2012-08-06 07:00:57 +04:00
|
|
|
virtual void ChildrenAppended(nsIFrame* aBox, nsBoxLayoutState& aState,
|
2011-07-11 18:05:10 +04:00
|
|
|
const nsFrameList::Slice& aNewChildren) {}
|
2012-08-06 07:00:57 +04:00
|
|
|
virtual void ChildrenRemoved(nsIFrame* aBox, nsBoxLayoutState& aState,
|
|
|
|
nsIFrame* aChildList) {}
|
|
|
|
virtual void ChildrenSet(nsIFrame* aBox, nsBoxLayoutState& aState,
|
|
|
|
nsIFrame* aChildList) {}
|
2014-07-24 21:03:26 +04:00
|
|
|
virtual void IntrinsicISizesDirty(nsIFrame* aBox, nsBoxLayoutState& aState) {}
|
2000-03-31 11:28:48 +04:00
|
|
|
|
2012-08-06 07:00:57 +04:00
|
|
|
virtual void AddBorderAndPadding(nsIFrame* aBox, nsSize& aSize);
|
|
|
|
virtual void AddMargin(nsIFrame* aChild, nsSize& aSize);
|
2000-03-31 11:28:48 +04:00
|
|
|
virtual void AddMargin(nsSize& aSize, const nsMargin& aMargin);
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
virtual nsIGridPart* AsGridPart() { return nullptr; }
|
2011-07-04 18:39:10 +04:00
|
|
|
|
2001-10-10 01:02:29 +04:00
|
|
|
static void AddLargestSize(nsSize& aSize, const nsSize& aToAdd);
|
|
|
|
static void AddSmallestSize(nsSize& aSize, const nsSize& aToAdd);
|
2000-03-31 11:28:48 +04:00
|
|
|
};
|
|
|
|
|
2011-07-11 18:05:10 +04:00
|
|
|
NS_DEFINE_STATIC_IID_ACCESSOR(nsBoxLayout, NS_BOX_LAYOUT_IID)
|
|
|
|
|
2000-03-31 11:28:48 +04:00
|
|
|
#endif
|