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"
|
2004-08-20 22:09:19 +04:00
|
|
|
|
2014-02-27 14:51:15 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2018-03-20 07:16:07 +03:00
|
|
|
class MouseEvent : public UIEvent {
|
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
|
|
|
|
2018-03-20 07:16:07 +03:00
|
|
|
NS_INLINE_DECL_REFCOUNTING_INHERITED(MouseEvent, 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 {
|
2018-06-26 00:20:54 +03:00
|
|
|
return MouseEvent_Binding::Wrap(aCx, this, aGivenProto);
|
2013-03-14 19:30:47 +04:00
|
|
|
}
|
|
|
|
|
2018-03-20 07:16:05 +03:00
|
|
|
virtual MouseEvent* AsMouseEvent() override { return this; }
|
|
|
|
|
2013-03-14 19:30:47 +04:00
|
|
|
// Web IDL binding methods
|
2018-02-21 00:51:00 +03:00
|
|
|
virtual uint32_t Which(CallerType aCallerType) override {
|
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,
|
2017-11-07 01:52:14 +03:00
|
|
|
nsGlobalWindowInner* aView, int32_t aDetail,
|
2013-03-14 19:30:47 +04:00
|
|
|
int32_t aScreenX, 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);
|
2013-03-14 19:30:47 +04:00
|
|
|
int32_t MovementX() { return GetMovementPoint().x; }
|
|
|
|
int32_t MovementY() { 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,
|
2017-11-07 01:52:14 +03:00
|
|
|
bool aCancelable, nsGlobalWindowInner* aView,
|
2016-01-30 20:05:36 +03:00
|
|
|
int32_t aDetail, int32_t aScreenX, int32_t aScreenY,
|
|
|
|
int32_t aClientX, int32_t aClientY, bool aCtrlKey,
|
2013-03-14 19:30:47 +04:00
|
|
|
bool aAltKey, bool aShiftKey, bool aMetaKey,
|
2014-02-27 14:51:15 +04:00
|
|
|
uint16_t aButton, 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,
|
2017-11-07 01:52:14 +03:00
|
|
|
nsGlobalWindowInner* aView, int32_t aDetail,
|
2016-01-30 20:05:36 +03:00
|
|
|
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
|
|
|
|
|
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_
|