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
|
|
|
|
2014-02-27 02:51:14 -08:00
|
|
|
#ifndef mozilla_dom_SimpleGestureEvent_h_
|
|
|
|
#define mozilla_dom_SimpleGestureEvent_h_
|
2008-10-23 13:15:20 -07:00
|
|
|
|
|
|
|
#include "nsIDOMSimpleGestureEvent.h"
|
2014-02-27 02:51:15 -08:00
|
|
|
#include "mozilla/dom/MouseEvent.h"
|
2013-03-28 07:24:28 -07:00
|
|
|
#include "mozilla/dom/SimpleGestureEventBinding.h"
|
2014-02-27 02:51:15 -08:00
|
|
|
#include "mozilla/EventForwards.h"
|
2008-10-23 13:15:20 -07:00
|
|
|
|
|
|
|
class nsPresContext;
|
|
|
|
|
2014-02-27 02:51:14 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-02-27 02:51:15 -08:00
|
|
|
class SimpleGestureEvent : public MouseEvent,
|
2014-02-27 02:51:14 -08:00
|
|
|
public nsIDOMSimpleGestureEvent
|
2008-10-23 13:15:20 -07:00
|
|
|
{
|
|
|
|
public:
|
2014-02-27 02:51:14 -08:00
|
|
|
SimpleGestureEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetSimpleGestureEvent* aEvent);
|
2008-10-23 13:15:20 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
NS_DECL_NSIDOMSIMPLEGESTUREEVENT
|
|
|
|
|
|
|
|
// Forward to base class
|
2014-02-27 02:51:15 -08:00
|
|
|
NS_FORWARD_TO_MOUSEEVENT
|
2013-03-28 07:24:28 -07:00
|
|
|
|
2013-04-25 09:29:54 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
2014-02-27 02:51:14 -08:00
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE
|
2013-03-28 07:24:28 -07:00
|
|
|
{
|
2014-02-27 02:51:14 -08:00
|
|
|
return SimpleGestureEventBinding::Wrap(aCx, aScope, this);
|
2013-03-28 07:24:28 -07:00
|
|
|
}
|
|
|
|
|
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,
|
2014-02-27 02:51:14 -08:00
|
|
|
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,
|
2014-02-27 02:51:14 -08:00
|
|
|
ErrorResult& aRv)
|
2013-03-28 07:24:28 -07:00
|
|
|
{
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2014-02-27 02:51:14 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SimpleGestureEvent_h_
|