2013-09-04 10:30:36 +00:00
|
|
|
/* -*- 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__
|
|
|
|
|
2014-02-24 14:41:56 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-09-04 10:30:36 +00:00
|
|
|
#include "nsContainerFrame.h"
|
|
|
|
#include "nsIFormControlFrame.h"
|
2014-05-05 22:21:00 +00:00
|
|
|
#include "nsITextControlFrame.h"
|
2013-09-04 10:30:36 +00:00
|
|
|
#include "nsIAnonymousContentCreator.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
|
|
|
class nsPresContext;
|
|
|
|
|
2011-06-21 14:13:12 +00:00
|
|
|
namespace mozilla {
|
2013-12-01 13:49:10 +00:00
|
|
|
class WidgetEvent;
|
2013-12-01 13:49:10 +00:00
|
|
|
class WidgetGUIEvent;
|
2011-06-21 14:13:12 +00:00
|
|
|
namespace dom {
|
|
|
|
class HTMLInputElement;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-04 10:30:36 +00:00
|
|
|
/**
|
|
|
|
* This frame type is used for <input type=number>.
|
|
|
|
*/
|
2015-03-21 16:28:04 +00:00
|
|
|
class nsNumberControlFrame final : public nsContainerFrame
|
2015-03-27 18:52:19 +00:00
|
|
|
, public nsIAnonymousContentCreator
|
|
|
|
, public nsITextControlFrame
|
2013-09-04 10:30:36 +00:00
|
|
|
{
|
|
|
|
friend nsIFrame*
|
|
|
|
NS_NewNumberControlFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
2013-12-03 04:49:03 +00:00
|
|
|
typedef mozilla::dom::Element Element;
|
2011-06-21 14:13:12 +00:00
|
|
|
typedef mozilla::dom::HTMLInputElement HTMLInputElement;
|
2013-12-01 13:49:10 +00:00
|
|
|
typedef mozilla::WidgetEvent WidgetEvent;
|
2013-12-01 13:49:10 +00:00
|
|
|
typedef mozilla::WidgetGUIEvent WidgetGUIEvent;
|
2011-06-21 14:13:12 +00:00
|
|
|
|
2014-09-01 03:36:37 +00:00
|
|
|
explicit nsNumberControlFrame(nsStyleContext* aContext);
|
2013-09-04 10:30:36 +00:00
|
|
|
|
|
|
|
public:
|
2011-06-21 14:13:12 +00:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsNumberControlFrame)
|
2013-09-04 10:30:36 +00:00
|
|
|
NS_DECL_QUERYFRAME
|
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) override;
|
|
|
|
virtual void ContentStatesChanged(mozilla::EventStates aStates) override;
|
|
|
|
virtual bool IsLeaf() const override { return true; }
|
2013-09-04 10:30:36 +00:00
|
|
|
|
2013-12-11 03:19:26 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual mozilla::a11y::AccType AccessibleType() override;
|
2013-12-11 03:19:26 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nscoord GetMinISize(nsRenderingContext* aRenderingContext) override;
|
2014-02-12 02:54:14 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nscoord GetPrefISize(nsRenderingContext* aRenderingContext) override;
|
2014-02-12 02:54:14 +00:00
|
|
|
|
2014-05-13 00:47:52 +00:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsReflowStatus& aStatus) override;
|
2013-09-04 10:30:36 +00:00
|
|
|
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2014-02-18 08:36:33 +00:00
|
|
|
nsIAtom* aAttribute,
|
2015-03-21 16:28:04 +00:00
|
|
|
int32_t aModType) override;
|
2013-11-22 13:24:54 +00:00
|
|
|
|
2013-09-04 10:30:36 +00:00
|
|
|
// nsIAnonymousContentCreator
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult CreateAnonymousContent(nsTArray<ContentInfo>& aElements) override;
|
2014-07-16 18:41:57 +00:00
|
|
|
virtual void AppendAnonymousContentTo(nsTArray<nsIContent*>& aElements,
|
2015-03-21 16:28:04 +00:00
|
|
|
uint32_t aFilter) override;
|
2013-09-04 10:30:36 +00:00
|
|
|
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override {
|
2013-09-04 10:30:36 +00:00
|
|
|
return MakeFrameName(NS_LITERAL_STRING("NumberControl"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsIAtom* GetType() const override;
|
2013-09-04 10:30:36 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const override
|
2013-09-04 10:30:36 +00:00
|
|
|
{
|
|
|
|
return nsContainerFrame::IsFrameOfType(aFlags &
|
|
|
|
~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock));
|
|
|
|
}
|
|
|
|
|
2014-05-05 22:21:00 +00:00
|
|
|
// nsITextControlFrame
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD GetEditor(nsIEditor **aEditor) override;
|
2014-05-05 22:21:00 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD SetSelectionStart(int32_t aSelectionStart) override;
|
|
|
|
NS_IMETHOD SetSelectionEnd(int32_t aSelectionEnd) override;
|
2014-05-05 22:21:00 +00:00
|
|
|
|
|
|
|
NS_IMETHOD SetSelectionRange(int32_t aSelectionStart,
|
|
|
|
int32_t aSelectionEnd,
|
2015-03-21 16:28:04 +00:00
|
|
|
SelectionDirection aDirection = eNone) override;
|
2014-05-05 22:21:00 +00:00
|
|
|
|
|
|
|
NS_IMETHOD GetSelectionRange(int32_t* aSelectionStart,
|
|
|
|
int32_t* aSelectionEnd,
|
2015-03-21 16:28:04 +00:00
|
|
|
SelectionDirection* aDirection = nullptr) override;
|
2014-05-05 22:21:00 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD GetOwnedSelectionController(nsISelectionController** aSelCon) override;
|
|
|
|
virtual nsFrameSelection* GetOwnedFrameSelection() override;
|
2014-05-05 22:21:00 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult GetPhonetic(nsAString& aPhonetic) override;
|
2014-05-05 22:21:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Ensure mEditor is initialized with the proper flags and the default value.
|
|
|
|
* @throws NS_ERROR_NOT_INITIALIZED if mEditor has not been created
|
|
|
|
* @throws various and sundry other things
|
|
|
|
*/
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult EnsureEditorInitialized() override;
|
2014-05-05 22:21:00 +00:00
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual nsresult ScrollSelectionIntoView() override;
|
2014-05-05 22:21:00 +00:00
|
|
|
|
|
|
|
// nsIFormControlFrame
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void SetFocus(bool aOn, bool aRepaint) override;
|
|
|
|
virtual nsresult SetFormProperty(nsIAtom* aName, const nsAString& aValue) override;
|
2014-05-05 22:21:00 +00:00
|
|
|
|
2011-06-21 14:17:10 +00:00
|
|
|
/**
|
2014-01-23 15:43:12 +00:00
|
|
|
* This method attempts to localizes aValue and then sets the result as the
|
|
|
|
* value of our anonymous text control. It's called when our
|
|
|
|
* HTMLInputElement's value changes, when we need to sync up the value
|
|
|
|
* displayed in our anonymous text control.
|
2011-06-21 14:17:10 +00:00
|
|
|
*/
|
2014-01-23 15:43:12 +00:00
|
|
|
void SetValueOfAnonTextControl(const nsAString& aValue);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method gets the string value of our anonymous text control,
|
|
|
|
* attempts to normalizes (de-localizes) it, then sets the outparam aValue to
|
|
|
|
* the result. It's called when user input changes the text value of our
|
|
|
|
* anonymous text control so that we can sync up the internal value of our
|
|
|
|
* HTMLInputElement.
|
|
|
|
*/
|
|
|
|
void GetValueOfAnonTextControl(nsAString& aValue);
|
2011-06-21 14:17:10 +00:00
|
|
|
|
2014-01-30 12:54:12 +00:00
|
|
|
bool AnonTextControlIsEmpty();
|
|
|
|
|
2013-11-22 13:24:53 +00:00
|
|
|
/**
|
|
|
|
* Called to notify this frame that its HTMLInputElement is currently
|
|
|
|
* processing a DOM 'input' event.
|
|
|
|
*/
|
|
|
|
void HandlingInputEvent(bool aHandlingEvent)
|
|
|
|
{
|
|
|
|
mHandlingInputEvent = aHandlingEvent;
|
|
|
|
}
|
|
|
|
|
2011-06-21 14:13:12 +00:00
|
|
|
HTMLInputElement* GetAnonTextControl();
|
|
|
|
|
2013-12-05 16:20:34 +00:00
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
|
2013-12-01 13:49:10 +00:00
|
|
|
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;
|
|
|
|
|
2013-12-05 16:20:34 +00:00
|
|
|
void SpinnerStateChanged() const;
|
|
|
|
|
|
|
|
bool SpinnerUpButtonIsDepressed() const;
|
|
|
|
bool SpinnerDownButtonIsDepressed() const;
|
|
|
|
|
|
|
|
bool IsFocused() const;
|
|
|
|
|
2013-12-01 13:49:10 +00:00
|
|
|
void HandleFocusEvent(WidgetEvent* aEvent);
|
|
|
|
|
2013-12-11 11:41:51 +00:00
|
|
|
/**
|
|
|
|
* Our element had HTMLInputElement::Select() called on it.
|
|
|
|
*/
|
|
|
|
nsresult HandleSelectCall();
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual Element* GetPseudoElement(nsCSSPseudoElements::Type aType) override;
|
2013-12-02 23:57:50 +00:00
|
|
|
|
2013-12-05 16:20:34 +00:00
|
|
|
bool ShouldUseNativeStyleForSpinner() const;
|
|
|
|
|
2013-09-04 10:30:36 +00:00
|
|
|
private:
|
|
|
|
|
2014-05-05 22:21:00 +00:00
|
|
|
nsITextControlFrame* GetTextFieldFrame();
|
2013-12-03 04:49:03 +00:00
|
|
|
nsresult MakeAnonymousElement(Element** aResult,
|
2013-09-04 10:30:36 +00:00
|
|
|
nsTArray<ContentInfo>& aElements,
|
|
|
|
nsIAtom* aTagName,
|
|
|
|
nsCSSPseudoElements::Type aPseudoType,
|
|
|
|
nsStyleContext* aParentContext);
|
|
|
|
|
2013-12-11 02:13:06 +00:00
|
|
|
class SyncDisabledStateEvent;
|
|
|
|
friend class SyncDisabledStateEvent;
|
|
|
|
class SyncDisabledStateEvent : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
2014-09-01 03:36:37 +00:00
|
|
|
explicit SyncDisabledStateEvent(nsNumberControlFrame* aFrame)
|
2013-12-11 02:13:06 +00:00
|
|
|
: mFrame(aFrame)
|
|
|
|
{}
|
|
|
|
|
2015-03-21 16:28:04 +00:00
|
|
|
NS_IMETHOD Run() override
|
2013-12-11 02:13:06 +00:00
|
|
|
{
|
|
|
|
nsNumberControlFrame* frame =
|
|
|
|
static_cast<nsNumberControlFrame*>(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();
|
|
|
|
|
2013-09-04 10:30:36 +00:00
|
|
|
/**
|
|
|
|
* The text field used to edit and show the number.
|
|
|
|
* @see nsNumberControlFrame::CreateAnonymousContent.
|
|
|
|
*/
|
2013-12-03 04:49:03 +00:00
|
|
|
nsCOMPtr<Element> mOuterWrapper;
|
|
|
|
nsCOMPtr<Element> mTextField;
|
|
|
|
nsCOMPtr<Element> mSpinBox;
|
|
|
|
nsCOMPtr<Element> mSpinUp;
|
|
|
|
nsCOMPtr<Element> mSpinDown;
|
2013-11-22 13:24:53 +00:00
|
|
|
bool mHandlingInputEvent;
|
2013-09-04 10:30:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsNumberControlFrame_h__
|