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-28 18:58:43 +04:00
|
|
|
#ifndef mozilla_dom_UIEvent_h_
|
|
|
|
#define mozilla_dom_UIEvent_h_
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2014-03-05 04:37:43 +04:00
|
|
|
#include "mozilla/dom/Event.h"
|
|
|
|
#include "mozilla/dom/UIEventBinding.h"
|
|
|
|
#include "nsDeviceContext.h"
|
2004-08-20 22:09:19 +04:00
|
|
|
#include "nsIDOMUIEvent.h"
|
2012-04-12 01:55:21 +04:00
|
|
|
#include "nsLayoutUtils.h"
|
2013-09-23 15:55:35 +04:00
|
|
|
#include "nsPresContext.h"
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2013-10-01 01:26:04 +04:00
|
|
|
class nsINode;
|
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-03-05 04:37:43 +04:00
|
|
|
class UIEvent : public Event,
|
2014-02-28 18:58:43 +04:00
|
|
|
public nsIDOMUIEvent
|
2004-08-20 22:09:19 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-02-28 18:58:43 +04:00
|
|
|
UIEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetGUIEvent* aEvent);
|
2004-08-20 22:09:19 +04:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2014-03-05 04:37:43 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(UIEvent, Event)
|
2004-08-20 22:09:19 +04:00
|
|
|
|
|
|
|
// nsIDOMUIEvent Interface
|
|
|
|
NS_DECL_NSIDOMUIEVENT
|
2014-02-28 18:58:43 +04:00
|
|
|
|
2014-03-05 04:37:43 +04:00
|
|
|
// Forward to Event
|
|
|
|
NS_FORWARD_TO_EVENT_NO_SERIALIZATION_NO_DUPLICATION
|
2018-02-09 19:17:09 +03:00
|
|
|
using Event::GetCurrentTarget; // Because the forwarding thing shadows it.
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD DuplicatePrivateData() override;
|
|
|
|
NS_IMETHOD_(void) Serialize(IPC::Message* aMsg, bool aSerializeInterfaceType) override;
|
2016-04-21 07:09:15 +03:00
|
|
|
NS_IMETHOD_(bool) Deserialize(const IPC::Message* aMsg, PickleIterator* aIter) override;
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2012-04-12 01:55:21 +04:00
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
static already_AddRefed<UIEvent> Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const UIEventInit& aParam,
|
|
|
|
ErrorResult& aRv);
|
2013-03-14 00:02:32 +04:00
|
|
|
|
2018-02-09 19:17:09 +03:00
|
|
|
virtual JSObject*
|
|
|
|
WrapObjectInternal(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override
|
2013-03-14 00:02:32 +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 UIEventBinding::Wrap(aCx, this, aGivenProto);
|
2013-03-14 00:02:32 +04:00
|
|
|
}
|
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
void InitUIEvent(const nsAString& typeArg,
|
|
|
|
bool canBubbleArg,
|
|
|
|
bool cancelableArg,
|
2017-11-07 01:52:14 +03:00
|
|
|
nsGlobalWindowInner* viewArg,
|
2016-01-30 20:05:36 +03:00
|
|
|
int32_t detailArg);
|
|
|
|
|
|
|
|
nsPIDOMWindowOuter* GetView() const
|
2013-03-14 00:02:32 +04:00
|
|
|
{
|
2013-05-10 11:13:45 +04:00
|
|
|
return mView;
|
2013-03-14 00:02:32 +04:00
|
|
|
}
|
|
|
|
|
2013-05-10 11:13:45 +04:00
|
|
|
int32_t Detail() const
|
2013-03-14 00:02:32 +04:00
|
|
|
{
|
|
|
|
return mDetail;
|
|
|
|
}
|
|
|
|
|
2013-05-10 11:13:45 +04:00
|
|
|
int32_t LayerX() const
|
2013-03-14 00:02:32 +04:00
|
|
|
{
|
|
|
|
return GetLayerPoint().x;
|
|
|
|
}
|
|
|
|
|
2013-05-10 11:13:45 +04:00
|
|
|
int32_t LayerY() const
|
2013-03-14 00:02:32 +04:00
|
|
|
{
|
|
|
|
return GetLayerPoint().y;
|
|
|
|
}
|
|
|
|
|
2013-05-10 11:13:45 +04:00
|
|
|
int32_t PageX() const;
|
|
|
|
int32_t PageY() const;
|
2013-03-14 00:02:32 +04:00
|
|
|
|
2018-02-21 00:51:00 +03:00
|
|
|
virtual uint32_t Which(CallerType aCallerType = CallerType::System)
|
2013-03-14 00:02:32 +04:00
|
|
|
{
|
2014-08-04 09:28:48 +04:00
|
|
|
MOZ_ASSERT(mEvent->mClass != eKeyboardEventClass,
|
2013-05-05 11:03:16 +04:00
|
|
|
"Key events should override Which()");
|
2014-08-04 09:28:50 +04:00
|
|
|
MOZ_ASSERT(mEvent->mClass != eMouseEventClass,
|
2013-05-05 11:03:16 +04:00
|
|
|
"Mouse events should override Which()");
|
|
|
|
return 0;
|
2013-03-14 00:02:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsINode> GetRangeParent();
|
|
|
|
|
2013-05-10 11:13:45 +04:00
|
|
|
int32_t RangeOffset() const;
|
2013-03-14 00:02:32 +04:00
|
|
|
|
2011-08-26 11:43:49 +04:00
|
|
|
protected:
|
2014-07-09 01:23:17 +04:00
|
|
|
~UIEvent() {}
|
|
|
|
|
2004-08-20 22:09:19 +04:00
|
|
|
// Internal helper functions
|
2012-04-12 01:55:21 +04:00
|
|
|
nsIntPoint GetMovementPoint();
|
2013-05-10 11:13:45 +04:00
|
|
|
nsIntPoint GetLayerPoint() const;
|
2011-08-26 11:43:49 +04:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowOuter> mView;
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mDetail;
|
2013-07-10 13:55:05 +04:00
|
|
|
CSSIntPoint mClientPoint;
|
2016-04-18 17:09:02 +03:00
|
|
|
// Screenpoint is mEvent->mRefPoint.
|
2009-01-15 06:27:09 +03:00
|
|
|
nsIntPoint mLayerPoint;
|
2013-07-10 13:55:05 +04:00
|
|
|
CSSIntPoint mPagePoint;
|
2012-05-10 02:54:18 +04:00
|
|
|
nsIntPoint mMovementPoint;
|
2012-04-12 01:55:21 +04:00
|
|
|
bool mIsPointerLocked;
|
2013-07-10 13:55:05 +04:00
|
|
|
CSSIntPoint mLastClientPoint;
|
2012-04-25 07:00:01 +04:00
|
|
|
|
|
|
|
static Modifiers ComputeModifierState(const nsAString& aModifiersList);
|
|
|
|
bool GetModifierStateInternal(const nsAString& aKey);
|
2015-04-13 10:16:13 +03:00
|
|
|
void InitModifiers(const EventModifierInit& aParam);
|
2004-08-20 22:09:19 +04:00
|
|
|
};
|
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#define NS_FORWARD_TO_UIEVENT \
|
|
|
|
NS_FORWARD_NSIDOMUIEVENT(UIEvent::) \
|
2014-03-05 04:37:43 +04:00
|
|
|
NS_FORWARD_TO_EVENT_NO_SERIALIZATION_NO_DUPLICATION \
|
2018-02-09 19:17:09 +03:00
|
|
|
using Event::GetCurrentTarget; /* Forwarding shadows */ \
|
2015-03-27 21:52:19 +03:00
|
|
|
NS_IMETHOD DuplicatePrivateData() override \
|
2012-06-11 03:44:50 +04:00
|
|
|
{ \
|
2014-02-28 18:58:43 +04:00
|
|
|
return UIEvent::DuplicatePrivateData(); \
|
2012-06-11 03:44:50 +04:00
|
|
|
} \
|
|
|
|
NS_IMETHOD_(void) Serialize(IPC::Message* aMsg, \
|
|
|
|
bool aSerializeInterfaceType) \
|
2015-03-27 21:52:19 +03:00
|
|
|
override \
|
2012-06-11 03:44:50 +04:00
|
|
|
{ \
|
2014-02-28 18:58:43 +04:00
|
|
|
UIEvent::Serialize(aMsg, aSerializeInterfaceType); \
|
2012-06-11 03:44:50 +04:00
|
|
|
} \
|
|
|
|
NS_IMETHOD_(bool) Deserialize(const IPC::Message* aMsg, \
|
2016-04-21 07:09:15 +03:00
|
|
|
PickleIterator* aIter) override \
|
2012-06-11 03:44:50 +04:00
|
|
|
{ \
|
2014-02-28 18:58:43 +04:00
|
|
|
return UIEvent::Deserialize(aMsg, aIter); \
|
2012-06-11 03:44:50 +04:00
|
|
|
}
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2015-08-12 14:39:31 +03:00
|
|
|
already_AddRefed<mozilla::dom::UIEvent>
|
|
|
|
NS_NewDOMUIEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetGUIEvent* aEvent);
|
|
|
|
|
2014-02-28 18:58:43 +04:00
|
|
|
#endif // mozilla_dom_UIEvent_h_
|