mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
249 lines
7.3 KiB
C++
249 lines
7.3 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#include "nsDOMTouchEvent.h"
|
|
#include "nsContentUtils.h"
|
|
#include "mozilla/Preferences.h"
|
|
#include "mozilla/dom/Touch.h"
|
|
#include "mozilla/dom/TouchListBinding.h"
|
|
#include "mozilla/TouchEvents.h"
|
|
|
|
using namespace mozilla;
|
|
using namespace mozilla::dom;
|
|
|
|
// TouchList
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsDOMTouchList)
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
NS_INTERFACE_MAP_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE_2(nsDOMTouchList, mParent, mPoints)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsDOMTouchList)
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsDOMTouchList)
|
|
|
|
/* virtual */ JSObject*
|
|
nsDOMTouchList::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aScope)
|
|
{
|
|
return TouchListBinding::Wrap(aCx, aScope, this);
|
|
}
|
|
|
|
/* static */ bool
|
|
nsDOMTouchList::PrefEnabled(JSContext* aCx, JSObject* aGlobal)
|
|
{
|
|
return nsDOMTouchEvent::PrefEnabled(aCx, aGlobal);
|
|
}
|
|
|
|
Touch*
|
|
nsDOMTouchList::IdentifiedTouch(int32_t aIdentifier) const
|
|
{
|
|
for (uint32_t i = 0; i < mPoints.Length(); ++i) {
|
|
Touch* point = mPoints[i];
|
|
if (point && point->Identifier() == aIdentifier) {
|
|
return point;
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
// TouchEvent
|
|
|
|
nsDOMTouchEvent::nsDOMTouchEvent(mozilla::dom::EventTarget* aOwner,
|
|
nsPresContext* aPresContext,
|
|
WidgetTouchEvent* aEvent)
|
|
: nsDOMUIEvent(aOwner, aPresContext,
|
|
aEvent ? aEvent : new WidgetTouchEvent(false, 0, nullptr))
|
|
{
|
|
if (aEvent) {
|
|
mEventIsInternal = false;
|
|
|
|
for (uint32_t i = 0; i < aEvent->touches.Length(); ++i) {
|
|
Touch* touch = aEvent->touches[i];
|
|
touch->InitializePoints(mPresContext, aEvent);
|
|
}
|
|
} else {
|
|
mEventIsInternal = true;
|
|
mEvent->time = PR_Now();
|
|
}
|
|
}
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_INHERITED_3(nsDOMTouchEvent, nsDOMUIEvent,
|
|
mTouches,
|
|
mTargetTouches,
|
|
mChangedTouches)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(nsDOMTouchEvent)
|
|
NS_INTERFACE_MAP_END_INHERITING(nsDOMUIEvent)
|
|
|
|
NS_IMPL_ADDREF_INHERITED(nsDOMTouchEvent, nsDOMUIEvent)
|
|
NS_IMPL_RELEASE_INHERITED(nsDOMTouchEvent, nsDOMUIEvent)
|
|
|
|
|
|
void
|
|
nsDOMTouchEvent::InitTouchEvent(const nsAString& aType,
|
|
bool aCanBubble,
|
|
bool aCancelable,
|
|
nsIDOMWindow* aView,
|
|
int32_t aDetail,
|
|
bool aCtrlKey,
|
|
bool aAltKey,
|
|
bool aShiftKey,
|
|
bool aMetaKey,
|
|
nsDOMTouchList* aTouches,
|
|
nsDOMTouchList* aTargetTouches,
|
|
nsDOMTouchList* aChangedTouches,
|
|
mozilla::ErrorResult& aRv)
|
|
{
|
|
aRv = nsDOMUIEvent::InitUIEvent(aType,
|
|
aCanBubble,
|
|
aCancelable,
|
|
aView,
|
|
aDetail);
|
|
if (aRv.Failed()) {
|
|
return;
|
|
}
|
|
|
|
mEvent->AsInputEvent()->InitBasicModifiers(aCtrlKey, aAltKey,
|
|
aShiftKey, aMetaKey);
|
|
mTouches = aTouches;
|
|
mTargetTouches = aTargetTouches;
|
|
mChangedTouches = aChangedTouches;
|
|
}
|
|
|
|
nsDOMTouchList*
|
|
nsDOMTouchEvent::Touches()
|
|
{
|
|
if (!mTouches) {
|
|
WidgetTouchEvent* touchEvent = mEvent->AsTouchEvent();
|
|
if (mEvent->message == NS_TOUCH_END || mEvent->message == NS_TOUCH_CANCEL) {
|
|
// for touchend events, remove any changed touches from the touches array
|
|
nsTArray< nsRefPtr<Touch> > unchangedTouches;
|
|
const nsTArray< nsRefPtr<Touch> >& touches = touchEvent->touches;
|
|
for (uint32_t i = 0; i < touches.Length(); ++i) {
|
|
if (!touches[i]->mChanged) {
|
|
unchangedTouches.AppendElement(touches[i]);
|
|
}
|
|
}
|
|
mTouches = new nsDOMTouchList(ToSupports(this), unchangedTouches);
|
|
} else {
|
|
mTouches = new nsDOMTouchList(ToSupports(this), touchEvent->touches);
|
|
}
|
|
}
|
|
return mTouches;
|
|
}
|
|
|
|
nsDOMTouchList*
|
|
nsDOMTouchEvent::TargetTouches()
|
|
{
|
|
if (!mTargetTouches) {
|
|
nsTArray< nsRefPtr<Touch> > targetTouches;
|
|
WidgetTouchEvent* touchEvent = mEvent->AsTouchEvent();
|
|
const nsTArray< nsRefPtr<Touch> >& touches = touchEvent->touches;
|
|
for (uint32_t i = 0; i < touches.Length(); ++i) {
|
|
// for touchend/cancel events, don't append to the target list if this is a
|
|
// touch that is ending
|
|
if ((mEvent->message != NS_TOUCH_END &&
|
|
mEvent->message != NS_TOUCH_CANCEL) || !touches[i]->mChanged) {
|
|
if (touches[i]->mTarget == mEvent->originalTarget) {
|
|
targetTouches.AppendElement(touches[i]);
|
|
}
|
|
}
|
|
}
|
|
mTargetTouches = new nsDOMTouchList(ToSupports(this), targetTouches);
|
|
}
|
|
return mTargetTouches;
|
|
}
|
|
|
|
nsDOMTouchList*
|
|
nsDOMTouchEvent::ChangedTouches()
|
|
{
|
|
if (!mChangedTouches) {
|
|
nsTArray< nsRefPtr<Touch> > changedTouches;
|
|
WidgetTouchEvent* touchEvent = mEvent->AsTouchEvent();
|
|
const nsTArray< nsRefPtr<Touch> >& touches = touchEvent->touches;
|
|
for (uint32_t i = 0; i < touches.Length(); ++i) {
|
|
if (touches[i]->mChanged) {
|
|
changedTouches.AppendElement(touches[i]);
|
|
}
|
|
}
|
|
mChangedTouches = new nsDOMTouchList(ToSupports(this), changedTouches);
|
|
}
|
|
return mChangedTouches;
|
|
}
|
|
|
|
#ifdef XP_WIN
|
|
namespace mozilla {
|
|
namespace widget {
|
|
extern int32_t IsTouchDeviceSupportPresent();
|
|
} }
|
|
#endif
|
|
|
|
bool
|
|
nsDOMTouchEvent::PrefEnabled(JSContext* aCx, JSObject* aGlobal)
|
|
{
|
|
bool prefValue = false;
|
|
int32_t flag = 0;
|
|
if (NS_SUCCEEDED(Preferences::GetInt("dom.w3c_touch_events.enabled",
|
|
&flag))) {
|
|
if (flag == 2) {
|
|
#ifdef XP_WIN
|
|
static bool sDidCheckTouchDeviceSupport = false;
|
|
static bool sIsTouchDeviceSupportPresent = false;
|
|
// On Windows we auto-detect based on device support.
|
|
if (!sDidCheckTouchDeviceSupport) {
|
|
sDidCheckTouchDeviceSupport = true;
|
|
sIsTouchDeviceSupportPresent = mozilla::widget::IsTouchDeviceSupportPresent();
|
|
}
|
|
prefValue = sIsTouchDeviceSupportPresent;
|
|
#else
|
|
NS_WARNING("dom.w3c_touch_events.enabled=2 not implemented!");
|
|
prefValue = false;
|
|
#endif
|
|
} else {
|
|
prefValue = !!flag;
|
|
}
|
|
}
|
|
if (prefValue) {
|
|
nsContentUtils::InitializeTouchEventTable();
|
|
}
|
|
return prefValue;
|
|
}
|
|
|
|
bool
|
|
nsDOMTouchEvent::AltKey()
|
|
{
|
|
return mEvent->AsTouchEvent()->IsAlt();
|
|
}
|
|
|
|
bool
|
|
nsDOMTouchEvent::MetaKey()
|
|
{
|
|
return mEvent->AsTouchEvent()->IsMeta();
|
|
}
|
|
|
|
bool
|
|
nsDOMTouchEvent::CtrlKey()
|
|
{
|
|
return mEvent->AsTouchEvent()->IsControl();
|
|
}
|
|
|
|
bool
|
|
nsDOMTouchEvent::ShiftKey()
|
|
{
|
|
return mEvent->AsTouchEvent()->IsShift();
|
|
}
|
|
|
|
nsresult
|
|
NS_NewDOMTouchEvent(nsIDOMEvent** aInstancePtrResult,
|
|
mozilla::dom::EventTarget* aOwner,
|
|
nsPresContext* aPresContext,
|
|
WidgetTouchEvent* aEvent)
|
|
{
|
|
nsDOMTouchEvent* it = new nsDOMTouchEvent(aOwner, aPresContext, aEvent);
|
|
return CallQueryInterface(it, aInstancePtrResult);
|
|
}
|