/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* 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/. */ #ifndef nsNumberControlFrame_h__ #define nsNumberControlFrame_h__ #include "nsContainerFrame.h" #include "nsIFormControlFrame.h" #include "nsIAnonymousContentCreator.h" #include "nsCOMPtr.h" class nsPresContext; namespace mozilla { class WidgetEvent; class WidgetGUIEvent; namespace dom { class HTMLInputElement; } } /** * This frame type is used for . */ class nsNumberControlFrame MOZ_FINAL : public nsContainerFrame , public nsIAnonymousContentCreator { friend nsIFrame* NS_NewNumberControlFrame(nsIPresShell* aPresShell, nsStyleContext* aContext); typedef mozilla::dom::Element Element; typedef mozilla::dom::HTMLInputElement HTMLInputElement; typedef mozilla::WidgetEvent WidgetEvent; typedef mozilla::WidgetGUIEvent WidgetGUIEvent; nsNumberControlFrame(nsStyleContext* aContext); public: NS_DECL_QUERYFRAME_TARGET(nsNumberControlFrame) NS_DECL_QUERYFRAME NS_DECL_FRAMEARENA_HELPERS virtual void DestroyFrom(nsIFrame* aDestructRoot) MOZ_OVERRIDE; virtual void ContentStatesChanged(nsEventStates aStates); virtual bool IsLeaf() const MOZ_OVERRIDE { return false; } #ifdef ACCESSIBILITY virtual mozilla::a11y::AccType AccessibleType() MOZ_OVERRIDE; #endif NS_IMETHOD Reflow(nsPresContext* aPresContext, nsHTMLReflowMetrics& aDesiredSize, const nsHTMLReflowState& aReflowState, nsReflowStatus& aStatus) MOZ_OVERRIDE; NS_IMETHOD AttributeChanged(int32_t aNameSpaceID, nsIAtom* aAttribute, int32_t aModType) MOZ_OVERRIDE; // nsIAnonymousContentCreator virtual nsresult CreateAnonymousContent(nsTArray& aElements) MOZ_OVERRIDE; virtual void AppendAnonymousContentTo(nsBaseContentList& aElements, uint32_t aFilter) MOZ_OVERRIDE; #ifdef DEBUG_FRAME_DUMP NS_IMETHOD GetFrameName(nsAString& aResult) const MOZ_OVERRIDE { return MakeFrameName(NS_LITERAL_STRING("NumberControl"), aResult); } #endif virtual nsIAtom* GetType() const MOZ_OVERRIDE; virtual bool IsFrameOfType(uint32_t aFlags) const MOZ_OVERRIDE { return nsContainerFrame::IsFrameOfType(aFlags & ~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock)); } /** * When our HTMLInputElement's value changes, it calls this method to tell * us to sync up our anonymous text input field child. */ void UpdateForValueChange(const nsAString& aValue); /** * Called to notify this frame that its HTMLInputElement is currently * processing a DOM 'input' event. */ void HandlingInputEvent(bool aHandlingEvent) { mHandlingInputEvent = aHandlingEvent; } HTMLInputElement* GetAnonTextControl(); /** * If the frame is the frame for an nsNumberControlFrame's anonymous text * field, returns the nsNumberControlFrame. Else returns nullptr. */ static nsNumberControlFrame* GetNumberControlFrameForTextField(nsIFrame* aFrame); /** * If the frame is the frame for an nsNumberControlFrame's up or down spin * button, returns the nsNumberControlFrame. Else returns nullptr. */ static nsNumberControlFrame* GetNumberControlFrameForSpinButton(nsIFrame* aFrame); enum SpinButtonEnum { eSpinButtonNone, eSpinButtonUp, eSpinButtonDown }; /** * Returns one of the SpinButtonEnum values to depending on whether the * pointer event is over the spin-up button, the spin-down button, or * neither. */ int32_t GetSpinButtonForPointerEvent(WidgetGUIEvent* aEvent) const; void SpinnerStateChanged() const; bool SpinnerUpButtonIsDepressed() const; bool SpinnerDownButtonIsDepressed() const; bool IsFocused() const; void HandleFocusEvent(WidgetEvent* aEvent); /** * Our element had HTMLInputElement::Select() called on it. */ nsresult HandleSelectCall(); virtual Element* GetPseudoElement(nsCSSPseudoElements::Type aType) MOZ_OVERRIDE; bool ShouldUseNativeStyleForSpinner() const; private: nsresult MakeAnonymousElement(Element** aResult, nsTArray& aElements, nsIAtom* aTagName, nsCSSPseudoElements::Type aPseudoType, nsStyleContext* aParentContext); nsresult ReflowAnonymousContent(nsPresContext* aPresContext, nsHTMLReflowMetrics& aWrappersDesiredSize, const nsHTMLReflowState& aReflowState, nsIFrame* aOuterWrapperFrame); class SyncDisabledStateEvent; friend class SyncDisabledStateEvent; class SyncDisabledStateEvent : public nsRunnable { public: SyncDisabledStateEvent(nsNumberControlFrame* aFrame) : mFrame(aFrame) {} NS_IMETHOD Run() MOZ_OVERRIDE { nsNumberControlFrame* frame = static_cast(mFrame.GetFrame()); NS_ENSURE_STATE(frame); frame->SyncDisabledState(); return NS_OK; } private: nsWeakFrame mFrame; }; /** * Sync the disabled state of the anonymous children up with our content's. */ void SyncDisabledState(); /** * The text field used to edit and show the number. * @see nsNumberControlFrame::CreateAnonymousContent. */ nsCOMPtr mOuterWrapper; nsCOMPtr mTextField; nsCOMPtr mSpinBox; nsCOMPtr mSpinUp; nsCOMPtr mSpinDown; bool mHandlingInputEvent; }; #endif // nsNumberControlFrame_h__