Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | /** |
michael@0 | 7 | |
michael@0 | 8 | Author: |
michael@0 | 9 | Eric D Vaughan |
michael@0 | 10 | |
michael@0 | 11 | **/ |
michael@0 | 12 | |
michael@0 | 13 | #ifndef nsGridRowLeafLayout_h___ |
michael@0 | 14 | #define nsGridRowLeafLayout_h___ |
michael@0 | 15 | |
michael@0 | 16 | #include "mozilla/Attributes.h" |
michael@0 | 17 | #include "nsGridRowLayout.h" |
michael@0 | 18 | #include "nsCOMPtr.h" |
michael@0 | 19 | |
michael@0 | 20 | /** |
michael@0 | 21 | * The nsBoxLayout implementation for nsGridRowLeafFrame. |
michael@0 | 22 | */ |
michael@0 | 23 | // XXXldb This needs a better name that indicates that it's for any grid |
michael@0 | 24 | // row. |
michael@0 | 25 | class nsGridRowLeafLayout : public nsGridRowLayout |
michael@0 | 26 | { |
michael@0 | 27 | public: |
michael@0 | 28 | |
michael@0 | 29 | friend already_AddRefed<nsBoxLayout> NS_NewGridRowLeafLayout(); |
michael@0 | 30 | |
michael@0 | 31 | virtual nsSize GetPrefSize(nsIFrame* aBox, nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE; |
michael@0 | 32 | virtual nsSize GetMinSize(nsIFrame* aBox, nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE; |
michael@0 | 33 | virtual nsSize GetMaxSize(nsIFrame* aBox, nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE; |
michael@0 | 34 | virtual void ChildAddedOrRemoved(nsIFrame* aBox, nsBoxLayoutState& aState) MOZ_OVERRIDE; |
michael@0 | 35 | NS_IMETHOD Layout(nsIFrame* aBox, nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE; |
michael@0 | 36 | virtual void CountRowsColumns(nsIFrame* aBox, int32_t& aRowCount, int32_t& aComputedColumnCount) MOZ_OVERRIDE; |
michael@0 | 37 | virtual void DirtyRows(nsIFrame* aBox, nsBoxLayoutState& aState) MOZ_OVERRIDE; |
michael@0 | 38 | virtual int32_t BuildRows(nsIFrame* aBox, nsGridRow* aRows) MOZ_OVERRIDE; |
michael@0 | 39 | virtual Type GetType() MOZ_OVERRIDE { return eRowLeaf; } |
michael@0 | 40 | |
michael@0 | 41 | protected: |
michael@0 | 42 | |
michael@0 | 43 | virtual void PopulateBoxSizes(nsIFrame* aBox, nsBoxLayoutState& aBoxLayoutState, |
michael@0 | 44 | nsBoxSize*& aBoxSizes, nscoord& aMinSize, |
michael@0 | 45 | nscoord& aMaxSize, int32_t& aFlexes) MOZ_OVERRIDE; |
michael@0 | 46 | virtual void ComputeChildSizes(nsIFrame* aBox, |
michael@0 | 47 | nsBoxLayoutState& aState, |
michael@0 | 48 | nscoord& aGivenSize, |
michael@0 | 49 | nsBoxSize* aBoxSizes, |
michael@0 | 50 | nsComputedBoxSize*& aComputedBoxSizes) MOZ_OVERRIDE; |
michael@0 | 51 | |
michael@0 | 52 | |
michael@0 | 53 | nsGridRowLeafLayout(); |
michael@0 | 54 | virtual ~nsGridRowLeafLayout(); |
michael@0 | 55 | //virtual void AddBorderAndPadding(nsIFrame* aBox, nsSize& aSize); |
michael@0 | 56 | |
michael@0 | 57 | private: |
michael@0 | 58 | |
michael@0 | 59 | }; // class nsGridRowLeafLayout |
michael@0 | 60 | |
michael@0 | 61 | #endif |
michael@0 | 62 |