2001-09-29 00:14:13 +04:00
|
|
|
/* -*- 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/. */
|
1999-09-03 18:25:15 +04:00
|
|
|
#ifndef nsSelectsAreaFrame_h___
|
|
|
|
#define nsSelectsAreaFrame_h___
|
|
|
|
|
2008-12-29 18:07:38 +03:00
|
|
|
#include "nsBlockFrame.h"
|
1999-09-03 18:25:15 +04:00
|
|
|
|
2008-12-29 18:07:38 +03:00
|
|
|
class nsSelectsAreaFrame : public nsBlockFrame
|
1999-09-03 18:25:15 +04:00
|
|
|
{
|
|
|
|
public:
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
friend nsIFrame* NS_NewSelectsAreaFrame(nsIPresShell* aShell, nsStyleContext* aContext, uint32_t aFlags);
|
1999-09-03 18:25:15 +04:00
|
|
|
|
2006-01-26 05:29:17 +03:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
1999-09-03 18:25:15 +04:00
|
|
|
|
2006-01-26 05:29:17 +03:00
|
|
|
nsresult BuildDisplayListInternal(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
1999-09-03 18:25:15 +04:00
|
|
|
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aCX,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
|
|
|
nscoord HeightOfARow() const { return mHeightOfARow; }
|
|
|
|
|
2006-03-27 01:30:36 +04:00
|
|
|
protected:
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
nsSelectsAreaFrame(nsStyleContext* aContext) :
|
2008-12-29 18:07:38 +03:00
|
|
|
nsBlockFrame(aContext),
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 08:38:33 +03:00
|
|
|
mHeightOfARow(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
// We cache the height of a single row so that changes to the "size"
|
|
|
|
// attribute, padding, etc. can all be handled with only one reflow. We'll
|
|
|
|
// have to reflow twice if someone changes our font size or something like
|
|
|
|
// that, so that the heights of our options will change.
|
|
|
|
nscoord mHeightOfARow;
|
1999-09-03 18:25:15 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsSelectsAreaFrame_h___ */
|