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-01-18 18:14:00 +03:00
|
|
|
|
|
|
|
#ifndef nsComboboxControlFrame_h___
|
|
|
|
#define nsComboboxControlFrame_h___
|
|
|
|
|
2000-03-07 18:54:31 +03:00
|
|
|
#ifdef DEBUG_evaughan
|
|
|
|
//#define DEBUG_rods
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG_rods
|
2000-10-04 17:39:07 +04:00
|
|
|
//#define DO_REFLOW_DEBUG
|
|
|
|
//#define DO_REFLOW_COUNTER
|
2000-03-15 18:47:11 +03:00
|
|
|
//#define DO_UNCONSTRAINED_CHECK
|
2000-03-07 18:54:31 +03:00
|
|
|
//#define DO_PIXELS
|
|
|
|
//#define DO_NEW_REFLOW
|
|
|
|
#endif
|
2000-01-05 19:42:47 +03:00
|
|
|
|
2006-09-30 09:07:49 +04:00
|
|
|
//Mark used to indicate when onchange has been fired for current combobox item
|
|
|
|
#define NS_SKIP_NOTIFY_INDEX -2
|
|
|
|
|
2008-12-29 18:07:38 +03:00
|
|
|
#include "nsBlockFrame.h"
|
1999-01-18 18:14:00 +03:00
|
|
|
#include "nsIFormControlFrame.h"
|
2006-02-27 07:13:51 +03:00
|
|
|
#include "nsIComboboxControlFrame.h"
|
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
|
|
|
#include "nsIAnonymousContentCreator.h"
|
1999-08-26 18:54:07 +04:00
|
|
|
#include "nsISelectControlFrame.h"
|
1999-09-22 01:20:50 +04:00
|
|
|
#include "nsIRollupListener.h"
|
2005-01-28 01:52:53 +03:00
|
|
|
#include "nsPresState.h"
|
2000-03-07 18:54:31 +03:00
|
|
|
#include "nsCSSFrameConstructor.h"
|
2001-11-02 10:40:01 +03:00
|
|
|
#include "nsIStatefulFrame.h"
|
2009-09-01 15:22:31 +04:00
|
|
|
#include "nsIScrollableFrame.h"
|
2011-06-29 22:07:25 +04:00
|
|
|
#include "nsIDOMEventListener.h"
|
2006-05-10 21:30:15 +04:00
|
|
|
#include "nsThreadUtils.h"
|
1999-01-18 18:14:00 +03:00
|
|
|
|
|
|
|
class nsIView;
|
|
|
|
class nsStyleContext;
|
|
|
|
class nsIListControlFrame;
|
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
|
|
|
class nsComboboxDisplayFrame;
|
1999-01-18 18:14:00 +03:00
|
|
|
|
2008-12-29 18:07:38 +03:00
|
|
|
class nsComboboxControlFrame : public nsBlockFrame,
|
1999-01-18 18:14:00 +03:00
|
|
|
public nsIFormControlFrame,
|
2006-02-27 07:13:51 +03:00
|
|
|
public nsIComboboxControlFrame,
|
1999-08-26 18:54:07 +04:00
|
|
|
public nsIAnonymousContentCreator,
|
1999-09-15 09:31:31 +04:00
|
|
|
public nsISelectControlFrame,
|
2000-12-09 10:28:19 +03:00
|
|
|
public nsIRollupListener,
|
2001-11-02 10:40:01 +03:00
|
|
|
public nsIStatefulFrame
|
1999-01-18 18:14:00 +03:00
|
|
|
{
|
|
|
|
public:
|
2006-03-27 01:30:36 +04:00
|
|
|
friend nsIFrame* NS_NewComboboxControlFrame(nsIPresShell* aPresShell, nsStyleContext* aContext, PRUint32 aFlags);
|
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
|
|
|
friend class nsComboboxDisplayFrame;
|
1999-12-05 23:43:18 +03:00
|
|
|
|
2006-03-27 01:30:36 +04:00
|
|
|
nsComboboxControlFrame(nsStyleContext* aContext);
|
1999-01-18 18:14:00 +03:00
|
|
|
~nsComboboxControlFrame();
|
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
2007-02-18 20:34:09 +03:00
|
|
|
|
|
|
|
// nsIAnonymousContentCreator
|
2011-05-07 00:04:44 +04:00
|
|
|
virtual nsresult CreateAnonymousContent(nsTArray<ContentInfo>& aElements);
|
2010-10-15 19:34:35 +04:00
|
|
|
virtual void AppendAnonymousContentTo(nsBaseContentList& aElements,
|
|
|
|
PRUint32 aFilter);
|
2007-02-18 20:34:09 +03:00
|
|
|
virtual nsIFrame* CreateFrameFor(nsIContent* aContent);
|
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
|
|
|
|
2001-08-17 07:13:07 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
2010-06-28 16:02:03 +04:00
|
|
|
virtual already_AddRefed<nsAccessible> CreateAccessible();
|
2001-08-17 07:13:07 +04:00
|
|
|
#endif
|
2001-05-18 03:52:32 +04:00
|
|
|
|
2011-04-08 05:04:40 +04:00
|
|
|
virtual nscoord GetMinWidth(nsRenderingContext *aRenderingContext);
|
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-04-08 05:04:40 +04:00
|
|
|
virtual nscoord GetPrefWidth(nsRenderingContext *aRenderingContext);
|
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
|
|
|
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aCX,
|
1999-01-18 18:14:00 +03:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
|
1999-07-29 01:38:08 +04:00
|
|
|
nsGUIEvent* aEvent,
|
1999-11-24 09:03:41 +03:00
|
|
|
nsEventStatus* aEventStatus);
|
1999-07-29 01:38:08 +04:00
|
|
|
|
2006-01-26 05:29:17 +03:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
|
|
|
|
2011-04-08 05:04:40 +04:00
|
|
|
void PaintFocus(nsRenderingContext& aRenderingContext, nsPoint aPt);
|
2006-01-26 05:29:17 +03: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
|
|
|
// XXXbz this is only needed to prevent the quirk percent height stuff from
|
|
|
|
// leaking out of the combobox. We may be able to get rid of this as more
|
|
|
|
// things move to IsFrameOfType.
|
|
|
|
virtual nsIAtom* GetType() const;
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool IsFrameOfType(PRUint32 aFlags) const
|
2007-02-24 21:33:33 +03:00
|
|
|
{
|
2008-12-29 18:07:38 +03:00
|
|
|
return nsBlockFrame::IsFrameOfType(aFlags &
|
2007-02-24 21:33:33 +03:00
|
|
|
~(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
|
|
|
|
2009-09-01 15:22:31 +04:00
|
|
|
virtual nsIScrollableFrame* GetScrollTargetFrame() {
|
|
|
|
return do_QueryFrame(mDropdownFrame);
|
|
|
|
}
|
|
|
|
|
1999-11-02 01:12:45 +03:00
|
|
|
#ifdef NS_DEBUG
|
2001-11-14 04:33:42 +03:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
1999-11-02 01:12:45 +03:00
|
|
|
#endif
|
2009-12-24 08:21:15 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot);
|
2011-08-25 00:54:30 +04:00
|
|
|
NS_IMETHOD SetInitialChildList(ChildListID aListID,
|
2009-07-28 16:53:20 +04:00
|
|
|
nsFrameList& aChildList);
|
2012-03-08 05:57:37 +04:00
|
|
|
virtual const nsFrameList& GetChildList(ChildListID aListID) const;
|
2011-08-25 00:54:30 +04:00
|
|
|
virtual void GetChildLists(nsTArray<ChildList>* aLists) const;
|
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
|
|
|
|
2004-07-18 16:02:53 +04:00
|
|
|
virtual nsIFrame* GetContentInsertionFrame();
|
|
|
|
|
2005-12-13 02:53:06 +03:00
|
|
|
// nsIFormControlFrame
|
|
|
|
virtual nsresult SetFormProperty(nsIAtom* aName, const nsAString& aValue);
|
|
|
|
virtual nsresult GetFormProperty(nsIAtom* aName, nsAString& aValue) const;
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* Inform the control that it got (or lost) focus.
|
|
|
|
* If it lost focus, the dropdown menu will be rolled up if needed,
|
|
|
|
* and FireOnChange() will be called.
|
2011-10-17 18:59:28 +04:00
|
|
|
* @param aOn true if got focus, false if lost focus.
|
|
|
|
* @param aRepaint if true then force repaint (NOTE: we always force repaint currently)
|
2007-05-17 15:12:30 +04:00
|
|
|
* @note This method might destroy |this|.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual void SetFocus(bool aOn, bool aRepaint);
|
1999-03-06 22:43:13 +03:00
|
|
|
|
1999-01-18 18:14:00 +03:00
|
|
|
//nsIComboboxControlFrame
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool IsDroppedDown() { return mDroppedDown; }
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* @note This method might destroy |this|.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual void ShowDropDown(bool aDoDropDown);
|
2006-02-27 07:13:51 +03:00
|
|
|
virtual nsIFrame* GetDropDown();
|
|
|
|
virtual void SetDropDown(nsIFrame* aDropDownFrame);
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* @note This method might destroy |this|.
|
|
|
|
*/
|
2006-02-27 07:13:51 +03:00
|
|
|
virtual void RollupFromList();
|
2012-05-29 04:50:42 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the available space above and below this frame for
|
|
|
|
* placing the drop-down list, and the current 2D translation.
|
|
|
|
* Note that either or both can be less than or equal to zero,
|
|
|
|
* if both are then the drop-down should be closed.
|
|
|
|
*/
|
|
|
|
void GetAvailableDropdownSpace(nscoord* aAbove,
|
|
|
|
nscoord* aBelow,
|
|
|
|
nsPoint* aTranslation);
|
2006-02-27 07:13:51 +03:00
|
|
|
virtual PRInt32 GetIndexOfDisplayArea();
|
2009-02-18 06:27:25 +03:00
|
|
|
/**
|
|
|
|
* @note This method might destroy |this|.
|
|
|
|
*/
|
2006-02-27 07:13:51 +03:00
|
|
|
NS_IMETHOD RedisplaySelectedText();
|
|
|
|
virtual PRInt32 UpdateRecentIndex(PRInt32 aIndex);
|
|
|
|
virtual void OnContentReset();
|
1999-08-26 18:54:07 +04:00
|
|
|
|
|
|
|
// nsISelectControlFrame
|
2009-02-18 06:27:25 +03:00
|
|
|
NS_IMETHOD AddOption(PRInt32 index);
|
|
|
|
NS_IMETHOD RemoveOption(PRInt32 index);
|
2011-09-29 10:19:26 +04:00
|
|
|
NS_IMETHOD DoneAddingChildren(bool aIsDone);
|
|
|
|
NS_IMETHOD OnOptionSelected(PRInt32 aIndex, bool aSelected);
|
2005-02-05 01:56:13 +03:00
|
|
|
NS_IMETHOD OnSetSelectedIndex(PRInt32 aOldIndex, PRInt32 aNewIndex);
|
1999-09-15 09:31:31 +04:00
|
|
|
|
1999-09-22 01:20:50 +04:00
|
|
|
//nsIRollupListener
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* Hide the dropdown menu and stop capturing mouse events.
|
|
|
|
* @note This method might destroy |this|.
|
|
|
|
*/
|
2011-11-08 23:59:07 +04:00
|
|
|
virtual nsIContent* Rollup(PRUint32 aCount, bool aGetLastRolledUp = false);
|
2012-05-29 04:50:42 +04:00
|
|
|
virtual void NotifyGeometryChange();
|
2011-11-08 23:59:07 +04:00
|
|
|
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* A combobox should roll up if a mousewheel event happens outside of
|
|
|
|
* the popup area.
|
|
|
|
*/
|
2011-11-08 23:59:07 +04:00
|
|
|
virtual bool ShouldRollupOnMouseWheelEvent()
|
|
|
|
{ return true; }
|
1999-09-22 01:20:50 +04:00
|
|
|
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* A combobox should not roll up if activated by a mouse activate message
|
|
|
|
* (eg. X-mouse).
|
|
|
|
*/
|
2011-11-08 23:59:07 +04:00
|
|
|
virtual bool ShouldRollupOnMouseActivate()
|
|
|
|
{ return false; }
|
|
|
|
|
|
|
|
virtual PRUint32 GetSubmenuWidgetChain(nsTArray<nsIWidget*> *aWidgetChain)
|
|
|
|
{ return 0; }
|
2001-12-11 09:16:07 +03:00
|
|
|
|
2001-11-02 10:40:01 +03:00
|
|
|
//nsIStatefulFrame
|
2005-12-07 02:56:17 +03:00
|
|
|
NS_IMETHOD SaveState(SpecialStateID aStateID, nsPresState** aState);
|
|
|
|
NS_IMETHOD RestoreState(nsPresState* aState);
|
2001-11-02 10:40:01 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool ToolkitHasNativePopup();
|
2005-02-16 08:13:16 +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
|
|
|
protected:
|
2012-05-29 04:50:42 +04:00
|
|
|
friend class RedisplayTextEvent;
|
|
|
|
friend class nsAsyncResize;
|
|
|
|
friend class nsResizeDropdownAtFinalPosition;
|
2002-01-26 02:35:44 +03: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
|
|
|
// Utilities
|
|
|
|
nsresult ReflowDropdown(nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState);
|
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
|
|
|
|
2012-05-29 04:50:42 +04:00
|
|
|
enum DropDownPositionState {
|
|
|
|
// can't show the dropdown at its current position
|
|
|
|
eDropDownPositionSuppressed,
|
|
|
|
// a resize reflow is pending, don't show it yet
|
|
|
|
eDropDownPositionPendingResize,
|
|
|
|
// the dropdown has its final size and position and can be displayed here
|
|
|
|
eDropDownPositionFinal
|
|
|
|
};
|
|
|
|
DropDownPositionState AbsolutelyPositionDropDown();
|
|
|
|
|
2007-12-03 09:41:38 +03:00
|
|
|
// Helper for GetMinWidth/GetPrefWidth
|
2011-04-08 05:04:40 +04:00
|
|
|
nscoord GetIntrinsicWidth(nsRenderingContext* aRenderingContext,
|
2007-12-03 09:41:38 +03:00
|
|
|
nsLayoutUtils::IntrinsicWidthType aType);
|
2006-05-10 21:30:15 +04:00
|
|
|
|
|
|
|
class RedisplayTextEvent : public nsRunnable {
|
|
|
|
public:
|
|
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
RedisplayTextEvent(nsComboboxControlFrame *c) : mControlFrame(c) {}
|
|
|
|
void Revoke() { mControlFrame = nsnull; }
|
|
|
|
private:
|
|
|
|
nsComboboxControlFrame *mControlFrame;
|
|
|
|
};
|
|
|
|
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* Show or hide the dropdown list.
|
|
|
|
* @note This method might destroy |this|.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
void ShowPopup(bool aShowPopup);
|
2007-05-17 15:12:30 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show or hide the dropdown list.
|
2011-10-17 18:59:28 +04:00
|
|
|
* @param aShowList true to show, false to hide the dropdown.
|
2007-05-17 15:12:30 +04:00
|
|
|
* @note This method might destroy |this|.
|
2011-10-17 18:59:28 +04:00
|
|
|
* @return false if this frame is destroyed, true if still alive.
|
2007-05-17 15:12:30 +04:00
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool ShowList(bool aShowList);
|
2002-06-14 10:50:22 +04:00
|
|
|
void CheckFireOnChange();
|
2005-02-08 02:11:30 +03:00
|
|
|
void FireValueChangeEvent();
|
2002-01-26 02:35:44 +03:00
|
|
|
nsresult RedisplayText(PRInt32 aIndex);
|
2005-06-21 04:00:14 +04:00
|
|
|
void HandleRedisplayTextEvent();
|
2011-09-29 10:19:26 +04:00
|
|
|
void ActuallyDisplayText(bool aNotify);
|
1999-01-18 18:14:00 +03:00
|
|
|
|
2011-09-18 22:16:47 +04:00
|
|
|
private:
|
|
|
|
// If our total transform to the root frame of the root document is only a 2d
|
|
|
|
// translation then return that translation, otherwise returns (0,0).
|
|
|
|
nsPoint GetCSSTransformTranslation();
|
|
|
|
|
|
|
|
protected:
|
2000-03-07 18:54:31 +03:00
|
|
|
nsFrameList mPopupFrames; // additional named child list
|
2006-07-19 08:36:36 +04:00
|
|
|
nsCOMPtr<nsIContent> mDisplayContent; // Anonymous content used to display the current selection
|
2007-02-18 20:34:09 +03:00
|
|
|
nsCOMPtr<nsIContent> mButtonContent; // Anonymous content for the button
|
2000-03-07 18:54:31 +03:00
|
|
|
nsIFrame* mDisplayFrame; // frame to display selection
|
|
|
|
nsIFrame* mButtonFrame; // button frame
|
|
|
|
nsIFrame* mDropdownFrame; // dropdown list frame
|
|
|
|
nsIListControlFrame * mListControlFrame; // ListControl Interface for the dropdown frame
|
1999-01-18 18:14:00 +03: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
|
|
|
// The width of our display area. Used by that frame's reflow to
|
|
|
|
// size to the full width except the drop-marker.
|
|
|
|
nscoord mDisplayWidth;
|
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
nsRevocableEventPtr<RedisplayTextEvent> mRedisplayTextEvent;
|
2000-05-09 00:32:11 +04:00
|
|
|
|
2002-02-08 21:35:48 +03:00
|
|
|
PRInt32 mRecentSelectedIndex;
|
2002-01-26 02:35:44 +03:00
|
|
|
PRInt32 mDisplayedIndex;
|
2005-06-21 04:00:14 +04:00
|
|
|
nsString mDisplayedOptionText;
|
2002-01-26 02:35:44 +03:00
|
|
|
|
2001-06-30 04:25:09 +04:00
|
|
|
// make someone to listen to the button. If its programmatically pressed by someone like Accessibility
|
|
|
|
// then open or close the combo box.
|
2011-06-29 22:07:25 +04:00
|
|
|
nsCOMPtr<nsIDOMEventListener> mButtonListener;
|
2001-06-30 04:25:09 +04:00
|
|
|
|
2012-05-29 04:50:42 +04:00
|
|
|
// Current state of the dropdown list, true is dropped down.
|
|
|
|
bool mDroppedDown;
|
|
|
|
// See comment in HandleRedisplayTextEvent().
|
|
|
|
bool mInRedisplayText;
|
|
|
|
// Acting on ShowDropDown(true) is delayed until we're focused.
|
|
|
|
bool mDelayedShowDropDown;
|
|
|
|
|
2000-10-04 17:39:07 +04:00
|
|
|
// static class data member for Bug 32920
|
|
|
|
// only one control can be focused at a time
|
2012-05-29 04:50:42 +04:00
|
|
|
static nsComboboxControlFrame* sFocused;
|
2000-10-04 17:39:07 +04:00
|
|
|
|
2000-03-07 18:54:31 +03:00
|
|
|
#ifdef DO_REFLOW_COUNTER
|
|
|
|
PRInt32 mReflowId;
|
|
|
|
#endif
|
1999-01-18 18:14:00 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|