2015-05-03 12:32:37 -07: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 04:12:37 -07: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 05:07:27 -07:00
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
#ifndef mozilla_dom_DragEvent_h_
|
|
|
|
#define mozilla_dom_DragEvent_h_
|
2008-08-27 05:07:27 -07:00
|
|
|
|
|
|
|
#include "nsIDOMDragEvent.h"
|
2014-02-27 02:51:15 -08:00
|
|
|
#include "mozilla/dom/MouseEvent.h"
|
2013-04-18 16:13:35 -07:00
|
|
|
#include "mozilla/dom/DragEventBinding.h"
|
2013-09-25 04:21:18 -07:00
|
|
|
#include "mozilla/EventForwards.h"
|
2008-08-27 05:07:27 -07:00
|
|
|
|
2014-02-26 19:23:31 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2014-02-27 02:51:13 -08:00
|
|
|
|
2014-02-26 19:23:31 -08:00
|
|
|
class DataTransfer;
|
|
|
|
|
2014-02-27 02:51:15 -08:00
|
|
|
class DragEvent : public MouseEvent,
|
2014-02-27 02:51:13 -08:00
|
|
|
public nsIDOMDragEvent
|
2008-08-27 05:07:27 -07:00
|
|
|
{
|
|
|
|
public:
|
2014-02-27 02:51:13 -08:00
|
|
|
DragEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetDragEvent* aEvent);
|
2008-08-27 05:07:27 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMDRAGEVENT
|
2014-02-27 02:51:13 -08:00
|
|
|
|
2014-02-27 02:51:15 -08:00
|
|
|
NS_FORWARD_TO_MOUSEEVENT
|
2013-04-18 16:13:35 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2013-04-18 16:13:35 -07: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 07:13:33 -07:00
|
|
|
return DragEventBinding::Wrap(aCx, this, aGivenProto);
|
2013-04-18 16:13:35 -07:00
|
|
|
}
|
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
DataTransfer* GetDataTransfer();
|
2013-04-18 16:13:35 -07:00
|
|
|
|
|
|
|
void InitDragEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble, bool aCancelable,
|
|
|
|
nsIDOMWindow* aView, int32_t aDetail,
|
|
|
|
int32_t aScreenX, int32_t aScreenY,
|
2014-02-26 19:23:31 -08:00
|
|
|
int32_t aClientX, int32_t aClientY,
|
2013-04-18 16:13:35 -07:00
|
|
|
bool aCtrlKey, bool aAltKey, bool aShiftKey,
|
|
|
|
bool aMetaKey, uint16_t aButton,
|
2014-02-27 02:51:13 -08:00
|
|
|
EventTarget* aRelatedTarget,
|
|
|
|
DataTransfer* aDataTransfer,
|
|
|
|
ErrorResult& aError);
|
2014-07-08 14:23:17 -07:00
|
|
|
|
2015-03-04 06:52:03 -08:00
|
|
|
static already_AddRefed<DragEvent> Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const DragEventInit& aParam,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2014-07-08 14:23:17 -07:00
|
|
|
protected:
|
|
|
|
~DragEvent() {}
|
2008-08-27 05:07:27 -07:00
|
|
|
};
|
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2008-08-27 05:07:27 -07:00
|
|
|
|
2015-08-12 04:39:31 -07:00
|
|
|
already_AddRefed<mozilla::dom::DragEvent>
|
|
|
|
NS_NewDOMDragEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetDragEvent* aEvent);
|
|
|
|
|
2014-02-27 02:51:13 -08:00
|
|
|
#endif // mozilla_dom_DragEvent_h_
|