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: */
|
2013-11-21 09:44:22 +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/.
|
|
|
|
*
|
|
|
|
* Portions Copyright 2013 Microsoft Open Technologies, Inc. */
|
|
|
|
|
2014-02-27 14:51:15 +04:00
|
|
|
#ifndef mozilla_dom_PointerEvent_h_
|
|
|
|
#define mozilla_dom_PointerEvent_h_
|
2013-11-21 09:44:22 +04:00
|
|
|
|
2014-02-27 14:51:15 +04:00
|
|
|
#include "mozilla/dom/MouseEvent.h"
|
2013-11-21 09:44:22 +04:00
|
|
|
#include "mozilla/dom/PointerEventBinding.h"
|
|
|
|
|
|
|
|
class nsPresContext;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-02-27 14:51:15 +04:00
|
|
|
class PointerEvent : public MouseEvent
|
2013-11-21 09:44:22 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PointerEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetPointerEvent* aEvent);
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2013-11-21 09:44:22 +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 PointerEventBinding::Wrap(aCx, this, aGivenProto);
|
2013-11-21 09:44:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static already_AddRefed<PointerEvent>
|
|
|
|
Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const PointerEventInit& aParam,
|
2014-02-27 14:51:15 +04:00
|
|
|
ErrorResult& aRv);
|
2013-11-21 09:44:22 +04:00
|
|
|
|
2014-04-04 21:09:10 +04:00
|
|
|
static already_AddRefed<PointerEvent>
|
|
|
|
Constructor(EventTarget* aOwner,
|
|
|
|
const nsAString& aType,
|
|
|
|
const PointerEventInit& aParam);
|
|
|
|
|
2013-11-21 09:44:22 +04:00
|
|
|
int32_t PointerId();
|
|
|
|
int32_t Width();
|
|
|
|
int32_t Height();
|
2014-02-07 19:18:52 +04:00
|
|
|
float Pressure();
|
2013-11-21 09:44:22 +04:00
|
|
|
int32_t TiltX();
|
|
|
|
int32_t TiltY();
|
|
|
|
bool IsPrimary();
|
|
|
|
void GetPointerType(nsAString& aPointerType);
|
|
|
|
};
|
|
|
|
|
2014-11-11 10:29:00 +03:00
|
|
|
void ConvertPointerTypeToString(uint16_t aPointerTypeSrc, nsAString& aPointerTypeDest);
|
|
|
|
|
2013-11-21 09:44:22 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-08-12 14:39:31 +03:00
|
|
|
already_AddRefed<mozilla::dom::PointerEvent>
|
|
|
|
NS_NewDOMPointerEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetPointerEvent* aEvent);
|
|
|
|
|
2014-02-27 14:51:15 +04:00
|
|
|
#endif // mozilla_dom_PointerEvent_h_
|