2013-11-20 21:44:22 -08: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 02:51:15 -08:00
|
|
|
#ifndef mozilla_dom_PointerEvent_h_
|
|
|
|
#define mozilla_dom_PointerEvent_h_
|
2013-11-20 21:44:22 -08:00
|
|
|
|
2014-02-27 02:51:15 -08:00
|
|
|
#include "mozilla/dom/MouseEvent.h"
|
2013-11-20 21:44:22 -08:00
|
|
|
#include "mozilla/dom/PointerEventBinding.h"
|
|
|
|
|
|
|
|
class nsPresContext;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-02-27 02:51:15 -08:00
|
|
|
class PointerEvent : public MouseEvent
|
2013-11-20 21:44:22 -08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PointerEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetPointerEvent* aEvent);
|
|
|
|
|
2014-10-17 16:16:58 -07:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx) MOZ_OVERRIDE
|
2013-11-20 21:44:22 -08: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 15:27:17 -07:00
|
|
|
return PointerEventBinding::Wrap(aCx, this);
|
2013-11-20 21:44:22 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
static already_AddRefed<PointerEvent>
|
|
|
|
Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
|
|
|
const PointerEventInit& aParam,
|
2014-02-27 02:51:15 -08:00
|
|
|
ErrorResult& aRv);
|
2013-11-20 21:44:22 -08:00
|
|
|
|
2014-04-04 10:09:10 -07:00
|
|
|
static already_AddRefed<PointerEvent>
|
|
|
|
Constructor(EventTarget* aOwner,
|
|
|
|
const nsAString& aType,
|
|
|
|
const PointerEventInit& aParam);
|
|
|
|
|
2013-11-20 21:44:22 -08:00
|
|
|
int32_t PointerId();
|
|
|
|
int32_t Width();
|
|
|
|
int32_t Height();
|
2014-02-07 07:18:52 -08:00
|
|
|
float Pressure();
|
2013-11-20 21:44:22 -08:00
|
|
|
int32_t TiltX();
|
|
|
|
int32_t TiltY();
|
|
|
|
bool IsPrimary();
|
|
|
|
void GetPointerType(nsAString& aPointerType);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2014-02-27 02:51:15 -08:00
|
|
|
#endif // mozilla_dom_PointerEvent_h_
|