2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsDOMMouseEvent_h__
|
|
|
|
#define nsDOMMouseEvent_h__
|
|
|
|
|
|
|
|
#include "nsIDOMMouseEvent.h"
|
|
|
|
#include "nsDOMUIEvent.h"
|
2013-03-14 08:30:47 -07:00
|
|
|
#include "mozilla/dom/MouseEventBinding.h"
|
2013-09-25 04:21:18 -07:00
|
|
|
#include "mozilla/MouseEvents.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-12-11 15:55:15 -08:00
|
|
|
class nsDOMMouseEvent : public nsDOMUIEvent,
|
2011-08-26 00:43:56 -07:00
|
|
|
public nsIDOMMouseEvent
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2013-03-09 03:34:29 -08:00
|
|
|
nsDOMMouseEvent(mozilla::dom::EventTarget* aOwner,
|
2013-10-01 00:23:02 -07:00
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetInputEvent* aEvent);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMMouseEvent Interface
|
|
|
|
NS_DECL_NSIDOMMOUSEEVENT
|
2008-12-11 15:55:15 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Forward to base class
|
|
|
|
NS_FORWARD_TO_NSDOMUIEVENT
|
|
|
|
|
2013-04-25 09:29:54 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE
|
2013-03-14 08:30:47 -07:00
|
|
|
{
|
|
|
|
return mozilla::dom::MouseEventBinding::Wrap(aCx, aScope, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Web IDL binding methods
|
2013-04-20 16:48:55 -07:00
|
|
|
virtual uint32_t Which() MOZ_OVERRIDE
|
|
|
|
{
|
2013-05-05 00:03:16 -07:00
|
|
|
return Button() + 1;
|
2013-04-20 16:48:55 -07:00
|
|
|
}
|
|
|
|
|
2013-03-14 08:30:47 -07:00
|
|
|
int32_t ScreenX();
|
|
|
|
int32_t ScreenY();
|
|
|
|
int32_t ClientX();
|
|
|
|
int32_t ClientY();
|
|
|
|
bool CtrlKey()
|
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
return static_cast<mozilla::WidgetInputEvent*>(mEvent)->IsControl();
|
2013-03-14 08:30:47 -07:00
|
|
|
}
|
|
|
|
bool ShiftKey()
|
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
return static_cast<mozilla::WidgetInputEvent*>(mEvent)->IsShift();
|
2013-03-14 08:30:47 -07:00
|
|
|
}
|
|
|
|
bool AltKey()
|
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
return static_cast<mozilla::WidgetInputEvent*>(mEvent)->IsAlt();
|
2013-03-14 08:30:47 -07:00
|
|
|
}
|
|
|
|
bool MetaKey()
|
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
return static_cast<mozilla::WidgetInputEvent*>(mEvent)->IsMeta();
|
2013-03-14 08:30:47 -07:00
|
|
|
}
|
|
|
|
uint16_t Button();
|
|
|
|
uint16_t Buttons();
|
|
|
|
already_AddRefed<mozilla::dom::EventTarget> GetRelatedTarget();
|
|
|
|
void InitMouseEvent(const nsAString & aType, bool aCanBubble, bool aCancelable,
|
|
|
|
nsIDOMWindow* aView, int32_t aDetail, int32_t aScreenX,
|
|
|
|
int32_t aScreenY, int32_t aClientX, int32_t aClientY,
|
|
|
|
bool aCtrlKey, bool aAltKey, bool aShiftKey,
|
|
|
|
bool aMetaKey, uint16_t aButton,
|
|
|
|
mozilla::dom::EventTarget *aRelatedTarget,
|
|
|
|
mozilla::ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
aRv = InitMouseEvent(aType, aCanBubble, aCancelable,
|
|
|
|
aView, aDetail, aScreenX, aScreenY,
|
|
|
|
aClientX, aClientY, aCtrlKey, aAltKey,
|
|
|
|
aShiftKey, aMetaKey, aButton,
|
|
|
|
aRelatedTarget);
|
|
|
|
}
|
|
|
|
bool GetModifierState(const nsAString& aKeyArg)
|
|
|
|
{
|
|
|
|
return GetModifierStateInternal(aKeyArg);
|
|
|
|
}
|
|
|
|
static already_AddRefed<nsDOMMouseEvent> Constructor(const mozilla::dom::GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const mozilla::dom::MouseEventInit& aParam,
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
int32_t MozMovementX()
|
|
|
|
{
|
|
|
|
return GetMovementPoint().x;
|
|
|
|
}
|
|
|
|
int32_t MozMovementY()
|
|
|
|
{
|
|
|
|
return GetMovementPoint().y;
|
|
|
|
}
|
|
|
|
float MozPressure() const
|
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
return static_cast<mozilla::WidgetMouseEventBase*>(mEvent)->pressure;
|
2013-03-14 08:30:47 -07:00
|
|
|
}
|
|
|
|
uint16_t MozInputSource() const
|
|
|
|
{
|
2013-10-01 00:23:02 -07:00
|
|
|
return static_cast<mozilla::WidgetMouseEventBase*>(mEvent)->inputSource;
|
2013-03-14 08:30:47 -07:00
|
|
|
}
|
|
|
|
void InitNSMouseEvent(const nsAString & aType, bool aCanBubble, bool aCancelable,
|
|
|
|
nsIDOMWindow *aView, int32_t aDetail, int32_t aScreenX,
|
|
|
|
int32_t aScreenY, int32_t aClientX, int32_t aClientY,
|
|
|
|
bool aCtrlKey, bool aAltKey, bool aShiftKey,
|
|
|
|
bool aMetaKey, uint16_t aButton,
|
|
|
|
mozilla::dom::EventTarget *aRelatedTarget,
|
|
|
|
float aPressure, uint16_t aInputSource,
|
|
|
|
mozilla::ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
aRv = InitNSMouseEvent(aType, aCanBubble, aCancelable,
|
|
|
|
aView, aDetail, aScreenX, aScreenY,
|
|
|
|
aClientX, aClientY, aCtrlKey, aAltKey,
|
|
|
|
aShiftKey, aMetaKey, aButton,
|
|
|
|
aRelatedTarget, aPressure, aInputSource);
|
|
|
|
}
|
|
|
|
|
2011-08-26 00:43:49 -07:00
|
|
|
protected:
|
2012-04-24 20:00:01 -07:00
|
|
|
nsresult InitMouseEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
nsIDOMWindow* aView,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t aDetail,
|
|
|
|
int32_t aScreenX,
|
|
|
|
int32_t aScreenY,
|
|
|
|
int32_t aClientX,
|
|
|
|
int32_t aClientY,
|
|
|
|
uint16_t aButton,
|
2012-04-24 20:00:01 -07:00
|
|
|
nsIDOMEventTarget *aRelatedTarget,
|
|
|
|
const nsAString& aModifiersList);
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2008-08-27 05:07:27 -07:00
|
|
|
#define NS_FORWARD_TO_NSDOMMOUSEEVENT \
|
2008-08-12 20:08:59 -07:00
|
|
|
NS_FORWARD_NSIDOMMOUSEEVENT(nsDOMMouseEvent::) \
|
|
|
|
NS_FORWARD_TO_NSDOMUIEVENT
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif // nsDOMMouseEvent_h__
|