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-10-23 13:15:20 -07:00
|
|
|
|
|
|
|
#ifndef nsDOMSimpleGestureEvent_h__
|
|
|
|
#define nsDOMSimpleGestureEvent_h__
|
|
|
|
|
|
|
|
#include "nsIDOMSimpleGestureEvent.h"
|
2009-02-17 03:49:03 -08:00
|
|
|
#include "nsDOMMouseEvent.h"
|
2013-10-17 23:10:23 -07:00
|
|
|
#include "mozilla/EventForwards.h"
|
2013-03-28 07:24:28 -07:00
|
|
|
#include "mozilla/dom/SimpleGestureEventBinding.h"
|
2008-10-23 13:15:20 -07:00
|
|
|
|
|
|
|
class nsPresContext;
|
|
|
|
|
2009-10-21 02:38:39 -07:00
|
|
|
class nsDOMSimpleGestureEvent : public nsDOMMouseEvent,
|
|
|
|
public nsIDOMSimpleGestureEvent
|
2008-10-23 13:15:20 -07:00
|
|
|
{
|
|
|
|
public:
|
2013-03-09 03:34:29 -08:00
|
|
|
nsDOMSimpleGestureEvent(mozilla::dom::EventTarget* aOwner,
|
2013-09-26 23:20:57 -07:00
|
|
|
nsPresContext*, mozilla::WidgetSimpleGestureEvent*);
|
2008-10-23 13:15:20 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMSIMPLEGESTUREEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
2009-02-17 03:49:03 -08:00
|
|
|
NS_FORWARD_TO_NSDOMMOUSEEVENT
|
2013-03-28 07:24:28 -07:00
|
|
|
|
2013-04-25 09:29:54 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE
|
2013-03-28 07:24:28 -07:00
|
|
|
{
|
|
|
|
return mozilla::dom::SimpleGestureEventBinding::Wrap(aCx, aScope, this);
|
|
|
|
}
|
|
|
|
|
2013-10-17 23:10:23 -07:00
|
|
|
uint32_t AllowedDirections();
|
|
|
|
uint32_t Direction();
|
|
|
|
double Delta();
|
|
|
|
uint32_t ClickCount();
|
2013-03-28 07:24:28 -07:00
|
|
|
|
|
|
|
void InitSimpleGestureEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
nsIDOMWindow* aView,
|
|
|
|
int32_t aDetail,
|
|
|
|
int32_t aScreenX,
|
|
|
|
int32_t aScreenY,
|
|
|
|
int32_t aClientX,
|
|
|
|
int32_t aClientY,
|
|
|
|
bool aCtrlKey,
|
|
|
|
bool aAltKey,
|
|
|
|
bool aShiftKey,
|
|
|
|
bool aMetaKey,
|
|
|
|
uint16_t aButton,
|
|
|
|
mozilla::dom::EventTarget* aRelatedTarget,
|
2013-04-09 12:44:01 -07:00
|
|
|
uint32_t aAllowedDirections,
|
2013-03-28 07:24:28 -07:00
|
|
|
uint32_t aDirection,
|
|
|
|
double aDelta,
|
|
|
|
uint32_t aClickCount,
|
|
|
|
mozilla::ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
aRv = InitSimpleGestureEvent(aType, aCanBubble, aCancelable,
|
|
|
|
aView, aDetail, aScreenX, aScreenY,
|
|
|
|
aClientX, aClientY, aCtrlKey, aAltKey,
|
|
|
|
aShiftKey, aMetaKey, aButton,
|
2013-04-09 12:44:01 -07:00
|
|
|
aRelatedTarget, aAllowedDirections,
|
|
|
|
aDirection, aDelta, aClickCount);
|
2013-03-28 07:24:28 -07:00
|
|
|
}
|
2008-10-23 13:15:20 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|