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 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
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
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"
|
2001-11-02 10:40:01 +03:00
|
|
|
#include "nsIStatefulFrame.h"
|
2006-05-10 21:30:15 +04:00
|
|
|
#include "nsThreadUtils.h"
|
1999-01-18 18:14:00 +03:00
|
|
|
|
2018-09-26 17:41:01 +03:00
|
|
|
class nsListControlFrame;
|
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;
|
2013-08-28 18:30:02 +04:00
|
|
|
class nsIDOMEventListener;
|
|
|
|
class nsIScrollableFrame;
|
2018-03-29 01:01:46 +03:00
|
|
|
class nsTextNode;
|
1999-01-18 18:14:00 +03:00
|
|
|
|
2015-01-21 19:23:28 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace gfx {
|
|
|
|
class DrawTarget;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace gfx
|
|
|
|
} // namespace mozilla
|
2015-01-21 19:23:28 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsComboboxControlFrame final : public nsBlockFrame,
|
2015-03-27 21:52:19 +03:00
|
|
|
public nsIFormControlFrame,
|
|
|
|
public nsIComboboxControlFrame,
|
|
|
|
public nsIAnonymousContentCreator,
|
|
|
|
public nsISelectControlFrame,
|
|
|
|
public nsIRollupListener,
|
|
|
|
public nsIStatefulFrame
|
1999-01-18 18:14:00 +03:00
|
|
|
{
|
2015-01-21 19:23:28 +03:00
|
|
|
typedef mozilla::gfx::DrawTarget DrawTarget;
|
|
|
|
|
1999-01-18 18:14:00 +03:00
|
|
|
public:
|
2017-01-27 04:47:52 +03:00
|
|
|
friend nsComboboxControlFrame* NS_NewComboboxControlFrame(nsIPresShell* aPresShell,
|
2018-03-22 21:20:41 +03:00
|
|
|
ComputedStyle* aStyle,
|
2017-01-27 04:47:52 +03:00
|
|
|
nsFrameState 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
|
|
|
|
2018-03-22 21:20:41 +03:00
|
|
|
explicit nsComboboxControlFrame(ComputedStyle* aStyle);
|
1999-01-18 18:14:00 +03:00
|
|
|
~nsComboboxControlFrame();
|
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsComboboxControlFrame)
|
2007-02-18 20:34:09 +03:00
|
|
|
|
|
|
|
// nsIAnonymousContentCreator
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult CreateAnonymousContent(nsTArray<ContentInfo>& aElements) override;
|
2014-07-16 22:41:57 +04:00
|
|
|
virtual void AppendAnonymousContentTo(nsTArray<nsIContent*>& aElements,
|
2015-03-21 19:28:04 +03:00
|
|
|
uint32_t aFilter) override;
|
2017-01-27 00:12:42 +03:00
|
|
|
|
2018-03-29 01:01:46 +03:00
|
|
|
nsIContent* GetDisplayNode() const;
|
2017-01-27 00:12:42 +03:00
|
|
|
nsIFrame* CreateFrameForDisplayNode();
|
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
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual mozilla::a11y::AccType AccessibleType() override;
|
2001-08-17 07:13:07 +04:00
|
|
|
#endif
|
2001-05-18 03:52:32 +04:00
|
|
|
|
2017-06-09 22:14:53 +03:00
|
|
|
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
|
|
|
|
2017-06-09 22:14:53 +03:00
|
|
|
virtual nscoord GetPrefISize(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,
|
2016-07-21 13:36:38 +03:00
|
|
|
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-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;
|
1999-07-29 01:38:08 +04: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;
|
2006-01-26 05:29:17 +03:00
|
|
|
|
2015-01-21 19:23:28 +03:00
|
|
|
void PaintFocus(DrawTarget& aDrawTarget, nsPoint aPt);
|
2006-01-26 05:29:17 +03: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
|
|
|
{
|
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
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIScrollableFrame* GetScrollTargetFrame() override {
|
2009-09-01 15:22:31 +04:00
|
|
|
return do_QueryFrame(mDropdownFrame);
|
|
|
|
}
|
|
|
|
|
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;
|
1999-11-02 01:12:45 +03:00
|
|
|
#endif
|
2017-11-07 03:20:33 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot, PostDestroyData& aPostDestroyData) override;
|
2014-05-28 23:36:58 +04:00
|
|
|
virtual void SetInitialChildList(ChildListID aListID,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsFrameList& aChildList) override;
|
|
|
|
virtual const nsFrameList& GetChildList(ChildListID aListID) const override;
|
|
|
|
virtual void GetChildLists(nsTArray<ChildList>* aLists) const 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
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsContainerFrame* GetContentInsertionFrame() override;
|
2004-07-18 16:02:53 +04:00
|
|
|
|
2017-06-16 12:22:33 +03:00
|
|
|
// Return the dropdown and display frame.
|
|
|
|
void AppendDirectlyOwnedAnonBoxes(nsTArray<OwnedAnonBox>& aResult) override;
|
2017-03-15 21:00:43 +03:00
|
|
|
|
2005-12-13 02:53:06 +03:00
|
|
|
// nsIFormControlFrame
|
2017-10-03 01:05:19 +03:00
|
|
|
virtual nsresult SetFormProperty(nsAtom* aName, const nsAString& aValue) override;
|
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|.
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void SetFocus(bool aOn, bool aRepaint) override;
|
1999-03-06 22:43:13 +03:00
|
|
|
|
1999-01-18 18:14:00 +03:00
|
|
|
//nsIComboboxControlFrame
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsDroppedDown() override { return mDroppedDown; }
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* @note This method might destroy |this|.
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void ShowDropDown(bool aDoDropDown) override;
|
|
|
|
virtual nsIFrame* GetDropDown() override;
|
|
|
|
virtual void SetDropDown(nsIFrame* aDropDownFrame) override;
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* @note This method might destroy |this|.
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void RollupFromList() override;
|
2012-06-23 05:13:56 +04:00
|
|
|
|
|
|
|
/**
|
2015-02-08 18:31:14 +03:00
|
|
|
* Return the available space before and after this frame for
|
2012-06-23 05:13:56 +04:00
|
|
|
* 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.
|
|
|
|
*/
|
2015-02-08 18:31:14 +03:00
|
|
|
void GetAvailableDropdownSpace(mozilla::WritingMode aWM,
|
|
|
|
nscoord* aBefore,
|
|
|
|
nscoord* aAfter,
|
|
|
|
mozilla::LogicalPoint* aTranslation);
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual int32_t GetIndexOfDisplayArea() override;
|
2009-02-18 06:27:25 +03:00
|
|
|
/**
|
|
|
|
* @note This method might destroy |this|.
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD RedisplaySelectedText() override;
|
|
|
|
virtual int32_t UpdateRecentIndex(int32_t aIndex) override;
|
|
|
|
virtual void OnContentReset() override;
|
1999-08-26 18:54:07 +04:00
|
|
|
|
2016-08-03 14:45:46 +03:00
|
|
|
|
|
|
|
bool IsOpenInParentProcess() override
|
|
|
|
{
|
|
|
|
return mIsOpenInParentProcess;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetOpenInParentProcess(bool aVal) override
|
|
|
|
{
|
|
|
|
mIsOpenInParentProcess = aVal;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
NS_IMETHOD DoneAddingChildren(bool aIsDone) override;
|
|
|
|
NS_IMETHOD OnOptionSelected(int32_t aIndex, bool aSelected) override;
|
|
|
|
NS_IMETHOD OnSetSelectedIndex(int32_t aOldIndex, int32_t aNewIndex) override;
|
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|.
|
|
|
|
*/
|
2015-01-08 04:52:20 +03:00
|
|
|
virtual bool Rollup(uint32_t aCount, bool aFlush,
|
2015-03-21 19:28:04 +03:00
|
|
|
const nsIntPoint* pos, nsIContent** aLastRolledUp) override;
|
|
|
|
virtual void NotifyGeometryChange() override;
|
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.
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool ShouldRollupOnMouseWheelEvent() override
|
2011-11-08 23:59:07 +04:00
|
|
|
{ return true; }
|
1999-09-22 01:20:50 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool ShouldConsumeOnMouseWheelEvent() override
|
2013-03-08 23:48:48 +04:00
|
|
|
{ return false; }
|
|
|
|
|
2007-05-17 15:12:30 +04:00
|
|
|
/**
|
|
|
|
* A combobox should not roll up if activated by a mouse activate message
|
|
|
|
* (eg. X-mouse).
|
|
|
|
*/
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool ShouldRollupOnMouseActivate() override
|
2011-11-08 23:59:07 +04:00
|
|
|
{ return false; }
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual uint32_t GetSubmenuWidgetChain(nsTArray<nsIWidget*> *aWidgetChain) override
|
2011-11-08 23:59:07 +04:00
|
|
|
{ return 0; }
|
2001-12-11 09:16:07 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIWidget* GetRollupWidget() override;
|
2012-10-26 17:15:22 +04:00
|
|
|
|
2001-11-02 10:40:01 +03:00
|
|
|
//nsIStatefulFrame
|
2018-03-02 21:18:35 +03:00
|
|
|
mozilla::UniquePtr<mozilla::PresState> SaveState() override;
|
|
|
|
NS_IMETHOD RestoreState(mozilla::PresState* aState) override;
|
2016-03-10 22:21:05 +03:00
|
|
|
NS_IMETHOD GenerateStateKey(nsIContent* aContent,
|
|
|
|
nsIDocument* aDocument,
|
|
|
|
nsACString& aKey) override;
|
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-06-23 05:13:56 +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
|
2017-07-06 15:00:35 +03:00
|
|
|
void ReflowDropdown(nsPresContext* aPresContext,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput);
|
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-01-10 22:09:18 +03:00
|
|
|
// Return true if we should render a dropdown button.
|
|
|
|
bool HasDropDownButton() const;
|
|
|
|
|
2012-06-23 05:13:56 +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();
|
|
|
|
|
2014-07-24 21:03:25 +04:00
|
|
|
// Helper for GetMinISize/GetPrefISize
|
2017-06-09 22:14:53 +03:00
|
|
|
nscoord GetIntrinsicISize(gfxContext* aRenderingContext,
|
2014-07-24 21:03:26 +04:00
|
|
|
nsLayoutUtils::IntrinsicISizeType aType);
|
2006-05-10 21:30:15 +04:00
|
|
|
|
2016-04-26 03:23:21 +03:00
|
|
|
class RedisplayTextEvent : public mozilla::Runnable {
|
2006-05-10 21:30:15 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_NSIRUNNABLE
|
2017-06-12 22:34:10 +03:00
|
|
|
explicit RedisplayTextEvent(nsComboboxControlFrame* c)
|
|
|
|
: mozilla::Runnable("nsComboboxControlFrame::RedisplayTextEvent")
|
|
|
|
, mControlFrame(c)
|
|
|
|
{
|
|
|
|
}
|
2012-07-30 18:20:58 +04:00
|
|
|
void Revoke() { mControlFrame = nullptr; }
|
2006-05-10 21:30:15 +04:00
|
|
|
private:
|
|
|
|
nsComboboxControlFrame *mControlFrame;
|
|
|
|
};
|
2017-07-06 15:00:35 +03:00
|
|
|
|
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();
|
2017-05-03 12:08:44 +03:00
|
|
|
nsresult RedisplayText();
|
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
|
2018-03-29 01:01:46 +03:00
|
|
|
RefPtr<nsTextNode> mDisplayContent; // Anonymous content used to display the current selection
|
2017-12-05 20:05:51 +03:00
|
|
|
RefPtr<Element> mButtonContent; // Anonymous content for the button
|
2014-05-25 02:20:39 +04:00
|
|
|
nsContainerFrame* mDisplayFrame; // frame to display selection
|
2000-03-07 18:54:31 +03:00
|
|
|
nsIFrame* mButtonFrame; // button frame
|
|
|
|
nsIFrame* mDropdownFrame; // dropdown list frame
|
2018-09-26 17:41:01 +03:00
|
|
|
nsListControlFrame* mListControlFrame; // ListControl for the dropdown frame
|
1999-01-18 18:14:00 +03:00
|
|
|
|
2015-02-08 18:31:14 +03:00
|
|
|
// The inline size of our display area. Used by that frame's reflow
|
|
|
|
// to size to the full inline size except the drop-marker.
|
|
|
|
nscoord mDisplayISize;
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
nsRevocableEventPtr<RedisplayTextEvent> mRedisplayTextEvent;
|
2000-05-09 00:32:11 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mRecentSelectedIndex;
|
|
|
|
int32_t mDisplayedIndex;
|
2017-05-03 12:08:44 +03:00
|
|
|
nsString mDisplayedOptionTextOrPreview;
|
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
|
|
|
|
2015-02-08 18:31:14 +03:00
|
|
|
// The last y-positions used for estimating available space before and
|
|
|
|
// after for the dropdown list in GetAvailableDropdownSpace. These are
|
2012-09-06 04:17:57 +04:00
|
|
|
// reset to nscoord_MIN in AbsolutelyPositionDropDown when placing the
|
|
|
|
// dropdown at its actual position. The GetAvailableDropdownSpace call
|
|
|
|
// from nsListControlFrame::ReflowAsDropdown use the last position.
|
2015-02-08 18:31:14 +03:00
|
|
|
nscoord mLastDropDownBeforeScreenBCoord;
|
|
|
|
nscoord mLastDropDownAfterScreenBCoord;
|
2012-06-23 05:13:56 +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;
|
|
|
|
|
2016-08-03 14:45:46 +03:00
|
|
|
bool mIsOpenInParentProcess;
|
|
|
|
|
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-06-23 05:13:56 +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
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mReflowId;
|
2000-03-07 18:54:31 +03:00
|
|
|
#endif
|
1999-01-18 18:14:00 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|