2015-05-03 12:32:37 -07: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: */
|
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
|
|
|
#include "mozilla/dom/SimpleGestureEvent.h"
|
2013-09-25 04:21:16 -07:00
|
|
|
#include "mozilla/TouchEvents.h"
|
2014-02-27 02:51:14 -08:00
|
|
|
#include "prtime.h"
|
2008-10-23 13:15:20 -07:00
|
|
|
|
2014-02-27 02:51:14 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2013-09-26 23:20:57 -07:00
|
|
|
|
2014-02-27 02:51:14 -08:00
|
|
|
SimpleGestureEvent::SimpleGestureEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetSimpleGestureEvent* aEvent)
|
2014-02-27 02:51:15 -08:00
|
|
|
: MouseEvent(aOwner, aPresContext,
|
|
|
|
aEvent ? aEvent :
|
2015-08-28 16:58:26 -07:00
|
|
|
new WidgetSimpleGestureEvent(false, eVoidEvent,
|
2015-08-26 05:56:59 -07:00
|
|
|
nullptr))
|
2008-10-23 13:15:20 -07:00
|
|
|
{
|
2014-08-03 22:28:53 -07:00
|
|
|
NS_ASSERTION(mEvent->mClass == eSimpleGestureEventClass,
|
2014-08-03 22:28:46 -07:00
|
|
|
"event type mismatch");
|
2008-10-23 13:15:20 -07:00
|
|
|
|
|
|
|
if (aEvent) {
|
2011-10-17 07:59:28 -07:00
|
|
|
mEventIsInternal = false;
|
2008-10-23 13:15:20 -07:00
|
|
|
} else {
|
2011-10-17 07:59:28 -07:00
|
|
|
mEventIsInternal = true;
|
2008-10-23 13:15:20 -07:00
|
|
|
mEvent->time = PR_Now();
|
2009-04-02 12:34:31 -07:00
|
|
|
mEvent->refPoint.x = mEvent->refPoint.y = 0;
|
2013-10-01 23:38:27 -07:00
|
|
|
static_cast<WidgetMouseEventBase*>(mEvent)->inputSource =
|
|
|
|
nsIDOMMouseEvent::MOZ_SOURCE_UNKNOWN;
|
2008-10-23 13:15:20 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-27 02:51:15 -08:00
|
|
|
NS_IMPL_ADDREF_INHERITED(SimpleGestureEvent, MouseEvent)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(SimpleGestureEvent, MouseEvent)
|
2008-10-23 13:15:20 -07:00
|
|
|
|
2014-02-27 02:51:14 -08:00
|
|
|
NS_INTERFACE_MAP_BEGIN(SimpleGestureEvent)
|
2008-10-23 13:15:20 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMSimpleGestureEvent)
|
2014-02-27 02:51:15 -08:00
|
|
|
NS_INTERFACE_MAP_END_INHERITING(MouseEvent)
|
2008-10-23 13:15:20 -07:00
|
|
|
|
2013-10-17 23:10:23 -07:00
|
|
|
uint32_t
|
2014-02-27 02:51:14 -08:00
|
|
|
SimpleGestureEvent::AllowedDirections()
|
2013-10-17 23:10:23 -07:00
|
|
|
{
|
|
|
|
return mEvent->AsSimpleGestureEvent()->allowedDirections;
|
|
|
|
}
|
|
|
|
|
2013-04-09 12:44:01 -07:00
|
|
|
NS_IMETHODIMP
|
2014-02-27 02:51:14 -08:00
|
|
|
SimpleGestureEvent::GetAllowedDirections(uint32_t* aAllowedDirections)
|
2013-04-09 12:44:01 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aAllowedDirections);
|
2013-10-17 23:10:23 -07:00
|
|
|
*aAllowedDirections = AllowedDirections();
|
2013-04-09 12:44:01 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-02-27 02:51:14 -08:00
|
|
|
SimpleGestureEvent::SetAllowedDirections(uint32_t aAllowedDirections)
|
2013-04-09 12:44:01 -07:00
|
|
|
{
|
2013-10-17 23:10:23 -07:00
|
|
|
mEvent->AsSimpleGestureEvent()->allowedDirections = aAllowedDirections;
|
2013-04-09 12:44:01 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-10-17 23:10:23 -07:00
|
|
|
uint32_t
|
2014-02-27 02:51:14 -08:00
|
|
|
SimpleGestureEvent::Direction()
|
2013-10-17 23:10:23 -07:00
|
|
|
{
|
|
|
|
return mEvent->AsSimpleGestureEvent()->direction;
|
|
|
|
}
|
|
|
|
|
2008-10-23 13:15:20 -07:00
|
|
|
NS_IMETHODIMP
|
2014-02-27 02:51:14 -08:00
|
|
|
SimpleGestureEvent::GetDirection(uint32_t* aDirection)
|
2008-10-23 13:15:20 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aDirection);
|
2013-03-28 07:24:28 -07:00
|
|
|
*aDirection = Direction();
|
2008-10-23 13:15:20 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-10-17 23:10:23 -07:00
|
|
|
double
|
2014-02-27 02:51:14 -08:00
|
|
|
SimpleGestureEvent::Delta()
|
2013-10-17 23:10:23 -07:00
|
|
|
{
|
|
|
|
return mEvent->AsSimpleGestureEvent()->delta;
|
|
|
|
}
|
|
|
|
|
2008-10-23 13:15:20 -07:00
|
|
|
NS_IMETHODIMP
|
2014-02-27 02:51:14 -08:00
|
|
|
SimpleGestureEvent::GetDelta(double* aDelta)
|
2008-10-23 13:15:20 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aDelta);
|
2013-03-28 07:24:28 -07:00
|
|
|
*aDelta = Delta();
|
2008-10-23 13:15:20 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-10-17 23:10:23 -07:00
|
|
|
uint32_t
|
2014-02-27 02:51:14 -08:00
|
|
|
SimpleGestureEvent::ClickCount()
|
2013-10-17 23:10:23 -07:00
|
|
|
{
|
|
|
|
return mEvent->AsSimpleGestureEvent()->clickCount;
|
|
|
|
}
|
|
|
|
|
2012-06-14 10:40:12 -07:00
|
|
|
NS_IMETHODIMP
|
2014-02-27 02:51:14 -08:00
|
|
|
SimpleGestureEvent::GetClickCount(uint32_t* aClickCount)
|
2012-06-14 10:40:12 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aClickCount);
|
2013-03-28 07:24:28 -07:00
|
|
|
*aClickCount = ClickCount();
|
2012-06-14 10:40:12 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-10-23 13:15:20 -07:00
|
|
|
NS_IMETHODIMP
|
2014-02-27 02:51:14 -08:00
|
|
|
SimpleGestureEvent::InitSimpleGestureEvent(const nsAString& aTypeArg,
|
|
|
|
bool aCanBubbleArg,
|
|
|
|
bool aCancelableArg,
|
|
|
|
nsIDOMWindow* aViewArg,
|
|
|
|
int32_t aDetailArg,
|
|
|
|
int32_t aScreenX,
|
|
|
|
int32_t aScreenY,
|
|
|
|
int32_t aClientX,
|
|
|
|
int32_t aClientY,
|
|
|
|
bool aCtrlKeyArg,
|
|
|
|
bool aAltKeyArg,
|
|
|
|
bool aShiftKeyArg,
|
|
|
|
bool aMetaKeyArg,
|
|
|
|
uint16_t aButton,
|
|
|
|
nsIDOMEventTarget* aRelatedTarget,
|
|
|
|
uint32_t aAllowedDirectionsArg,
|
|
|
|
uint32_t aDirectionArg,
|
|
|
|
double aDeltaArg,
|
|
|
|
uint32_t aClickCountArg)
|
2008-10-23 13:15:20 -07:00
|
|
|
{
|
2014-02-27 02:51:15 -08:00
|
|
|
nsresult rv =
|
|
|
|
MouseEvent::InitMouseEvent(aTypeArg, aCanBubbleArg, aCancelableArg,
|
|
|
|
aViewArg, aDetailArg,
|
|
|
|
aScreenX, aScreenY, aClientX, aClientY,
|
|
|
|
aCtrlKeyArg, aAltKeyArg, aShiftKeyArg,
|
|
|
|
aMetaKeyArg, aButton, aRelatedTarget);
|
2008-10-23 13:15:20 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2013-10-17 23:10:23 -07:00
|
|
|
WidgetSimpleGestureEvent* simpleGestureEvent = mEvent->AsSimpleGestureEvent();
|
2013-04-09 12:44:01 -07:00
|
|
|
simpleGestureEvent->allowedDirections = aAllowedDirectionsArg;
|
2009-02-17 03:49:03 -08:00
|
|
|
simpleGestureEvent->direction = aDirectionArg;
|
|
|
|
simpleGestureEvent->delta = aDeltaArg;
|
2012-06-14 10:40:12 -07:00
|
|
|
simpleGestureEvent->clickCount = aClickCountArg;
|
2008-10-23 13:15:20 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-02-27 02:51:14 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
|
2015-08-12 04:39:31 -07:00
|
|
|
already_AddRefed<SimpleGestureEvent>
|
|
|
|
NS_NewDOMSimpleGestureEvent(EventTarget* aOwner,
|
2014-02-27 02:51:14 -08:00
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetSimpleGestureEvent* aEvent)
|
2008-10-23 13:15:20 -07:00
|
|
|
{
|
2015-10-17 22:24:48 -07:00
|
|
|
RefPtr<SimpleGestureEvent> it =
|
2015-08-12 04:39:31 -07:00
|
|
|
new SimpleGestureEvent(aOwner, aPresContext, aEvent);
|
|
|
|
return it.forget();
|
2008-10-23 13:15:20 -07:00
|
|
|
}
|