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/. */
|
1999-01-18 18:14:00 +03:00
|
|
|
#ifndef nsListControlFrame_h___
|
|
|
|
#define nsListControlFrame_h___
|
|
|
|
|
2000-03-03 07:28:59 +03:00
|
|
|
#ifdef DEBUG_evaughan
|
|
|
|
//#define DEBUG_rods
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG_rods
|
2001-02-23 04:45:45 +03:00
|
|
|
//#define DO_REFLOW_DEBUG
|
|
|
|
//#define DO_REFLOW_COUNTER
|
2000-03-03 07:28:59 +03:00
|
|
|
//#define DO_UNCONSTRAINED_CHECK
|
|
|
|
//#define DO_PIXELS
|
|
|
|
#endif
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2003-04-09 00:50:57 +04:00
|
|
|
#include "nsGfxScrollFrame.h"
|
1999-01-18 18:14:00 +03:00
|
|
|
#include "nsIFormControlFrame.h"
|
1999-08-26 18:54:07 +04:00
|
|
|
#include "nsISelectControlFrame.h"
|
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
|
|
|
#include "nsSelectsAreaFrame.h"
|
1999-01-18 18:14:00 +03:00
|
|
|
|
2013-11-15 06:43:56 +04:00
|
|
|
// X.h defines KeyPress
|
|
|
|
#ifdef KeyPress
|
|
|
|
# undef KeyPress
|
|
|
|
#endif
|
|
|
|
|
2018-09-26 17:41:12 +03:00
|
|
|
class nsComboboxControlFrame;
|
2004-08-01 03:15:21 +04:00
|
|
|
class nsPresContext;
|
2004-01-10 01:18:26 +03:00
|
|
|
class nsListEventListener;
|
2000-08-14 18:42:12 +04:00
|
|
|
|
2013-08-02 11:07:04 +04:00
|
|
|
namespace mozilla {
|
2019-04-16 10:24:49 +03:00
|
|
|
class PresShell;
|
2013-08-02 11:07:04 +04:00
|
|
|
namespace dom {
|
2018-04-20 07:49:29 +03:00
|
|
|
class Event;
|
2013-08-02 11:07:04 +04:00
|
|
|
class HTMLOptionElement;
|
2018-10-17 01:13:06 +03:00
|
|
|
class HTMLSelectElement;
|
2013-08-02 11:08:19 +04:00
|
|
|
class HTMLOptionsCollection;
|
2013-08-02 11:07:04 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
1999-01-18 18:14:00 +03:00
|
|
|
/**
|
1999-05-28 01:17:10 +04:00
|
|
|
* Frame-based listbox.
|
1999-01-18 18:14:00 +03:00
|
|
|
*/
|
1999-05-28 01:17:10 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsListControlFrame final : public nsHTMLScrollFrame,
|
2015-03-27 21:52:19 +03:00
|
|
|
public nsIFormControlFrame,
|
|
|
|
public nsISelectControlFrame {
|
1999-01-18 18:14:00 +03:00
|
|
|
public:
|
2017-01-08 23:26:59 +03:00
|
|
|
typedef mozilla::dom::HTMLOptionElement HTMLOptionElement;
|
|
|
|
|
2019-04-16 10:24:49 +03:00
|
|
|
friend nsContainerFrame* NS_NewListControlFrame(
|
|
|
|
mozilla::PresShell* aPresShell, ComputedStyle* aStyle);
|
1999-01-18 18:14:00 +03:00
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsListControlFrame)
|
1999-01-18 18:14:00 +03:00
|
|
|
|
fixed bugs #6303, #6753, #6756, #6759
Re-wrote nsComboboxFrame.
removed the obsolete nsHTMLAtoms: comboText,comoTextSelected,comTextSelectedFocus,dropDownVisible,
dropdownHidden, dropDownBtnOut, dropDownBtnPressed,
Added nsHTMLAtoms::combobox, nsLayoutAtoms::popupList
Renamed dropDownList to dropDownListPseudo
Added "arrow.gif" as to be used the background-image for the combobox button
ua.css - added rules for select to differentiate between comboboxes and listboxes.
Added style rules to more closely match the XPTOOLKIT XPWidgets look.
removed the following :-moz-combobox-text, -moz-combobox-textselected
nsIFormControlFrame.h - Added SetSuggestedSize method.
nsButtonControlFrame - Implemented SetSuggestedSize.
nsCSSFrameConstructor.cpp - Rewrote ConstructSelectFrame.
nsIWidget.h -Added GetAbsoluteBounds method.
nsWindow.cpp - Implemented GetAbsoluteBounds.
1999-07-15 02:00:24 +04:00
|
|
|
// nsIFrame
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult HandleEvent(nsPresContext* aPresContext,
|
2014-02-18 12:36:33 +04:00
|
|
|
mozilla::WidgetGUIEvent* aEvent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsEventStatus* aEventStatus) override;
|
2016-05-30 03:41:00 +03:00
|
|
|
|
2014-05-28 23:36:58 +04:00
|
|
|
virtual void SetInitialChildList(ChildListID aListID,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsFrameList& aChildList) override;
|
1999-04-13 02:14:31 +04:00
|
|
|
|
2017-06-09 22:14:53 +03:00
|
|
|
virtual nscoord GetPrefISize(gfxContext* aRenderingContext) override;
|
|
|
|
virtual nscoord GetMinISize(gfxContext* aRenderingContext) override;
|
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
|
|
|
|
2014-05-13 04:47:52 +04:00
|
|
|
virtual void Reflow(nsPresContext* aCX, ReflowOutput& aDesiredSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsReflowStatus& aStatus) override;
|
1999-01-18 18:14:00 +03:00
|
|
|
|
2014-05-25 02:20:40 +04:00
|
|
|
virtual void Init(nsIContent* aContent, nsContainerFrame* aParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* aPrevInFlow) override;
|
1999-01-18 18:14:00 +03:00
|
|
|
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY
|
2016-05-30 03:41:00 +03:00
|
|
|
virtual void DidReflow(nsPresContext* aPresContext,
|
2017-12-14 18:21:49 +03:00
|
|
|
const ReflowInput* aReflowInput) override;
|
2017-11-07 03:20:33 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot,
|
|
|
|
PostDestroyData& aPostDestroyData) override;
|
1999-01-18 18:14:00 +03:00
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
2015-03-21 19:28:04 +03:00
|
|
|
const nsDisplayListSet& aLists) override;
|
2001-01-27 17:09:34 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsContainerFrame* GetContentInsertionFrame() override;
|
2004-07-18 16:02:53 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const override {
|
2007-02-24 21:33:33 +03:00
|
|
|
return nsHTMLScrollFrame::IsFrameOfType(
|
|
|
|
aFlags & ~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock));
|
|
|
|
}
|
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
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override;
|
2001-10-25 05:08:40 +04:00
|
|
|
#endif
|
|
|
|
|
fixed bugs #6303, #6753, #6756, #6759
Re-wrote nsComboboxFrame.
removed the obsolete nsHTMLAtoms: comboText,comoTextSelected,comTextSelectedFocus,dropDownVisible,
dropdownHidden, dropDownBtnOut, dropDownBtnPressed,
Added nsHTMLAtoms::combobox, nsLayoutAtoms::popupList
Renamed dropDownList to dropDownListPseudo
Added "arrow.gif" as to be used the background-image for the combobox button
ua.css - added rules for select to differentiate between comboboxes and listboxes.
Added style rules to more closely match the XPTOOLKIT XPWidgets look.
removed the following :-moz-combobox-text, -moz-combobox-textselected
nsIFormControlFrame.h - Added SetSuggestedSize method.
nsButtonControlFrame - Implemented SetSuggestedSize.
nsCSSFrameConstructor.cpp - Rewrote ConstructSelectFrame.
nsIWidget.h -Added GetAbsoluteBounds method.
nsWindow.cpp - Implemented GetAbsoluteBounds.
1999-07-15 02:00:24 +04:00
|
|
|
// nsIFormControlFrame
|
2017-10-03 01:05:19 +03:00
|
|
|
virtual nsresult SetFormProperty(nsAtom* aName,
|
|
|
|
const nsAString& aValue) override;
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void SetFocus(bool aOn = true, bool aRepaint = false) override;
|
fixed bugs #6303, #6753, #6756, #6759
Re-wrote nsComboboxFrame.
removed the obsolete nsHTMLAtoms: comboText,comoTextSelected,comTextSelectedFocus,dropDownVisible,
dropdownHidden, dropDownBtnOut, dropDownBtnPressed,
Added nsHTMLAtoms::combobox, nsLayoutAtoms::popupList
Renamed dropDownList to dropDownListPseudo
Added "arrow.gif" as to be used the background-image for the combobox button
ua.css - added rules for select to differentiate between comboboxes and listboxes.
Added style rules to more closely match the XPTOOLKIT XPWidgets look.
removed the following :-moz-combobox-text, -moz-combobox-textselected
nsIFormControlFrame.h - Added SetSuggestedSize method.
nsButtonControlFrame - Implemented SetSuggestedSize.
nsCSSFrameConstructor.cpp - Rewrote ConstructSelectFrame.
nsIWidget.h -Added GetAbsoluteBounds method.
nsWindow.cpp - Implemented GetAbsoluteBounds.
1999-07-15 02:00:24 +04:00
|
|
|
|
2018-08-01 09:14:26 +03:00
|
|
|
virtual mozilla::ScrollStyles GetScrollStyles() const override;
|
2015-02-08 18:31:14 +03:00
|
|
|
virtual bool ShouldPropagateComputedBSizeToScrolledContent() const override;
|
2003-05-22 05:46:13 +04:00
|
|
|
|
2001-06-30 04:25:09 +04:00
|
|
|
// for accessibility purposes
|
2001-08-17 07:13:07 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual mozilla::a11y::AccType AccessibleType() override;
|
2001-08-17 07:13:07 +04:00
|
|
|
#endif
|
2001-06-30 04:25:09 +04:00
|
|
|
|
2018-09-26 17:41:01 +03:00
|
|
|
void SetComboboxFrame(nsIFrame* aComboboxFrame);
|
|
|
|
int32_t GetSelectedIndex();
|
|
|
|
HTMLOptionElement* GetCurrentOption();
|
2007-05-17 15:12:30 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the text of the currently selected item.
|
|
|
|
* If the there are zero items then an empty string is returned
|
|
|
|
* If there is nothing selected, then the 0th item's text is returned.
|
|
|
|
*/
|
2018-09-26 17:41:01 +03:00
|
|
|
void GetOptionText(uint32_t aIndex, nsAString& aStr);
|
2007-05-17 15:12:30 +04:00
|
|
|
|
2018-09-26 17:41:01 +03:00
|
|
|
void CaptureMouseEvents(bool aGrabMouseEvents);
|
|
|
|
nscoord GetBSizeOfARow();
|
|
|
|
uint32_t GetNumberOfOptions();
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY void AboutToDropDown();
|
2007-05-17 15:12:30 +04:00
|
|
|
|
|
|
|
/**
|
2013-08-09 02:04:59 +04:00
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
2007-05-17 15:12:30 +04:00
|
|
|
*/
|
2018-09-26 17:41:01 +03:00
|
|
|
void AboutToRollup();
|
2007-05-17 15:12:30 +04:00
|
|
|
|
|
|
|
/**
|
2016-06-01 01:10:00 +03:00
|
|
|
* Dispatch a DOM oninput and onchange event synchroniously.
|
2013-08-09 02:04:59 +04:00
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
2007-05-17 15:12:30 +04:00
|
|
|
*/
|
2018-11-21 06:59:02 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2018-09-26 17:41:01 +03:00
|
|
|
void FireOnInputAndOnChange();
|
2007-05-17 15:12:30 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes aIndex the selected option of a combobox list.
|
2013-08-09 02:04:59 +04:00
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
2007-05-17 15:12:30 +04:00
|
|
|
*/
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY void ComboboxFinish(int32_t aIndex);
|
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY void OnContentReset();
|
2000-03-03 07:28:59 +03:00
|
|
|
|
1999-08-26 18:54:07 +04:00
|
|
|
// nsISelectControlFrame
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD AddOption(int32_t index) override;
|
|
|
|
NS_IMETHOD RemoveOption(int32_t index) override;
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD DoneAddingChildren(bool aIsDone) override;
|
2007-05-17 15:12:30 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the content (an option) by index and then set it as
|
|
|
|
* being selected or not selected.
|
|
|
|
*/
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD OnOptionSelected(int32_t aIndex, bool aSelected) override;
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT_BOUNDARY
|
2019-01-22 22:03:07 +03:00
|
|
|
NS_IMETHOD_(void)
|
|
|
|
OnSetSelectedIndex(int32_t aOldIndex, int32_t aNewIndex) override;
|
1999-08-26 18:54:07 +04:00
|
|
|
|
2013-08-09 02:04:59 +04:00
|
|
|
/**
|
|
|
|
* Mouse event listeners.
|
|
|
|
* @note These methods might destroy the frame, pres shell and other objects.
|
|
|
|
*/
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2018-04-20 07:49:29 +03:00
|
|
|
nsresult MouseDown(mozilla::dom::Event* aMouseEvent);
|
2018-11-21 06:59:02 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2018-04-20 07:49:29 +03:00
|
|
|
nsresult MouseUp(mozilla::dom::Event* aMouseEvent);
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2018-04-20 07:49:29 +03:00
|
|
|
nsresult MouseMove(mozilla::dom::Event* aMouseEvent);
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2018-04-20 07:49:29 +03:00
|
|
|
nsresult DragMove(mozilla::dom::Event* aMouseEvent);
|
2018-11-21 06:59:02 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2018-04-20 07:49:29 +03:00
|
|
|
nsresult KeyDown(mozilla::dom::Event* aKeyEvent);
|
2018-11-21 06:59:02 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2018-04-20 07:49:29 +03:00
|
|
|
nsresult KeyPress(mozilla::dom::Event* aKeyEvent);
|
1999-08-26 18:54:07 +04:00
|
|
|
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
2013-08-02 11:08:19 +04:00
|
|
|
* Returns the options collection for mContent, if any.
|
2007-05-17 15:12:30 +04:00
|
|
|
*/
|
2013-08-02 11:08:19 +04:00
|
|
|
mozilla::dom::HTMLOptionsCollection* GetOptions() const;
|
2013-08-02 11:07:04 +04:00
|
|
|
/**
|
|
|
|
* Returns the HTMLOptionElement for a given index in mContent's collection.
|
|
|
|
*/
|
2017-01-08 23:26:59 +03:00
|
|
|
HTMLOptionElement* GetOption(uint32_t aIndex) const;
|
2007-05-17 15:12:30 +04:00
|
|
|
|
2002-11-07 13:25:03 +03:00
|
|
|
static void ComboboxFocusSet();
|
|
|
|
|
2001-11-02 10:40:01 +03:00
|
|
|
// Helper
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsFocused() { return this == mFocused; }
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to paint the focus rect when our nsSelectsAreaFrame is painting.
|
|
|
|
* @param aPt the offset of this frame, relative to the rendering reference
|
|
|
|
* frame
|
|
|
|
*/
|
2015-12-04 06:16:59 +03:00
|
|
|
void PaintFocus(mozilla::gfx::DrawTarget* aDrawTarget, nsPoint aPt);
|
|
|
|
|
2007-09-28 03:06:31 +04:00
|
|
|
/**
|
|
|
|
* If this frame IsFocused(), invalidates an area that includes anything
|
|
|
|
* that PaintFocus will or could have painted --- basically the whole
|
|
|
|
* GetOptionsContainer, plus some extra stuff if there are no options. This
|
|
|
|
* must be called every time mEndSelectionIndex changes.
|
|
|
|
*/
|
2012-05-21 09:18:28 +04:00
|
|
|
void InvalidateFocus();
|
2002-04-11 04:53:20 +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
|
|
|
/**
|
2015-02-08 18:31:14 +03:00
|
|
|
* Function to calculate the block size of a row, for use with the
|
|
|
|
* "size" attribute.
|
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
|
|
|
* Can't be const because GetNumberOfOptions() isn't const.
|
|
|
|
*/
|
2015-02-08 18:31:14 +03:00
|
|
|
nscoord CalcBSizeOfARow();
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to ask whether we're currently in what might be the
|
|
|
|
* first pass of a two-pass reflow.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool MightNeedSecondPass() const { return mMightNeedSecondPass; }
|
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
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
void SetSuppressScrollbarUpdate(bool aSuppress) {
|
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
|
|
|
nsHTMLScrollFrame::SetSuppressScrollbarUpdate(aSuppress);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether the list is in dropdown mode.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsInDropDownMode() const;
|
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
|
|
|
|
2012-06-23 05:13:56 +04:00
|
|
|
/**
|
|
|
|
* Return the number of displayed rows in the list.
|
|
|
|
*/
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t GetNumDisplayRows() const { return mNumDisplayRows; }
|
2012-06-23 05:13:56 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if the drop-down list can display more rows.
|
|
|
|
* (always false if not in drop-down mode)
|
|
|
|
*/
|
|
|
|
bool GetDropdownCanGrow() const { return mDropdownCanGrow; }
|
|
|
|
|
2009-08-09 02:00:26 +04:00
|
|
|
/**
|
|
|
|
* Frees statics owned by this class.
|
|
|
|
*/
|
|
|
|
static void Shutdown();
|
|
|
|
|
2002-10-25 06:53:45 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* Post a custom DOM event for the change, so that accessibility can
|
2016-05-30 03:41:00 +03:00
|
|
|
* fire a native focus event for accessibility
|
2007-05-17 15:12:30 +04:00
|
|
|
* (Some 3rd party products need to track our focus)
|
|
|
|
*/
|
2002-10-25 06:53:45 +04:00
|
|
|
void FireMenuItemActiveEvent(); // Inform assistive tech what got focused
|
|
|
|
#endif
|
|
|
|
|
1999-06-22 00:41:56 +04:00
|
|
|
protected:
|
2017-01-08 23:26:59 +03:00
|
|
|
/**
|
|
|
|
* Return the first non-disabled option starting at aFromIndex (inclusive).
|
2017-07-06 15:00:35 +03:00
|
|
|
* @param aFoundIndex if non-null, set to the index of the returned option
|
2017-01-08 23:26:59 +03:00
|
|
|
*/
|
|
|
|
HTMLOptionElement* GetNonDisabledOptionFrom(int32_t aFromIndex,
|
|
|
|
int32_t* aFoundIndex = nullptr);
|
|
|
|
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* Updates the selected text in a combobox and then calls FireOnChange().
|
2013-08-09 02:04:59 +04:00
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
2011-10-17 18:59:28 +04:00
|
|
|
* Returns false if calling it destroyed |this|.
|
2007-05-17 15:12:30 +04:00
|
|
|
*/
|
2018-11-21 06:59:02 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2017-12-07 21:13:50 +03:00
|
|
|
bool UpdateSelection();
|
2007-05-17 15:12:30 +04:00
|
|
|
|
|
|
|
/**
|
2010-10-08 16:15:00 +04:00
|
|
|
* Returns whether mContent supports multiple selection.
|
2007-05-17 15:12:30 +04:00
|
|
|
*/
|
2017-12-07 21:13:50 +03:00
|
|
|
bool GetMultiple() const {
|
|
|
|
return mContent->AsElement()->HasAttr(kNameSpaceID_None,
|
|
|
|
nsGkAtoms::multiple);
|
2010-10-08 16:15:00 +04:00
|
|
|
}
|
|
|
|
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* Toggles (show/hide) the combobox dropdown menu.
|
2013-08-09 02:04:59 +04:00
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
2007-05-17 15:12:30 +04:00
|
|
|
*/
|
2018-11-21 06:59:02 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2018-04-20 07:49:29 +03:00
|
|
|
void DropDownToggleKey(mozilla::dom::Event* aKeyEvent);
|
2007-05-17 15:12:30 +04:00
|
|
|
|
2018-10-17 01:13:06 +03:00
|
|
|
/**
|
|
|
|
* @return true if the <option> at aIndex is selectable by the user.
|
|
|
|
*/
|
|
|
|
bool IsOptionInteractivelySelectable(int32_t aIndex) const;
|
|
|
|
/**
|
|
|
|
* @return true if aOption in aSelect is selectable by the user.
|
|
|
|
*/
|
|
|
|
static bool IsOptionInteractivelySelectable(
|
|
|
|
mozilla::dom::HTMLSelectElement* aSelect,
|
|
|
|
mozilla::dom::HTMLOptionElement* aOption);
|
|
|
|
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT void ScrollToFrame(HTMLOptionElement& aOptElement);
|
|
|
|
|
|
|
|
MOZ_CAN_RUN_SCRIPT void ScrollToIndex(int32_t anIndex);
|
2007-05-17 15:12:30 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* When the user clicks on the comboboxframe to show the dropdown
|
|
|
|
* listbox, they then have to move the mouse into the list. We don't
|
|
|
|
* want to process those mouse events as selection events (i.e., to
|
|
|
|
* scroll list items into view). So we ignore the events until
|
|
|
|
* the mouse moves below our border-inner-edge, when
|
|
|
|
* mItemSelectionStarted is set.
|
|
|
|
*
|
|
|
|
* @param aPoint relative to this frame
|
|
|
|
*/
|
2018-04-20 07:49:29 +03:00
|
|
|
bool IgnoreMouseEventForSelection(mozilla::dom::Event* aEvent);
|
2007-05-17 15:12:30 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If the dropdown is showing and the mouse has moved below our
|
|
|
|
* border-inner-edge, then set mItemSelectionStarted.
|
|
|
|
*/
|
2018-04-20 07:49:29 +03:00
|
|
|
void UpdateInListState(mozilla::dom::Event* aEvent);
|
2012-08-22 19:56:38 +04:00
|
|
|
void AdjustIndexForDisabledOpt(int32_t aStartIndex, int32_t& anNewIndex,
|
|
|
|
int32_t aNumOptions, int32_t aDoAdjustInc,
|
|
|
|
int32_t aDoAdjustIncNext);
|
2007-05-17 15:12:30 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Resets the select back to it's original default values;
|
|
|
|
* those values as determined by the original HTML
|
|
|
|
*/
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT void ResetList(bool aAllowScrolling);
|
2001-06-08 06:34:09 +04:00
|
|
|
|
2019-02-05 19:45:54 +03:00
|
|
|
explicit nsListControlFrame(ComputedStyle* aStyle,
|
|
|
|
nsPresContext* aPresContext);
|
1999-01-18 18:14:00 +03:00
|
|
|
virtual ~nsListControlFrame();
|
|
|
|
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
2016-05-30 03:41:00 +03:00
|
|
|
* Sets the mSelectedIndex and mOldSelectedIndex from figuring out what
|
2007-05-17 15:12:30 +04:00
|
|
|
* item was selected using content
|
|
|
|
* @param aPoint the event point, in listcontrolframe coordinates
|
|
|
|
* @return NS_OK if it successfully found the selection
|
|
|
|
*/
|
2018-04-20 07:49:29 +03:00
|
|
|
nsresult GetIndexFromDOMEvent(mozilla::dom::Event* aMouseEvent,
|
|
|
|
int32_t& aCurIndex);
|
2007-05-17 15:12:30 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool CheckIfAllFramesHere();
|
2018-04-20 07:49:29 +03:00
|
|
|
bool IsLeftButton(mozilla::dom::Event* aMouseEvent);
|
2002-01-25 22:08:03 +03:00
|
|
|
|
2015-02-08 18:31:14 +03:00
|
|
|
// guess at a row block size based on our own style.
|
|
|
|
nscoord CalcFallbackRowBSize(float aFontSizeInflation);
|
2005-11-05 02:36:27 +03:00
|
|
|
|
2015-02-08 18:31:14 +03:00
|
|
|
// CalcIntrinsicBSize computes our intrinsic block size (taking the
|
|
|
|
// "size" attribute into account). This should only be called in
|
|
|
|
// non-dropdown mode.
|
|
|
|
nscoord CalcIntrinsicBSize(nscoord aBSizeOfARow, int32_t aNumberOfOptions);
|
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
|
|
|
|
2002-01-26 02:35:44 +03:00
|
|
|
// Dropped down stuff
|
2012-08-22 19:56:38 +04:00
|
|
|
void SetComboboxItem(int32_t aIndex);
|
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
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to reflow ourselves as a dropdown list. This differs from
|
|
|
|
* reflow as a listbox because the criteria for needing a second
|
|
|
|
* pass are different. This will be called from Reflow() as needed.
|
|
|
|
*/
|
2014-05-13 04:47:52 +04:00
|
|
|
void ReflowAsDropdown(nsPresContext* aPresContext, ReflowOutput& aDesiredSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput,
|
2014-05-13 04:47:52 +04:00
|
|
|
nsReflowStatus& aStatus);
|
2002-01-26 02:35:44 +03:00
|
|
|
|
|
|
|
// Selection
|
2012-08-22 19:56:38 +04:00
|
|
|
bool SetOptionsSelectedFromFrame(int32_t aStartIndex, int32_t aEndIndex,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aValue, bool aClearAll);
|
2012-08-22 19:56:38 +04:00
|
|
|
bool ToggleOptionSelectedFromFrame(int32_t aIndex);
|
2019-05-06 16:57:46 +03:00
|
|
|
|
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2012-08-22 19:56:38 +04:00
|
|
|
bool SingleSelection(int32_t aClickedIndex, bool aDoToggle);
|
|
|
|
bool ExtendedSelection(int32_t aStartIndex, int32_t aEndIndex,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aClearAll);
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2012-08-22 19:56:38 +04:00
|
|
|
bool PerformSelection(int32_t aClickedIndex, bool aIsShift, bool aIsControl);
|
2019-05-06 16:57:46 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2018-04-20 07:49:29 +03:00
|
|
|
bool HandleListSelection(mozilla::dom::Event* aDOMEvent,
|
|
|
|
int32_t selectedIndex);
|
2012-08-22 19:56:38 +04:00
|
|
|
void InitSelectionRange(int32_t aClickedIndex);
|
2018-11-21 06:59:02 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2013-07-25 10:09:29 +04:00
|
|
|
void PostHandleKeyEvent(int32_t aNewIndex, uint32_t aCharCode, bool aIsShift,
|
|
|
|
bool aIsControlOrMeta);
|
2002-01-26 02:35:44 +03:00
|
|
|
|
2012-05-05 17:24:45 +04:00
|
|
|
public:
|
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* GetOptionsContainer() const {
|
2007-07-08 11:08:04 +04:00
|
|
|
return static_cast<nsSelectsAreaFrame*>(GetScrolledFrame());
|
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
|
|
|
}
|
|
|
|
|
2012-05-05 17:24:45 +04:00
|
|
|
protected:
|
2015-02-08 18:31:14 +03:00
|
|
|
nscoord BSizeOfARow() { return GetOptionsContainer()->BSizeOfARow(); }
|
2012-11-01 02:00:36 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return how many displayable options/optgroups this frame has.
|
|
|
|
*/
|
|
|
|
uint32_t GetNumberOfRows();
|
2016-05-30 03:41:00 +03:00
|
|
|
|
2017-03-21 03:22:13 +03:00
|
|
|
nsView* GetViewInternal() const override { return mView; }
|
|
|
|
void SetViewInternal(nsView* aView) override { mView = aView; }
|
|
|
|
|
1999-01-18 18:14:00 +03:00
|
|
|
// Data Members
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mStartSelectionIndex;
|
|
|
|
int32_t mEndSelectionIndex;
|
2001-11-02 10:40:01 +03:00
|
|
|
|
2018-09-26 17:41:12 +03:00
|
|
|
nsComboboxControlFrame* mComboboxFrame;
|
2017-03-21 03:22:13 +03:00
|
|
|
|
|
|
|
// The view is only created (& non-null) if IsInDropDownMode() is true.
|
|
|
|
nsView* mView;
|
|
|
|
|
|
|
|
uint32_t mNumDisplayRows;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mChangesSinceDragStart : 1;
|
|
|
|
bool mButtonDown : 1;
|
2017-03-21 03:22:13 +03:00
|
|
|
|
|
|
|
// Has the user selected a visible item since we showed the dropdown?
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mItemSelectionStarted : 1;
|
2000-02-15 18:04:38 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mIsAllContentHere : 1;
|
|
|
|
bool mIsAllFramesHere : 1;
|
|
|
|
bool mHasBeenInitialized : 1;
|
|
|
|
bool mNeedToReset : 1;
|
|
|
|
bool mPostChildrenLoadedReset : 1;
|
2000-03-03 07:28:59 +03:00
|
|
|
|
2005-03-08 06:05:03 +03:00
|
|
|
// bool value for multiple discontiguous selection
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mControlSelectMode : 1;
|
2000-08-14 18:42:12 +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
|
|
|
// True if we're in the middle of a reflow and might need a second
|
|
|
|
// pass. This only happens for auto heights.
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mMightNeedSecondPass : 1;
|
2001-02-23 04:45:45 +03:00
|
|
|
|
2009-09-05 01:07:38 +04:00
|
|
|
/**
|
|
|
|
* Set to aPresContext->HasPendingInterrupt() at the start of Reflow.
|
2011-10-17 18:59:28 +04:00
|
|
|
* Set to false at the end of DidReflow.
|
2009-09-05 01:07:38 +04:00
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mHasPendingInterruptAtStartOfReflow : 1;
|
2009-09-05 01:07:38 +04:00
|
|
|
|
2012-06-23 05:13:56 +04:00
|
|
|
// True if the drop-down can show more rows. Always false if this list
|
|
|
|
// is not in drop-down mode.
|
|
|
|
bool mDropdownCanGrow : 1;
|
2014-11-05 23:32:00 +03:00
|
|
|
|
|
|
|
// True if the selection can be set to nothing or disabled options.
|
|
|
|
bool mForceSelection : 1;
|
2016-05-30 03:41:00 +03:00
|
|
|
|
2015-02-08 18:31:14 +03:00
|
|
|
// The last computed block size we reflowed at if we're a combobox
|
|
|
|
// dropdown.
|
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
|
|
|
// XXXbz should we be using a subclass here? Or just not worry
|
|
|
|
// about the extra member on listboxes?
|
2015-02-08 18:31:14 +03:00
|
|
|
nscoord mLastDropdownComputedBSize;
|
2005-06-02 13:00:48 +04:00
|
|
|
|
2009-08-25 23:07:57 +04:00
|
|
|
// At the time of our last dropdown, the backstop color to draw in case we
|
|
|
|
// are translucent.
|
|
|
|
nscolor mLastDropdownBackstopColor;
|
2016-05-30 03:41:00 +03:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsListEventListener> mEventListener;
|
2000-03-03 07:28:59 +03:00
|
|
|
|
2002-04-11 04:53:20 +04:00
|
|
|
static nsListControlFrame* mFocused;
|
2009-08-09 02:00:26 +04:00
|
|
|
static nsString* sIncrementalString;
|
2009-08-25 23:07:57 +04:00
|
|
|
|
2000-03-03 07:28:59 +03:00
|
|
|
#ifdef DO_REFLOW_COUNTER
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mReflowId;
|
2000-03-03 07:28:59 +03:00
|
|
|
#endif
|
2000-01-09 04:41:11 +03:00
|
|
|
|
1999-08-31 17:22:50 +04:00
|
|
|
private:
|
2002-09-20 06:12:12 +04:00
|
|
|
// for incremental typing navigation
|
|
|
|
static nsAString& GetIncrementalString();
|
2002-11-07 13:25:03 +03:00
|
|
|
static DOMTimeStamp gLastKeyTime;
|
2014-01-24 10:26:52 +04:00
|
|
|
|
2016-03-28 15:34:26 +03:00
|
|
|
class MOZ_RAII AutoIncrementalSearchResetter {
|
2014-01-24 10:26:52 +04:00
|
|
|
public:
|
|
|
|
AutoIncrementalSearchResetter() : mCancelled(false) {}
|
|
|
|
~AutoIncrementalSearchResetter() {
|
|
|
|
if (!mCancelled) {
|
|
|
|
nsListControlFrame::GetIncrementalString().Truncate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void Cancel() { mCancelled = true; }
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2014-01-24 10:26:52 +04:00
|
|
|
private:
|
|
|
|
bool mCancelled;
|
|
|
|
};
|
1999-01-18 18:14:00 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsListControlFrame_h___ */
|