2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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 22:09:19 +04:00
|
|
|
|
2014-02-27 14:51:15 +04:00
|
|
|
#ifndef mozilla_dom_MouseEvent_h_
|
|
|
|
#define mozilla_dom_MouseEvent_h_
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2016-11-16 22:10:22 +03:00
|
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
2014-02-28 18:58:43 +04:00
|
|
|
#include "mozilla/dom/UIEvent.h"
|
2013-03-14 19:30:47 +04:00
|
|
|
#include "mozilla/dom/MouseEventBinding.h"
|
2013-10-18 10:10:26 +04:00
|
|
|
#include "mozilla/EventForwards.h"
|
2014-02-28 18:58:43 +04:00
|
|
|
#include "nsIDOMMouseEvent.h"
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2014-02-27 14:51:15 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
class MouseEvent : public UIEvent,
|
2014-02-27 14:51:15 +04:00
|
|
|
public nsIDOMMouseEvent
|
2004-08-20 22:09:19 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-02-27 14:51:15 +04:00
|
|
|
MouseEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetMouseEventBase* aEvent);
|
2004-08-20 22:09:19 +04:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMMouseEvent Interface
|
|
|
|
NS_DECL_NSIDOMMOUSEEVENT
|
2008-12-12 02:55:15 +03:00
|
|
|
|
2004-08-20 22:09:19 +04:00
|
|
|
// Forward to base class
|
2014-02-28 18:58:43 +04:00
|
|
|
NS_FORWARD_TO_UIEVENT
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2013-03-14 19:30:47 +04:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
return MouseEventBinding::Wrap(aCx, this, aGivenProto);
|
2013-03-14 19:30:47 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Web IDL binding methods
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual uint32_t Which() override
|
2013-04-21 03:48:55 +04:00
|
|
|
{
|
2013-05-05 11:03:16 +04:00
|
|
|
return Button() + 1;
|
2013-04-21 03:48:55 +04:00
|
|
|
}
|
|
|
|
|
2016-11-16 22:10:22 +03:00
|
|
|
int32_t ScreenX(CallerType aCallerType);
|
|
|
|
int32_t ScreenY(CallerType aCallerType);
|
2013-03-14 19:30:47 +04:00
|
|
|
int32_t ClientX();
|
|
|
|
int32_t ClientY();
|
2015-03-13 14:50:10 +03:00
|
|
|
int32_t OffsetX();
|
|
|
|
int32_t OffsetY();
|
2013-10-18 10:10:26 +04:00
|
|
|
bool CtrlKey();
|
|
|
|
bool ShiftKey();
|
|
|
|
bool AltKey();
|
|
|
|
bool MetaKey();
|
2014-02-20 22:38:13 +04:00
|
|
|
int16_t Button();
|
2013-03-14 19:30:47 +04:00
|
|
|
uint16_t Buttons();
|
2014-02-27 14:51:15 +04:00
|
|
|
already_AddRefed<EventTarget> GetRelatedTarget();
|
2014-04-27 02:32:00 +04:00
|
|
|
void GetRegion(nsAString& aRegion);
|
2014-02-27 14:51:15 +04:00
|
|
|
void InitMouseEvent(const nsAString& aType, bool aCanBubble, bool aCancelable,
|
2016-01-30 20:05:36 +03:00
|
|
|
nsGlobalWindow* aView, int32_t aDetail, int32_t aScreenX,
|
2013-03-14 19:30:47 +04:00
|
|
|
int32_t aScreenY, int32_t aClientX, int32_t aClientY,
|
|
|
|
bool aCtrlKey, bool aAltKey, bool aShiftKey,
|
|
|
|
bool aMetaKey, uint16_t aButton,
|
2016-01-30 20:05:36 +03:00
|
|
|
EventTarget* aRelatedTarget);
|
2015-05-19 23:26:02 +03:00
|
|
|
|
|
|
|
void InitializeExtraMouseEventDictionaryMembers(const MouseEventInit& aParam);
|
|
|
|
|
2013-03-14 19:30:47 +04:00
|
|
|
bool GetModifierState(const nsAString& aKeyArg)
|
|
|
|
{
|
|
|
|
return GetModifierStateInternal(aKeyArg);
|
|
|
|
}
|
2014-02-27 14:51:15 +04:00
|
|
|
static already_AddRefed<MouseEvent> Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const MouseEventInit& aParam,
|
|
|
|
ErrorResult& aRv);
|
2015-05-19 23:26:02 +03:00
|
|
|
int32_t MovementX()
|
2013-03-14 19:30:47 +04:00
|
|
|
{
|
|
|
|
return GetMovementPoint().x;
|
|
|
|
}
|
2015-05-19 23:26:02 +03:00
|
|
|
int32_t MovementY()
|
2013-03-14 19:30:47 +04:00
|
|
|
{
|
|
|
|
return GetMovementPoint().y;
|
|
|
|
}
|
2013-10-18 10:10:26 +04:00
|
|
|
float MozPressure() const;
|
2014-11-24 17:33:06 +03:00
|
|
|
bool HitCluster() const;
|
2013-10-18 10:10:26 +04:00
|
|
|
uint16_t MozInputSource() const;
|
2014-02-27 14:51:15 +04:00
|
|
|
void InitNSMouseEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble, bool aCancelable,
|
2016-01-30 20:05:36 +03:00
|
|
|
nsGlobalWindow* aView, int32_t aDetail,
|
|
|
|
int32_t aScreenX, int32_t aScreenY,
|
|
|
|
int32_t aClientX, int32_t aClientY,
|
2013-03-14 19:30:47 +04:00
|
|
|
bool aCtrlKey, bool aAltKey, bool aShiftKey,
|
|
|
|
bool aMetaKey, uint16_t aButton,
|
2014-02-27 14:51:15 +04:00
|
|
|
EventTarget* aRelatedTarget,
|
2016-01-30 20:05:36 +03:00
|
|
|
float aPressure, uint16_t aInputSource);
|
2013-03-14 19:30:47 +04:00
|
|
|
|
2011-08-26 11:43:49 +04:00
|
|
|
protected:
|
2014-07-09 01:23:17 +04:00
|
|
|
~MouseEvent() {}
|
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
void InitMouseEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
nsGlobalWindow* aView,
|
|
|
|
int32_t aDetail,
|
|
|
|
int32_t aScreenX,
|
|
|
|
int32_t aScreenY,
|
|
|
|
int32_t aClientX,
|
|
|
|
int32_t aClientY,
|
|
|
|
int16_t aButton,
|
|
|
|
EventTarget* aRelatedTarget,
|
|
|
|
const nsAString& aModifiersList);
|
2004-08-20 22:09:19 +04:00
|
|
|
};
|
|
|
|
|
2014-02-27 14:51:15 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#define NS_FORWARD_TO_MOUSEEVENT \
|
|
|
|
NS_FORWARD_NSIDOMMOUSEEVENT(MouseEvent::) \
|
2014-02-28 18:58:43 +04:00
|
|
|
NS_FORWARD_TO_UIEVENT
|
2008-08-13 07:08:59 +04:00
|
|
|
|
2015-08-12 14:39:31 +03:00
|
|
|
already_AddRefed<mozilla::dom::MouseEvent>
|
|
|
|
NS_NewDOMMouseEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetMouseEvent* aEvent);
|
|
|
|
|
2014-02-27 14:51:15 +04:00
|
|
|
#endif // mozilla_dom_MouseEvent_h_
|