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:20:50 +04:00
|
|
|
|
|
|
|
//
|
|
|
|
// Eric Vaughan
|
|
|
|
// Netscape Communications
|
|
|
|
//
|
|
|
|
// See documentation in associated header file
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
2011-12-28 00:18:48 +04:00
|
|
|
#include "nsContainerFrame.h"
|
2000-03-31 11:20:50 +04:00
|
|
|
#include "nsBoxLayout.h"
|
|
|
|
|
2020-04-18 15:06:09 +03:00
|
|
|
void nsBoxLayout::AddXULBorderAndPadding(nsIFrame* aBox, nsSize& aSize) {
|
|
|
|
nsIFrame::AddXULBorderAndPadding(aBox, aSize);
|
2000-03-31 11:20:50 +04:00
|
|
|
}
|
|
|
|
|
2020-04-18 15:06:09 +03:00
|
|
|
void nsBoxLayout::AddXULMargin(nsIFrame* aChild, nsSize& aSize) {
|
|
|
|
nsIFrame::AddXULMargin(aChild, aSize);
|
2000-03-31 11:20:50 +04:00
|
|
|
}
|
|
|
|
|
2020-04-18 15:06:09 +03:00
|
|
|
void nsBoxLayout::AddXULMargin(nsSize& aSize, const nsMargin& aMargin) {
|
|
|
|
nsIFrame::AddXULMargin(aSize, aMargin);
|
2000-03-31 11:20:50 +04:00
|
|
|
}
|
|
|
|
|
2016-04-21 07:28:31 +03:00
|
|
|
nsSize nsBoxLayout::GetXULPrefSize(nsIFrame* aBox,
|
|
|
|
nsBoxLayoutState& aBoxLayoutState) {
|
2008-01-09 10:28:39 +03:00
|
|
|
nsSize pref(0, 0);
|
2020-04-18 15:06:09 +03:00
|
|
|
AddXULBorderAndPadding(aBox, pref);
|
2000-03-31 11:20:50 +04:00
|
|
|
|
2008-01-09 10:28:39 +03:00
|
|
|
return pref;
|
2000-03-31 11:20:50 +04:00
|
|
|
}
|
|
|
|
|
2016-04-21 07:28:31 +03:00
|
|
|
nsSize nsBoxLayout::GetXULMinSize(nsIFrame* aBox,
|
|
|
|
nsBoxLayoutState& aBoxLayoutState) {
|
2008-01-09 10:28:39 +03:00
|
|
|
nsSize minSize(0, 0);
|
2020-04-18 15:06:09 +03:00
|
|
|
AddXULBorderAndPadding(aBox, minSize);
|
2008-01-09 10:28:39 +03:00
|
|
|
return minSize;
|
2000-03-31 11:20:50 +04:00
|
|
|
}
|
|
|
|
|
2016-04-21 07:28:31 +03:00
|
|
|
nsSize nsBoxLayout::GetXULMaxSize(nsIFrame* aBox,
|
|
|
|
nsBoxLayoutState& aBoxLayoutState) {
|
2020-04-18 15:06:09 +03:00
|
|
|
// AddXULBorderAndPadding () never changes maxSize (NS_UNCONSTRAINEDSIZE)
|
|
|
|
// AddXULBorderAndPadding(aBox, maxSize);
|
2019-06-05 02:41:20 +03:00
|
|
|
return nsSize(NS_UNCONSTRAINEDSIZE, NS_UNCONSTRAINEDSIZE);
|
2000-03-31 11:20:50 +04:00
|
|
|
}
|
|
|
|
|
2012-08-06 07:00:57 +04:00
|
|
|
nscoord nsBoxLayout::GetAscent(nsIFrame* aBox,
|
|
|
|
nsBoxLayoutState& aBoxLayoutState) {
|
2008-01-09 10:28:39 +03:00
|
|
|
return 0;
|
2000-03-31 11:20:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2016-04-21 07:28:32 +03:00
|
|
|
nsBoxLayout::XULLayout(nsIFrame* aBox, nsBoxLayoutState& aBoxLayoutState) {
|
2000-03-31 11:20:50 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsBoxLayout::AddLargestSize(nsSize& aSize, const nsSize& aSize2) {
|
|
|
|
if (aSize2.width > aSize.width) aSize.width = aSize2.width;
|
|
|
|
|
|
|
|
if (aSize2.height > aSize.height) aSize.height = aSize2.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsBoxLayout::AddSmallestSize(nsSize& aSize, const nsSize& aSize2) {
|
|
|
|
if (aSize2.width < aSize.width) aSize.width = aSize2.width;
|
|
|
|
|
|
|
|
if (aSize2.height < aSize.height) aSize.height = aSize2.height;
|
|
|
|
}
|
|
|
|
|
2014-04-27 11:06:00 +04:00
|
|
|
NS_IMPL_ISUPPORTS(nsBoxLayout, nsBoxLayout)
|