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-28 14:58:43 +00:00
|
|
|
#ifndef mozilla_dom_UIEvent_h_
|
|
|
|
#define mozilla_dom_UIEvent_h_
|
2004-08-20 18:09:19 +00:00
|
|
|
|
2013-05-29 20:43:41 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2014-03-05 00:37:43 +00:00
|
|
|
#include "mozilla/dom/Event.h"
|
|
|
|
#include "mozilla/dom/UIEventBinding.h"
|
|
|
|
#include "nsDeviceContext.h"
|
2004-08-20 18:09:19 +00:00
|
|
|
#include "nsIDOMUIEvent.h"
|
2012-04-11 21:55:21 +00:00
|
|
|
#include "nsLayoutUtils.h"
|
2013-09-23 11:55:35 +00:00
|
|
|
#include "nsPresContext.h"
|
2004-08-20 18:09:19 +00:00
|
|
|
|
2013-09-30 21:26:04 +00:00
|
|
|
class nsINode;
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
class UIEvent : public Event,
|
2014-02-28 14:58:43 +00:00
|
|
|
public nsIDOMUIEvent
|
2004-08-20 18:09:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-02-28 14:58:43 +00:00
|
|
|
UIEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetGUIEvent* aEvent);
|
2004-08-20 18:09:19 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(UIEvent, Event)
|
2004-08-20 18:09:19 +00:00
|
|
|
|
|
|
|
// nsIDOMUIEvent Interface
|
|
|
|
NS_DECL_NSIDOMUIEVENT
|
2014-02-28 14:58:43 +00:00
|
|
|
|
2014-03-05 00:37:43 +00:00
|
|
|
// Forward to Event
|
|
|
|
NS_FORWARD_TO_EVENT_NO_SERIALIZATION_NO_DUPLICATION
|
2013-05-29 20:43:41 +00:00
|
|
|
NS_IMETHOD DuplicatePrivateData() MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD_(void) Serialize(IPC::Message* aMsg, bool aSerializeInterfaceType) MOZ_OVERRIDE;
|
|
|
|
NS_IMETHOD_(bool) Deserialize(const IPC::Message* aMsg, void** aIter) MOZ_OVERRIDE;
|
2004-08-20 18:09:19 +00:00
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
static nsIntPoint CalculateScreenPoint(nsPresContext* aPresContext,
|
|
|
|
WidgetEvent* aEvent)
|
2012-04-11 21:55:21 +00:00
|
|
|
{
|
|
|
|
if (!aEvent ||
|
2014-08-04 05:28:50 +00:00
|
|
|
(aEvent->mClass != eMouseEventClass &&
|
2014-08-04 05:28:51 +00:00
|
|
|
aEvent->mClass != eMouseScrollEventClass &&
|
2014-08-04 05:28:51 +00:00
|
|
|
aEvent->mClass != eWheelEventClass &&
|
2014-08-04 05:28:50 +00:00
|
|
|
aEvent->mClass != eDragEventClass &&
|
2014-08-04 05:28:52 +00:00
|
|
|
aEvent->mClass != ePointerEventClass &&
|
2014-08-04 05:28:53 +00:00
|
|
|
aEvent->mClass != eSimpleGestureEventClass)) {
|
2012-04-11 21:55:21 +00:00
|
|
|
return nsIntPoint(0, 0);
|
|
|
|
}
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
WidgetGUIEvent* event = aEvent->AsGUIEvent();
|
2013-08-02 07:05:16 +00:00
|
|
|
if (!event->widget) {
|
2014-02-28 14:58:43 +00:00
|
|
|
return LayoutDeviceIntPoint::ToUntyped(aEvent->refPoint);
|
2012-04-11 21:55:21 +00:00
|
|
|
}
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
LayoutDeviceIntPoint offset = aEvent->refPoint +
|
|
|
|
LayoutDeviceIntPoint::FromUntyped(event->widget->WidgetToScreenOffset());
|
|
|
|
nscoord factor =
|
|
|
|
aPresContext->DeviceContext()->UnscaledAppUnitsPerDevPixel();
|
2012-04-11 21:55:21 +00:00
|
|
|
return nsIntPoint(nsPresContext::AppUnitsToIntCSSPixels(offset.x * factor),
|
|
|
|
nsPresContext::AppUnitsToIntCSSPixels(offset.y * factor));
|
|
|
|
}
|
|
|
|
|
2013-07-10 09:55:05 +00:00
|
|
|
static CSSIntPoint CalculateClientPoint(nsPresContext* aPresContext,
|
2014-02-28 14:58:43 +00:00
|
|
|
WidgetEvent* aEvent,
|
2013-07-10 09:55:05 +00:00
|
|
|
CSSIntPoint* aDefaultClientPoint)
|
2012-04-11 21:55:21 +00:00
|
|
|
{
|
|
|
|
if (!aEvent ||
|
2014-08-04 05:28:50 +00:00
|
|
|
(aEvent->mClass != eMouseEventClass &&
|
2014-08-04 05:28:51 +00:00
|
|
|
aEvent->mClass != eMouseScrollEventClass &&
|
2014-08-04 05:28:51 +00:00
|
|
|
aEvent->mClass != eWheelEventClass &&
|
2014-08-04 05:28:50 +00:00
|
|
|
aEvent->mClass != eDragEventClass &&
|
2014-08-04 05:28:52 +00:00
|
|
|
aEvent->mClass != ePointerEventClass &&
|
2014-08-04 05:28:53 +00:00
|
|
|
aEvent->mClass != eSimpleGestureEventClass) ||
|
2012-04-11 21:55:21 +00:00
|
|
|
!aPresContext ||
|
2013-10-22 08:55:20 +00:00
|
|
|
!aEvent->AsGUIEvent()->widget) {
|
2013-07-10 09:55:05 +00:00
|
|
|
return aDefaultClientPoint
|
|
|
|
? *aDefaultClientPoint
|
|
|
|
: CSSIntPoint(0, 0);
|
2012-04-11 21:55:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIPresShell* shell = aPresContext->GetPresShell();
|
|
|
|
if (!shell) {
|
2013-07-10 09:55:05 +00:00
|
|
|
return CSSIntPoint(0, 0);
|
2012-04-11 21:55:21 +00:00
|
|
|
}
|
|
|
|
nsIFrame* rootFrame = shell->GetRootFrame();
|
2013-07-10 09:55:05 +00:00
|
|
|
if (!rootFrame) {
|
|
|
|
return CSSIntPoint(0, 0);
|
2012-04-11 21:55:21 +00:00
|
|
|
}
|
2013-07-10 09:55:05 +00:00
|
|
|
nsPoint pt =
|
|
|
|
nsLayoutUtils::GetEventCoordinatesRelativeTo(aEvent, rootFrame);
|
2012-04-11 21:55:21 +00:00
|
|
|
|
2013-07-10 09:55:05 +00:00
|
|
|
return CSSIntPoint::FromAppUnitsRounded(pt);
|
2012-04-11 21:55:21 +00:00
|
|
|
}
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
static already_AddRefed<UIEvent> Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const UIEventInit& aParam,
|
|
|
|
ErrorResult& aRv);
|
2013-03-13 20:02:32 +00:00
|
|
|
|
2014-04-08 22:27:18 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
2013-03-13 20:02:32 +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 UIEventBinding::Wrap(aCx, this);
|
2013-03-13 20:02:32 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 07:13:45 +00:00
|
|
|
nsIDOMWindow* GetView() const
|
2013-03-13 20:02:32 +00:00
|
|
|
{
|
2013-05-10 07:13:45 +00:00
|
|
|
return mView;
|
2013-03-13 20:02:32 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 07:13:45 +00:00
|
|
|
int32_t Detail() const
|
2013-03-13 20:02:32 +00:00
|
|
|
{
|
|
|
|
return mDetail;
|
|
|
|
}
|
|
|
|
|
2013-05-10 07:13:45 +00:00
|
|
|
int32_t LayerX() const
|
2013-03-13 20:02:32 +00:00
|
|
|
{
|
|
|
|
return GetLayerPoint().x;
|
|
|
|
}
|
|
|
|
|
2013-05-10 07:13:45 +00:00
|
|
|
int32_t LayerY() const
|
2013-03-13 20:02:32 +00:00
|
|
|
{
|
|
|
|
return GetLayerPoint().y;
|
|
|
|
}
|
|
|
|
|
2013-05-10 07:13:45 +00:00
|
|
|
int32_t PageX() const;
|
|
|
|
int32_t PageY() const;
|
2013-03-13 20:02:32 +00:00
|
|
|
|
2013-04-20 23:48:55 +00:00
|
|
|
virtual uint32_t Which()
|
2013-03-13 20:02:32 +00:00
|
|
|
{
|
2014-08-04 05:28:48 +00:00
|
|
|
MOZ_ASSERT(mEvent->mClass != eKeyboardEventClass,
|
2013-05-05 07:03:16 +00:00
|
|
|
"Key events should override Which()");
|
2014-08-04 05:28:50 +00:00
|
|
|
MOZ_ASSERT(mEvent->mClass != eMouseEventClass,
|
2013-05-05 07:03:16 +00:00
|
|
|
"Mouse events should override Which()");
|
|
|
|
return 0;
|
2013-03-13 20:02:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsINode> GetRangeParent();
|
|
|
|
|
2013-05-10 07:13:45 +00:00
|
|
|
int32_t RangeOffset() const;
|
2013-03-13 20:02:32 +00:00
|
|
|
|
2013-05-10 07:13:45 +00:00
|
|
|
bool CancelBubble() const
|
2013-03-13 20:02:32 +00:00
|
|
|
{
|
|
|
|
return mEvent->mFlags.mPropagationStopped;
|
|
|
|
}
|
|
|
|
|
2013-05-10 07:13:45 +00:00
|
|
|
bool IsChar() const;
|
2013-03-13 20:02:32 +00:00
|
|
|
|
2011-08-26 07:43:49 +00:00
|
|
|
protected:
|
2014-07-08 21:23:17 +00:00
|
|
|
~UIEvent() {}
|
|
|
|
|
2004-08-20 18:09:19 +00:00
|
|
|
// Internal helper functions
|
2012-04-11 21:55:21 +00:00
|
|
|
nsIntPoint GetMovementPoint();
|
2013-05-10 07:13:45 +00:00
|
|
|
nsIntPoint GetLayerPoint() const;
|
2011-08-26 07:43:49 +00:00
|
|
|
|
2011-04-24 06:54:25 +00:00
|
|
|
nsCOMPtr<nsIDOMWindow> mView;
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mDetail;
|
2013-07-10 09:55:05 +00:00
|
|
|
CSSIntPoint mClientPoint;
|
2007-11-12 12:53:06 +00:00
|
|
|
// Screenpoint is mEvent->refPoint.
|
2009-01-15 03:27:09 +00:00
|
|
|
nsIntPoint mLayerPoint;
|
2013-07-10 09:55:05 +00:00
|
|
|
CSSIntPoint mPagePoint;
|
2012-05-09 22:54:18 +00:00
|
|
|
nsIntPoint mMovementPoint;
|
2012-04-11 21:55:21 +00:00
|
|
|
bool mIsPointerLocked;
|
2013-07-10 09:55:05 +00:00
|
|
|
CSSIntPoint mLastClientPoint;
|
2012-04-25 03:00:01 +00:00
|
|
|
|
|
|
|
static Modifiers ComputeModifierState(const nsAString& aModifiersList);
|
|
|
|
bool GetModifierStateInternal(const nsAString& aKey);
|
2004-08-20 18:09:19 +00:00
|
|
|
};
|
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#define NS_FORWARD_TO_UIEVENT \
|
|
|
|
NS_FORWARD_NSIDOMUIEVENT(UIEvent::) \
|
2014-03-05 00:37:43 +00:00
|
|
|
NS_FORWARD_TO_EVENT_NO_SERIALIZATION_NO_DUPLICATION \
|
2012-06-10 23:44:50 +00:00
|
|
|
NS_IMETHOD DuplicatePrivateData() \
|
|
|
|
{ \
|
2014-02-28 14:58:43 +00:00
|
|
|
return UIEvent::DuplicatePrivateData(); \
|
2012-06-10 23:44:50 +00:00
|
|
|
} \
|
|
|
|
NS_IMETHOD_(void) Serialize(IPC::Message* aMsg, \
|
|
|
|
bool aSerializeInterfaceType) \
|
|
|
|
{ \
|
2014-02-28 14:58:43 +00:00
|
|
|
UIEvent::Serialize(aMsg, aSerializeInterfaceType); \
|
2012-06-10 23:44:50 +00:00
|
|
|
} \
|
|
|
|
NS_IMETHOD_(bool) Deserialize(const IPC::Message* aMsg, \
|
|
|
|
void** aIter) \
|
|
|
|
{ \
|
2014-02-28 14:58:43 +00:00
|
|
|
return UIEvent::Deserialize(aMsg, aIter); \
|
2012-06-10 23:44:50 +00:00
|
|
|
}
|
2004-08-20 18:09:19 +00:00
|
|
|
|
2014-02-28 14:58:43 +00:00
|
|
|
#endif // mozilla_dom_UIEvent_h_
|