2004-08-20 18:09:19 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2004-08-20 18:09:19 +00:00
|
|
|
|
2014-02-27 10:51:15 +00:00
|
|
|
#ifndef mozilla_dom_MouseEvent_h_
|
|
|
|
#define mozilla_dom_MouseEvent_h_
|
2004-08-20 18:09:19 +00:00
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
#include "mozilla/dom/UIEvent.h"
|
2013-03-14 15:30:47 +00:00
|
|
|
#include "mozilla/dom/MouseEventBinding.h"
|
2013-10-18 06:10:26 +00:00
|
|
|
#include "mozilla/EventForwards.h"
|
2014-02-28 14:58:43 +00:00
|
|
|
#include "nsIDOMMouseEvent.h"
|
2004-08-20 18:09:19 +00:00
|
|
|
|
2014-02-27 10:51:15 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
class MouseEvent : public UIEvent,
|
2014-02-27 10:51:15 +00:00
|
|
|
public nsIDOMMouseEvent
|
2004-08-20 18:09:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-02-27 10:51:15 +00:00
|
|
|
MouseEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetMouseEventBase* aEvent);
|
2004-08-20 18:09:19 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMMouseEvent Interface
|
|
|
|
NS_DECL_NSIDOMMOUSEEVENT
|
2008-12-11 23:55:15 +00:00
|
|
|
|
2004-08-20 18:09:19 +00:00
|
|
|
// Forward to base class
|
2014-02-28 14:58:43 +00:00
|
|
|
NS_FORWARD_TO_UIEVENT
|
2004-08-20 18:09:19 +00:00
|
|
|
|
2014-04-08 22:27:18 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
2013-03-14 15:30:47 +00:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 22:27:17 +00:00
|
|
|
return MouseEventBinding::Wrap(aCx, this);
|
2013-03-14 15:30:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Web IDL binding methods
|
2013-04-20 23:48:55 +00:00
|
|
|
virtual uint32_t Which() MOZ_OVERRIDE
|
|
|
|
{
|
2013-05-05 07:03:16 +00:00
|
|
|
return Button() + 1;
|
2013-04-20 23:48:55 +00:00
|
|
|
}
|
|
|
|
|
2013-03-14 15:30:47 +00:00
|
|
|
int32_t ScreenX();
|
|
|
|
int32_t ScreenY();
|
|
|
|
int32_t ClientX();
|
|
|
|
int32_t ClientY();
|
2013-10-18 06:10:26 +00:00
|
|
|
bool CtrlKey();
|
|
|
|
bool ShiftKey();
|
|
|
|
bool AltKey();
|
|
|
|
bool MetaKey();
|
2014-02-20 18:38:13 +00:00
|
|
|
int16_t Button();
|
2013-03-14 15:30:47 +00:00
|
|
|
uint16_t Buttons();
|
2014-02-27 10:51:15 +00:00
|
|
|
already_AddRefed<EventTarget> GetRelatedTarget();
|
2014-04-26 22:32:00 +00:00
|
|
|
void GetRegion(nsAString& aRegion);
|
2014-02-27 10:51:15 +00:00
|
|
|
void InitMouseEvent(const nsAString& aType, bool aCanBubble, bool aCancelable,
|
2013-03-14 15:30:47 +00:00
|
|
|
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,
|
2014-02-27 10:51:15 +00:00
|
|
|
EventTarget* aRelatedTarget, ErrorResult& aRv)
|
2013-03-14 15:30:47 +00:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
2014-02-27 10:51:15 +00:00
|
|
|
static already_AddRefed<MouseEvent> Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const MouseEventInit& aParam,
|
|
|
|
ErrorResult& aRv);
|
2013-03-14 15:30:47 +00:00
|
|
|
int32_t MozMovementX()
|
|
|
|
{
|
|
|
|
return GetMovementPoint().x;
|
|
|
|
}
|
|
|
|
int32_t MozMovementY()
|
|
|
|
{
|
|
|
|
return GetMovementPoint().y;
|
|
|
|
}
|
2013-10-18 06:10:26 +00:00
|
|
|
float MozPressure() const;
|
|
|
|
uint16_t MozInputSource() const;
|
2014-02-27 10:51:15 +00:00
|
|
|
void InitNSMouseEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble, bool aCancelable,
|
|
|
|
nsIDOMWindow* aView, int32_t aDetail, int32_t aScreenX,
|
2013-03-14 15:30:47 +00:00
|
|
|
int32_t aScreenY, int32_t aClientX, int32_t aClientY,
|
|
|
|
bool aCtrlKey, bool aAltKey, bool aShiftKey,
|
|
|
|
bool aMetaKey, uint16_t aButton,
|
2014-02-27 10:51:15 +00:00
|
|
|
EventTarget* aRelatedTarget,
|
2013-03-14 15:30:47 +00:00
|
|
|
float aPressure, uint16_t aInputSource,
|
2014-02-27 10:51:15 +00:00
|
|
|
ErrorResult& aRv)
|
2013-03-14 15:30:47 +00:00
|
|
|
{
|
|
|
|
aRv = InitNSMouseEvent(aType, aCanBubble, aCancelable,
|
|
|
|
aView, aDetail, aScreenX, aScreenY,
|
|
|
|
aClientX, aClientY, aCtrlKey, aAltKey,
|
|
|
|
aShiftKey, aMetaKey, aButton,
|
|
|
|
aRelatedTarget, aPressure, aInputSource);
|
|
|
|
}
|
|
|
|
|
2011-08-26 07:43:49 +00:00
|
|
|
protected:
|
2012-04-25 03:00:01 +00:00
|
|
|
nsresult InitMouseEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
nsIDOMWindow* aView,
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t aDetail,
|
|
|
|
int32_t aScreenX,
|
|
|
|
int32_t aScreenY,
|
|
|
|
int32_t aClientX,
|
|
|
|
int32_t aClientY,
|
2014-02-20 18:38:13 +00:00
|
|
|
int16_t aButton,
|
2014-02-27 10:51:15 +00:00
|
|
|
nsIDOMEventTarget* aRelatedTarget,
|
2012-04-25 03:00:01 +00:00
|
|
|
const nsAString& aModifiersList);
|
2004-08-20 18:09:19 +00:00
|
|
|
};
|
|
|
|
|
2014-02-27 10:51:15 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#define NS_FORWARD_TO_MOUSEEVENT \
|
|
|
|
NS_FORWARD_NSIDOMMOUSEEVENT(MouseEvent::) \
|
2014-02-28 14:58:43 +00:00
|
|
|
NS_FORWARD_TO_UIEVENT
|
2008-08-13 03:08:59 +00:00
|
|
|
|
2014-02-27 10:51:15 +00:00
|
|
|
#endif // mozilla_dom_MouseEvent_h_
|