2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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 15:14:00 +00:00
|
|
|
#ifndef nsListControlFrame_h___
|
|
|
|
#define nsListControlFrame_h___
|
|
|
|
|
2000-03-03 04:28:59 +00:00
|
|
|
#ifdef DEBUG_evaughan
|
|
|
|
//#define DEBUG_rods
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG_rods
|
2001-02-23 01:45:45 +00:00
|
|
|
//#define DO_REFLOW_DEBUG
|
|
|
|
//#define DO_REFLOW_COUNTER
|
2000-03-03 04:28:59 +00:00
|
|
|
//#define DO_UNCONSTRAINED_CHECK
|
|
|
|
//#define DO_PIXELS
|
|
|
|
#endif
|
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2003-04-08 20:50:57 +00:00
|
|
|
#include "nsGfxScrollFrame.h"
|
1999-01-18 15:14:00 +00:00
|
|
|
#include "nsIFormControlFrame.h"
|
|
|
|
#include "nsIListControlFrame.h"
|
1999-08-26 14:54:07 +00:00
|
|
|
#include "nsISelectControlFrame.h"
|
2004-01-09 22:18:26 +00:00
|
|
|
#include "nsAutoPtr.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 05:38:33 +00:00
|
|
|
#include "nsSelectsAreaFrame.h"
|
1999-01-18 15:14:00 +00:00
|
|
|
|
2013-11-15 02:43:56 +00:00
|
|
|
// X.h defines KeyPress
|
|
|
|
#ifdef KeyPress
|
|
|
|
#undef KeyPress
|
|
|
|
#endif
|
|
|
|
|
1999-01-18 15:14:00 +00:00
|
|
|
class nsIDOMHTMLSelectElement;
|
2003-03-14 07:00:53 +00:00
|
|
|
class nsIDOMHTMLOptionsCollection;
|
2006-02-27 04:13:51 +00:00
|
|
|
class nsIComboboxControlFrame;
|
2004-07-31 23:15:21 +00:00
|
|
|
class nsPresContext;
|
2004-01-09 22:18:26 +00:00
|
|
|
class nsListEventListener;
|
2000-08-14 14:42:12 +00:00
|
|
|
|
2013-08-02 07:07:04 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class HTMLOptionElement;
|
2013-08-02 07:08:19 +00:00
|
|
|
class HTMLOptionsCollection;
|
2013-08-02 07:07:04 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
1999-01-18 15:14:00 +00:00
|
|
|
/**
|
1999-05-27 21:17:10 +00:00
|
|
|
* Frame-based listbox.
|
1999-01-18 15:14:00 +00:00
|
|
|
*/
|
1999-05-27 21:17:10 +00:00
|
|
|
|
2014-08-05 17:33:55 +00:00
|
|
|
class nsListControlFrame MOZ_FINAL : public nsHTMLScrollFrame,
|
|
|
|
public nsIFormControlFrame,
|
|
|
|
public nsIListControlFrame,
|
|
|
|
public nsISelectControlFrame
|
1999-01-18 15:14:00 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-05-24 22:20:40 +00:00
|
|
|
friend nsContainerFrame* NS_NewListControlFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
1999-01-18 15:14:00 +00:00
|
|
|
|
2009-01-12 19:20:59 +00:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
1999-01-18 15:14:00 +00: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-14 22:00:24 +00:00
|
|
|
// nsIFrame
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult HandleEvent(nsPresContext* aPresContext,
|
2014-02-18 08:36:33 +00:00
|
|
|
mozilla::WidgetGUIEvent* aEvent,
|
|
|
|
nsEventStatus* aEventStatus) MOZ_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-14 22:00:24 +00:00
|
|
|
|
2014-05-28 19:36:58 +00:00
|
|
|
virtual void SetInitialChildList(ChildListID aListID,
|
2014-05-28 19:36:58 +00:00
|
|
|
nsFrameList& aChildList) MOZ_OVERRIDE;
|
1999-04-12 22:14:31 +00:00
|
|
|
|
2014-07-24 17:03:25 +00:00
|
|
|
virtual nscoord GetPrefISize(nsRenderingContext *aRenderingContext) MOZ_OVERRIDE;
|
|
|
|
virtual nscoord GetMinISize(nsRenderingContext *aRenderingContext) MOZ_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 05:38:33 +00:00
|
|
|
|
2014-05-13 00:47:52 +00:00
|
|
|
virtual void Reflow(nsPresContext* aCX,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
1999-01-18 15:14:00 +00:00
|
|
|
|
2014-05-24 22:20:40 +00:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow) MOZ_OVERRIDE;
|
1999-01-18 15:14:00 +00:00
|
|
|
|
2014-05-13 00:47:53 +00:00
|
|
|
virtual void DidReflow(nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState* aReflowState,
|
|
|
|
nsDidReflowStatus aStatus) MOZ_OVERRIDE;
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) MOZ_OVERRIDE;
|
1999-01-18 15:14:00 +00:00
|
|
|
|
2013-02-14 11:12:27 +00:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2001-01-27 14:09:34 +00:00
|
|
|
|
2014-05-24 22:20:39 +00:00
|
|
|
virtual nsContainerFrame* GetContentInsertionFrame() MOZ_OVERRIDE;
|
2004-07-18 12:02:53 +00:00
|
|
|
|
2001-03-19 23:20:21 +00:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
2007-01-30 00:06:41 +00:00
|
|
|
* @see nsGkAtoms::scrollFrame
|
2001-03-19 23:20:21 +00:00
|
|
|
*/
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2001-03-19 23:20:21 +00:00
|
|
|
|
2013-05-14 16:33:23 +00:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const MOZ_OVERRIDE
|
2007-02-24 18:33:33 +00: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 05:38:33 +00:00
|
|
|
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const MOZ_OVERRIDE;
|
2001-10-25 01:08:40 +00: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-14 22:00:24 +00:00
|
|
|
// nsIFormControlFrame
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual nsresult SetFormProperty(nsIAtom* aName, const nsAString& aValue) MOZ_OVERRIDE;
|
2013-05-14 16:33:23 +00:00
|
|
|
virtual void SetFocus(bool aOn = true, bool aRepaint = false) MOZ_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-14 22:00:24 +00:00
|
|
|
|
2013-08-23 20:20:07 +00:00
|
|
|
virtual mozilla::ScrollbarStyles GetScrollbarStyles() const MOZ_OVERRIDE;
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual bool ShouldPropagateComputedHeightToScrolledContent() const MOZ_OVERRIDE;
|
2003-05-22 01:46:13 +00:00
|
|
|
|
2001-06-30 00:25:09 +00:00
|
|
|
// for accessibility purposes
|
2001-08-17 03:13:07 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2012-09-28 21:53:44 +00:00
|
|
|
virtual mozilla::a11y::AccType AccessibleType() MOZ_OVERRIDE;
|
2001-08-17 03:13:07 +00:00
|
|
|
#endif
|
2001-06-30 00:25:09 +00: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-14 22:00:24 +00:00
|
|
|
// nsIListControlFrame
|
2013-05-14 16:33:23 +00:00
|
|
|
virtual void SetComboboxFrame(nsIFrame* aComboboxFrame) MOZ_OVERRIDE;
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual int32_t GetSelectedIndex() MOZ_OVERRIDE;
|
2013-08-02 07:07:22 +00:00
|
|
|
virtual mozilla::dom::HTMLOptionElement* GetCurrentOption() MOZ_OVERRIDE;
|
2007-05-17 11:12:30 +00: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.
|
|
|
|
*/
|
2013-08-02 07:07:08 +00:00
|
|
|
virtual void GetOptionText(uint32_t aIndex, nsAString& aStr) MOZ_OVERRIDE;
|
2007-05-17 11:12:30 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void CaptureMouseEvents(bool aGrabMouseEvents) MOZ_OVERRIDE;
|
|
|
|
virtual nscoord GetHeightOfARow() MOZ_OVERRIDE;
|
2012-10-10 05:00:05 +00:00
|
|
|
virtual uint32_t GetNumberOfOptions() MOZ_OVERRIDE;
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void AboutToDropDown() MOZ_OVERRIDE;
|
2007-05-17 11:12:30 +00:00
|
|
|
|
|
|
|
/**
|
2013-08-08 22:04:59 +00:00
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
2007-05-17 11:12:30 +00:00
|
|
|
*/
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void AboutToRollup() MOZ_OVERRIDE;
|
2007-05-17 11:12:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dispatch a DOM onchange event synchroniously.
|
2013-08-08 22:04:59 +00:00
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
2007-05-17 11:12:30 +00:00
|
|
|
*/
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void FireOnChange() MOZ_OVERRIDE;
|
2007-05-17 11:12:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes aIndex the selected option of a combobox list.
|
2013-08-08 22:04:59 +00:00
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
2007-05-17 11:12:30 +00:00
|
|
|
*/
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void ComboboxFinish(int32_t aIndex) MOZ_OVERRIDE;
|
|
|
|
virtual void OnContentReset() MOZ_OVERRIDE;
|
2000-03-03 04:28:59 +00:00
|
|
|
|
1999-08-26 14:54:07 +00:00
|
|
|
// nsISelectControlFrame
|
2013-05-14 16:33:23 +00:00
|
|
|
NS_IMETHOD AddOption(int32_t index) MOZ_OVERRIDE;
|
2012-09-14 16:10:08 +00:00
|
|
|
NS_IMETHOD RemoveOption(int32_t index) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD DoneAddingChildren(bool aIsDone) MOZ_OVERRIDE;
|
2007-05-17 11:12:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the content (an option) by index and then set it as
|
|
|
|
* being selected or not selected.
|
|
|
|
*/
|
2012-09-14 16:10:08 +00:00
|
|
|
NS_IMETHOD OnOptionSelected(int32_t aIndex, bool aSelected) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD OnSetSelectedIndex(int32_t aOldIndex, int32_t aNewIndex) MOZ_OVERRIDE;
|
1999-08-26 14:54:07 +00:00
|
|
|
|
2013-08-08 22:04:59 +00:00
|
|
|
/**
|
|
|
|
* Mouse event listeners.
|
|
|
|
* @note These methods might destroy the frame, pres shell and other objects.
|
|
|
|
*/
|
|
|
|
nsresult MouseDown(nsIDOMEvent* aMouseEvent);
|
|
|
|
nsresult MouseUp(nsIDOMEvent* aMouseEvent);
|
2004-01-09 22:18:26 +00:00
|
|
|
nsresult MouseMove(nsIDOMEvent* aMouseEvent);
|
|
|
|
nsresult DragMove(nsIDOMEvent* aMouseEvent);
|
2013-08-08 22:04:59 +00:00
|
|
|
nsresult KeyDown(nsIDOMEvent* aKeyEvent);
|
|
|
|
nsresult KeyPress(nsIDOMEvent* aKeyEvent);
|
1999-08-26 14:54:07 +00:00
|
|
|
|
2007-05-17 11:12:30 +00:00
|
|
|
/**
|
2013-08-02 07:08:19 +00:00
|
|
|
* Returns the options collection for mContent, if any.
|
2007-05-17 11:12:30 +00:00
|
|
|
*/
|
2013-08-02 07:08:19 +00:00
|
|
|
mozilla::dom::HTMLOptionsCollection* GetOptions() const;
|
2013-08-02 07:07:04 +00:00
|
|
|
/**
|
|
|
|
* Returns the HTMLOptionElement for a given index in mContent's collection.
|
|
|
|
*/
|
|
|
|
mozilla::dom::HTMLOptionElement* GetOption(uint32_t aIndex) const;
|
2007-05-17 11:12:30 +00:00
|
|
|
|
2002-11-07 10:25:03 +00:00
|
|
|
static void ComboboxFocusSet();
|
|
|
|
|
2001-11-02 07:40:01 +00:00
|
|
|
// Helper
|
2011-09-29 06:19:26 +00: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 05:38:33 +00: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
|
|
|
|
*/
|
2011-04-08 01:04:40 +00:00
|
|
|
void PaintFocus(nsRenderingContext& aRC, nsPoint aPt);
|
2007-09-27 23:06:31 +00: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 05:18:28 +00:00
|
|
|
void InvalidateFocus();
|
2002-04-11 00:53:20 +00: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 05:38:33 +00:00
|
|
|
/**
|
|
|
|
* Function to calculate the height a row, for use with the "size" attribute.
|
|
|
|
* Can't be const because GetNumberOfOptions() isn't const.
|
|
|
|
*/
|
2012-01-25 01:21:29 +00:00
|
|
|
nscoord CalcHeightOfARow();
|
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 05:38:33 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function to ask whether we're currently in what might be the
|
|
|
|
* first pass of a two-pass reflow.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool MightNeedSecondPass() 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 05:38:33 +00:00
|
|
|
return mMightNeedSecondPass;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00: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 05:38:33 +00:00
|
|
|
nsHTMLScrollFrame::SetSuppressScrollbarUpdate(aSuppress);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return whether the list is in dropdown mode.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00: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 05:38:33 +00:00
|
|
|
|
2012-06-23 01:13:56 +00:00
|
|
|
/**
|
|
|
|
* Return the number of displayed rows in the list.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t GetNumDisplayRows() const { return mNumDisplayRows; }
|
2012-06-23 01:13:56 +00: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-10-08 03:01:15 +00:00
|
|
|
/**
|
|
|
|
* Dropdowns need views
|
|
|
|
*/
|
2013-05-14 16:33:23 +00:00
|
|
|
virtual bool NeedsView() MOZ_OVERRIDE { return IsInDropDownMode(); }
|
2009-10-08 03:01:15 +00:00
|
|
|
|
2009-08-08 22:00:26 +00:00
|
|
|
/**
|
|
|
|
* Frees statics owned by this class.
|
|
|
|
*/
|
|
|
|
static void Shutdown();
|
|
|
|
|
2002-10-25 02:53:45 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2007-05-17 11:12:30 +00:00
|
|
|
/**
|
|
|
|
* Post a custom DOM event for the change, so that accessibility can
|
|
|
|
* fire a native focus event for accessibility
|
|
|
|
* (Some 3rd party products need to track our focus)
|
|
|
|
*/
|
2002-10-25 02:53:45 +00:00
|
|
|
void FireMenuItemActiveEvent(); // Inform assistive tech what got focused
|
|
|
|
#endif
|
|
|
|
|
1999-06-21 20:41:56 +00:00
|
|
|
protected:
|
2007-05-17 11:12:30 +00:00
|
|
|
/**
|
|
|
|
* Updates the selected text in a combobox and then calls FireOnChange().
|
2013-08-08 22:04:59 +00:00
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
2011-10-17 14:59:28 +00:00
|
|
|
* Returns false if calling it destroyed |this|.
|
2007-05-17 11:12:30 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool UpdateSelection();
|
2007-05-17 11:12:30 +00:00
|
|
|
|
|
|
|
/**
|
2010-10-08 12:15:00 +00:00
|
|
|
* Returns whether mContent supports multiple selection.
|
2007-05-17 11:12:30 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetMultiple() const {
|
2010-10-08 12:15:00 +00:00
|
|
|
return mContent->HasAttr(kNameSpaceID_None, nsGkAtoms::multiple);
|
|
|
|
}
|
|
|
|
|
2007-05-17 11:12:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggles (show/hide) the combobox dropdown menu.
|
2013-08-08 22:04:59 +00:00
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
2007-05-17 11:12:30 +00:00
|
|
|
*/
|
2003-07-09 06:36:33 +00:00
|
|
|
void DropDownToggleKey(nsIDOMEvent* aKeyEvent);
|
2007-05-17 11:12:30 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nsresult IsOptionDisabled(int32_t anIndex, bool &aIsDisabled);
|
2013-08-08 22:04:59 +00:00
|
|
|
/**
|
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
|
|
|
*/
|
2013-08-02 07:08:13 +00:00
|
|
|
void ScrollToFrame(mozilla::dom::HTMLOptionElement& aOptElement);
|
2013-08-08 22:04:59 +00:00
|
|
|
/**
|
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
|
|
|
*/
|
2013-08-02 07:08:13 +00:00
|
|
|
void ScrollToIndex(int32_t anIndex);
|
2007-05-17 11:12:30 +00: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
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IgnoreMouseEventForSelection(nsIDOMEvent* aEvent);
|
2007-05-17 11:12:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* If the dropdown is showing and the mouse has moved below our
|
|
|
|
* border-inner-edge, then set mItemSelectionStarted.
|
|
|
|
*/
|
2005-06-02 09:00:48 +00:00
|
|
|
void UpdateInListState(nsIDOMEvent* aEvent);
|
2012-08-22 15:56:38 +00:00
|
|
|
void AdjustIndexForDisabledOpt(int32_t aStartIndex, int32_t &anNewIndex,
|
|
|
|
int32_t aNumOptions, int32_t aDoAdjustInc, int32_t aDoAdjustIncNext);
|
2007-05-17 11:12:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Resets the select back to it's original default values;
|
|
|
|
* those values as determined by the original HTML
|
|
|
|
*/
|
2012-05-21 05:18:28 +00:00
|
|
|
virtual void ResetList(bool aAllowScrolling);
|
2001-06-08 02:34:09 +00:00
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
nsListControlFrame(nsIPresShell* aShell, nsIDocument* aDocument, nsStyleContext* aContext);
|
1999-01-18 15:14:00 +00:00
|
|
|
virtual ~nsListControlFrame();
|
|
|
|
|
2007-05-17 11:12:30 +00:00
|
|
|
/**
|
|
|
|
* Sets the mSelectedIndex and mOldSelectedIndex from figuring out what
|
|
|
|
* item was selected using content
|
|
|
|
* @param aPoint the event point, in listcontrolframe coordinates
|
|
|
|
* @return NS_OK if it successfully found the selection
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
nsresult GetIndexFromDOMEvent(nsIDOMEvent* aMouseEvent, int32_t& aCurIndex);
|
2007-05-17 11:12:30 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool CheckIfAllFramesHere();
|
|
|
|
bool IsLeftButton(nsIDOMEvent* aMouseEvent);
|
2002-01-25 19:08:03 +00:00
|
|
|
|
2008-12-04 16:09:53 +00:00
|
|
|
// guess at a row height based on our own style.
|
2011-11-24 02:48:23 +00:00
|
|
|
nscoord CalcFallbackRowHeight(float aFontSizeInflation);
|
2005-11-04 23:36:27 +00:00
|
|
|
|
2014-07-24 17:03:26 +00:00
|
|
|
// CalcIntrinsicBSize computes our intrinsic height (taking the "size"
|
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 05:38:33 +00:00
|
|
|
// attribute into account). This should only be called in non-dropdown mode.
|
2014-07-24 17:03:26 +00:00
|
|
|
nscoord CalcIntrinsicBSize(nscoord aHeightOfARow, 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 05:38:33 +00:00
|
|
|
|
2002-01-25 23:35:44 +00:00
|
|
|
// Dropped down stuff
|
2012-08-22 15:56:38 +00: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 05:38:33 +00: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 00:47:52 +00:00
|
|
|
void ReflowAsDropdown(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
2002-01-25 23:35:44 +00:00
|
|
|
|
|
|
|
// Selection
|
2012-08-22 15:56:38 +00:00
|
|
|
bool SetOptionsSelectedFromFrame(int32_t aStartIndex,
|
|
|
|
int32_t aEndIndex,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aValue,
|
|
|
|
bool aClearAll);
|
2012-08-22 15:56:38 +00:00
|
|
|
bool ToggleOptionSelectedFromFrame(int32_t aIndex);
|
2013-08-08 22:04:59 +00:00
|
|
|
/**
|
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
bool SingleSelection(int32_t aClickedIndex, bool aDoToggle);
|
|
|
|
bool ExtendedSelection(int32_t aStartIndex, int32_t aEndIndex,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aClearAll);
|
2013-08-08 22:04:59 +00:00
|
|
|
/**
|
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
bool PerformSelection(int32_t aClickedIndex, bool aIsShift,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIsControl);
|
2013-08-08 22:04:59 +00:00
|
|
|
/**
|
|
|
|
* @note This method might destroy the frame, pres shell and other objects.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
bool HandleListSelection(nsIDOMEvent * aDOMEvent, int32_t selectedIndex);
|
|
|
|
void InitSelectionRange(int32_t aClickedIndex);
|
2013-07-25 06:09:29 +00:00
|
|
|
void PostHandleKeyEvent(int32_t aNewIndex, uint32_t aCharCode,
|
|
|
|
bool aIsShift, bool aIsControlOrMeta);
|
2002-01-25 23:35:44 +00:00
|
|
|
|
2012-05-05 13:24:45 +00: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 05:38:33 +00:00
|
|
|
nsSelectsAreaFrame* GetOptionsContainer() const {
|
2007-07-08 07:08:04 +00: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 05:38:33 +00:00
|
|
|
}
|
|
|
|
|
2012-05-05 13:24:45 +00: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 05:38:33 +00:00
|
|
|
nscoord HeightOfARow() {
|
|
|
|
return GetOptionsContainer()->HeightOfARow();
|
2005-10-23 22:11:27 +00:00
|
|
|
}
|
2012-10-31 22:00:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return how many displayable options/optgroups this frame has.
|
|
|
|
*/
|
|
|
|
uint32_t GetNumberOfRows();
|
2005-10-23 22:11:27 +00:00
|
|
|
|
1999-01-18 15:14:00 +00:00
|
|
|
// Data Members
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mStartSelectionIndex;
|
|
|
|
int32_t mEndSelectionIndex;
|
2001-11-02 07:40:01 +00:00
|
|
|
|
2006-02-27 04:13:51 +00:00
|
|
|
nsIComboboxControlFrame *mComboboxFrame;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mNumDisplayRows;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mChangesSinceDragStart:1;
|
|
|
|
bool mButtonDown:1;
|
2005-06-02 09:00:48 +00:00
|
|
|
// Has the user selected a visible item since we showed the
|
|
|
|
// dropdown?
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mItemSelectionStarted:1;
|
2000-02-15 15:04:38 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIsAllContentHere:1;
|
|
|
|
bool mIsAllFramesHere:1;
|
|
|
|
bool mHasBeenInitialized:1;
|
|
|
|
bool mNeedToReset:1;
|
|
|
|
bool mPostChildrenLoadedReset:1;
|
2000-03-03 04:28:59 +00:00
|
|
|
|
2005-03-08 03:05:03 +00:00
|
|
|
//bool value for multiple discontiguous selection
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mControlSelectMode:1;
|
2000-08-14 14:42:12 +00: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 05:38:33 +00: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 06:19:26 +00:00
|
|
|
bool mMightNeedSecondPass:1;
|
2001-02-23 01:45:45 +00:00
|
|
|
|
2009-09-04 21:07:38 +00:00
|
|
|
/**
|
|
|
|
* Set to aPresContext->HasPendingInterrupt() at the start of Reflow.
|
2011-10-17 14:59:28 +00:00
|
|
|
* Set to false at the end of DidReflow.
|
2009-09-04 21:07:38 +00:00
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mHasPendingInterruptAtStartOfReflow:1;
|
2009-09-04 21:07:38 +00:00
|
|
|
|
2012-06-23 01:13:56 +00:00
|
|
|
// True if the drop-down can show more rows. Always false if this list
|
|
|
|
// is not in drop-down mode.
|
|
|
|
bool mDropdownCanGrow:1;
|
|
|
|
|
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 05:38:33 +00:00
|
|
|
// The last computed height we reflowed at if we're a combobox dropdown.
|
|
|
|
// XXXbz should we be using a subclass here? Or just not worry
|
|
|
|
// about the extra member on listboxes?
|
|
|
|
nscoord mLastDropdownComputedHeight;
|
2005-06-02 09:00:48 +00:00
|
|
|
|
2009-08-25 19:07:57 +00:00
|
|
|
// At the time of our last dropdown, the backstop color to draw in case we
|
|
|
|
// are translucent.
|
|
|
|
nscolor mLastDropdownBackstopColor;
|
|
|
|
|
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 05:38:33 +00:00
|
|
|
nsRefPtr<nsListEventListener> mEventListener;
|
2000-03-03 04:28:59 +00:00
|
|
|
|
2002-04-11 00:53:20 +00:00
|
|
|
static nsListControlFrame * mFocused;
|
2009-08-08 22:00:26 +00:00
|
|
|
static nsString * sIncrementalString;
|
2009-08-25 19:07:57 +00:00
|
|
|
|
2000-03-03 04:28:59 +00:00
|
|
|
#ifdef DO_REFLOW_COUNTER
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mReflowId;
|
2000-03-03 04:28:59 +00:00
|
|
|
#endif
|
2000-01-09 01:41:11 +00:00
|
|
|
|
1999-08-31 13:22:50 +00:00
|
|
|
private:
|
2002-09-20 02:12:12 +00:00
|
|
|
// for incremental typing navigation
|
|
|
|
static nsAString& GetIncrementalString ();
|
2002-11-07 10:25:03 +00:00
|
|
|
static DOMTimeStamp gLastKeyTime;
|
2014-01-24 06:26:52 +00:00
|
|
|
|
|
|
|
class MOZ_STACK_CLASS AutoIncrementalSearchResetter
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AutoIncrementalSearchResetter() :
|
|
|
|
mCancelled(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
~AutoIncrementalSearchResetter()
|
|
|
|
{
|
|
|
|
if (!mCancelled) {
|
|
|
|
nsListControlFrame::GetIncrementalString().Truncate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void Cancel()
|
|
|
|
{
|
|
|
|
mCancelled = true;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
bool mCancelled;
|
|
|
|
};
|
1999-01-18 15:14:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsListControlFrame_h___ */
|
|
|
|
|