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/. */
|
2008-08-27 16:07:27 +04:00
|
|
|
|
2014-02-27 14:51:13 +04:00
|
|
|
#ifndef mozilla_dom_DragEvent_h_
|
|
|
|
#define mozilla_dom_DragEvent_h_
|
2008-08-27 16:07:27 +04:00
|
|
|
|
2014-02-27 14:51:15 +04:00
|
|
|
#include "mozilla/dom/MouseEvent.h"
|
2013-04-19 03:13:35 +04:00
|
|
|
#include "mozilla/dom/DragEventBinding.h"
|
2013-09-25 15:21:18 +04:00
|
|
|
#include "mozilla/EventForwards.h"
|
2008-08-27 16:07:27 +04:00
|
|
|
|
2014-02-27 07:23:31 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2014-02-27 14:51:13 +04:00
|
|
|
|
2014-02-27 07:23:31 +04:00
|
|
|
class DataTransfer;
|
|
|
|
|
2018-03-17 05:25:25 +03:00
|
|
|
class DragEvent : public MouseEvent {
|
2008-08-27 16:07:27 +04:00
|
|
|
public:
|
2014-02-27 14:51:13 +04:00
|
|
|
DragEvent(EventTarget* aOwner, nsPresContext* aPresContext,
|
|
|
|
WidgetDragEvent* aEvent);
|
2008-08-27 16:07:27 +04:00
|
|
|
|
2018-03-17 05:25:25 +03:00
|
|
|
NS_INLINE_DECL_REFCOUNTING_INHERITED(DragEvent, MouseEvent)
|
2013-04-19 03:13:35 +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 DragEvent_Binding::Wrap(aCx, this, aGivenProto);
|
2013-04-19 03:13:35 +04:00
|
|
|
}
|
|
|
|
|
2018-03-13 23:23:59 +03:00
|
|
|
DragEvent* AsDragEvent() override { return this; }
|
|
|
|
|
2014-02-27 14:51:13 +04:00
|
|
|
DataTransfer* GetDataTransfer();
|
2013-04-19 03:13:35 +04:00
|
|
|
|
|
|
|
void InitDragEvent(const nsAString& aType, bool aCanBubble, bool aCancelable,
|
2017-11-07 01:52:14 +03:00
|
|
|
nsGlobalWindowInner* aView, int32_t aDetail,
|
2013-04-19 03:13:35 +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, DataTransfer* aDataTransfer);
|
2014-07-09 01:23:17 +04:00
|
|
|
|
2015-03-04 17:52:03 +03:00
|
|
|
static already_AddRefed<DragEvent> Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
2019-09-11 17:35:28 +03:00
|
|
|
const DragEventInit& aParam);
|
2015-03-04 17:52:03 +03:00
|
|
|
|
2014-07-09 01:23:17 +04:00
|
|
|
protected:
|
2020-02-20 18:56:28 +03:00
|
|
|
~DragEvent() = default;
|
2008-08-27 16:07:27 +04:00
|
|
|
};
|
|
|
|
|
2014-02-27 14:51:13 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2008-08-27 16:07:27 +04:00
|
|
|
|
2015-08-12 14:39:31 +03:00
|
|
|
already_AddRefed<mozilla::dom::DragEvent> NS_NewDOMDragEvent(
|
|
|
|
mozilla::dom::EventTarget* aOwner, nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetDragEvent* aEvent);
|
|
|
|
|
2014-02-27 14:51:13 +04:00
|
|
|
#endif // mozilla_dom_DragEvent_h_
|