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
|
|
|
|
2014-04-08 15:27:18 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
2013-03-28 07:24:28 -07: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 SimpleGestureEventBinding::Wrap(aCx, 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
|
|
|
}
|
2014-07-08 14:23:17 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
~SimpleGestureEvent() {}
|
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_
|