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__
|
|
|
|
|
|
|
|
#include "nsContainerFrame.h"
|
|
|
|
#include "nsIFormControlFrame.h"
|
|
|
|
#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>.
|
|
|
|
*/
|
|
|
|
class nsNumberControlFrame MOZ_FINAL : public nsContainerFrame
|
|
|
|
, public nsIAnonymousContentCreator
|
|
|
|
{
|
|
|
|
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
|
|
|
|
2013-09-04 10:30:36 +00:00
|
|
|
nsNumberControlFrame(nsStyleContext* aContext);
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) MOZ_OVERRIDE;
|
2013-12-11 02:13:06 +00:00
|
|
|
virtual void ContentStatesChanged(nsEventStates aStates);
|
2013-12-05 16:20:34 +00:00
|
|
|
virtual bool IsLeaf() const MOZ_OVERRIDE { return false; }
|
2013-09-04 10:30:36 +00:00
|
|
|
|
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
|
|
|
|
2013-11-22 13:24:54 +00:00
|
|
|
NS_IMETHOD AttributeChanged(int32_t aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
int32_t aModType) MOZ_OVERRIDE;
|
|
|
|
|
2013-09-04 10:30:36 +00:00
|
|
|
// nsIAnonymousContentCreator
|
|
|
|
virtual nsresult CreateAnonymousContent(nsTArray<ContentInfo>& aElements) MOZ_OVERRIDE;
|
|
|
|
virtual void AppendAnonymousContentTo(nsBaseContentList& aElements,
|
|
|
|
uint32_t aFilter) MOZ_OVERRIDE;
|
|
|
|
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
2011-06-21 14:17:10 +00:00
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
|
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-03 04:49:03 +00:00
|
|
|
virtual Element* GetPseudoElement(nsCSSPseudoElements::Type aType) MOZ_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:
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
nsresult ReflowAnonymousContent(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aWrappersDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsIFrame* aOuterWrapperFrame);
|
|
|
|
|
2013-12-11 02:13:06 +00:00
|
|
|
class SyncDisabledStateEvent;
|
|
|
|
friend class SyncDisabledStateEvent;
|
|
|
|
class SyncDisabledStateEvent : public nsRunnable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SyncDisabledStateEvent(nsNumberControlFrame* aFrame)
|
|
|
|
: mFrame(aFrame)
|
|
|
|
{}
|
|
|
|
|
|
|
|
NS_IMETHOD Run() MOZ_OVERRIDE
|
|
|
|
{
|
|
|
|
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__
|