mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
7a25ca546c
- fix patch ordering coming from PM repo (3a8768f44) - Bug 1119074 - If we're stopping event propagation from XUL popups, also stop them from crossing process boundaries r=smaug,felipe (965e2193e) - Bug 1082145 - |js::WatchGuts| can leak |wpmap|. r=erahm (12c86f3d3) - No Bug - Improve Interpreter stack accessor assertions. (rs=Waldo) (8ba7a702c) - Bug 874842 - Return Event instead of nsIDOMEvent (748b57fd2) - Bug 1165966 - Add test cases r=terrence (79a909d5b) - Bug 1167025: Do not mix bool and int in bitwise-or in blendpsMask; r=sunfish (f0f23c0c4) - Bug 1158323 - Make sure we set a base rect on document elements that have margins set. r=tn (c253a2ef8) - Bug 1178847 - Move the code from ChromeProcessController::InitializeRoot to APZCCallbackHelper so it can be reused in the child process. r=botond (16d539bcb) - Bug 1165966 - Add error checking when populating safepoints r=bhackett (c66d249d1) - spacing and pointer style (cddc1bac4) - Bug 1196027 - check the actual current marking mode instead of the permanent intention, r=terrence (eddcfd7fb) - Bug 1206590: Move gcWeakMapList from JSCompartment to JS::Zone. r=terrence (7e5e0d505) - Bug 1181908 part 1. Fix support for JSOP_OBJECT in scripts parsed on background threads by clearing the unboxedLayouts list on the background thread parsing compartment when merging the parse result to the target compartment. r=jandem (25c6a3b01) - Bug 1163207 - Make RematerializedFrame store the real callee. (r=shu) (ce276e91c) - Bug 1164448 - Handle unwound rectifier frames as exit frames in JitProfilingFrameIterator. r=jandem (bb639b4e2) - Bug 1164448 - Add test. r=jandem (83f5cc608) - Bug 1196497 - Don't assert that the replacer continues to pass IsArray during JSON.stringify. (If the replacer was a revocable proxy to an array, revoking the proxy would make the replacer no longer IsArray.) r=evilpie (442c3823f) - Bug 1177247 - Prevent HandlePossibleViewportChange from clobbering a restored scroll position from forward/back navigation. r=botond (4202ac757) - Bug 1182772, optimize ProcessGlobal out from CC graph (and also TabChild's EventListeners), r=mccr8 (ccb2278bf) - Bug 1139155 - Add a mechanism to know when the APZ is done processing. r=botond (17328e5be) - Bug 1171537 - Allow URIs to be the empty string in TabParent::RecvCreateWindow. r=billm. (e280e994c) - Bug 1173219 - Return nsresults from TabParent::RecvCreateWindow to make opening windows more robust. r=billm (9f0633b15) - Bug 1142817 - Use UniquePtr in testXDR_sourceMap. r=erahm (7ec437162)
249 lines
7.1 KiB
C++
249 lines
7.1 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 "mozilla/dom/TouchEvent.h"
|
|
#include "mozilla/dom/Touch.h"
|
|
#include "mozilla/dom/TouchListBinding.h"
|
|
#include "mozilla/Preferences.h"
|
|
#include "mozilla/TouchEvents.h"
|
|
#include "nsContentUtils.h"
|
|
#include "mozilla/WidgetUtils.h"
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
/******************************************************************************
|
|
* TouchList
|
|
*****************************************************************************/
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(TouchList)
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
NS_INTERFACE_MAP_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(TouchList, mParent, mPoints)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(TouchList)
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(TouchList)
|
|
|
|
JSObject*
|
|
TouchList::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
|
{
|
|
return TouchListBinding::Wrap(aCx, this, aGivenProto);
|
|
}
|
|
|
|
// static
|
|
bool
|
|
TouchList::PrefEnabled(JSContext* aCx, JSObject* aGlobal)
|
|
{
|
|
return TouchEvent::PrefEnabled(aCx, aGlobal);
|
|
}
|
|
|
|
Touch*
|
|
TouchList::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
|
|
*****************************************************************************/
|
|
|
|
TouchEvent::TouchEvent(EventTarget* aOwner,
|
|
nsPresContext* aPresContext,
|
|
WidgetTouchEvent* aEvent)
|
|
: UIEvent(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(TouchEvent, UIEvent,
|
|
mTouches,
|
|
mTargetTouches,
|
|
mChangedTouches)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED(TouchEvent)
|
|
NS_INTERFACE_MAP_END_INHERITING(UIEvent)
|
|
|
|
NS_IMPL_ADDREF_INHERITED(TouchEvent, UIEvent)
|
|
NS_IMPL_RELEASE_INHERITED(TouchEvent, UIEvent)
|
|
|
|
void
|
|
TouchEvent::InitTouchEvent(const nsAString& aType,
|
|
bool aCanBubble,
|
|
bool aCancelable,
|
|
nsIDOMWindow* aView,
|
|
int32_t aDetail,
|
|
bool aCtrlKey,
|
|
bool aAltKey,
|
|
bool aShiftKey,
|
|
bool aMetaKey,
|
|
TouchList* aTouches,
|
|
TouchList* aTargetTouches,
|
|
TouchList* aChangedTouches,
|
|
ErrorResult& aRv)
|
|
{
|
|
aRv = UIEvent::InitUIEvent(aType, aCanBubble, aCancelable, aView, aDetail);
|
|
if (aRv.Failed()) {
|
|
return;
|
|
}
|
|
|
|
mEvent->AsInputEvent()->InitBasicModifiers(aCtrlKey, aAltKey,
|
|
aShiftKey, aMetaKey);
|
|
mTouches = aTouches;
|
|
mTargetTouches = aTargetTouches;
|
|
mChangedTouches = aChangedTouches;
|
|
}
|
|
|
|
TouchList*
|
|
TouchEvent::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
|
|
WidgetTouchEvent::AutoTouchArray unchangedTouches;
|
|
const WidgetTouchEvent::TouchArray& touches = touchEvent->touches;
|
|
for (uint32_t i = 0; i < touches.Length(); ++i) {
|
|
if (!touches[i]->mChanged) {
|
|
unchangedTouches.AppendElement(touches[i]);
|
|
}
|
|
}
|
|
mTouches = new TouchList(ToSupports(this), unchangedTouches);
|
|
} else {
|
|
mTouches = new TouchList(ToSupports(this), touchEvent->touches);
|
|
}
|
|
}
|
|
return mTouches;
|
|
}
|
|
|
|
TouchList*
|
|
TouchEvent::TargetTouches()
|
|
{
|
|
if (!mTargetTouches) {
|
|
WidgetTouchEvent::AutoTouchArray targetTouches;
|
|
WidgetTouchEvent* touchEvent = mEvent->AsTouchEvent();
|
|
const WidgetTouchEvent::TouchArray& 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 TouchList(ToSupports(this), targetTouches);
|
|
}
|
|
return mTargetTouches;
|
|
}
|
|
|
|
TouchList*
|
|
TouchEvent::ChangedTouches()
|
|
{
|
|
if (!mChangedTouches) {
|
|
WidgetTouchEvent::AutoTouchArray changedTouches;
|
|
WidgetTouchEvent* touchEvent = mEvent->AsTouchEvent();
|
|
const WidgetTouchEvent::TouchArray& touches = touchEvent->touches;
|
|
for (uint32_t i = 0; i < touches.Length(); ++i) {
|
|
if (touches[i]->mChanged) {
|
|
changedTouches.AppendElement(touches[i]);
|
|
}
|
|
}
|
|
mChangedTouches = new TouchList(ToSupports(this), changedTouches);
|
|
}
|
|
return mChangedTouches;
|
|
}
|
|
|
|
// static
|
|
bool
|
|
TouchEvent::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 = WidgetUtils::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
|
|
TouchEvent::AltKey()
|
|
{
|
|
return mEvent->AsTouchEvent()->IsAlt();
|
|
}
|
|
|
|
bool
|
|
TouchEvent::MetaKey()
|
|
{
|
|
return mEvent->AsTouchEvent()->IsMeta();
|
|
}
|
|
|
|
bool
|
|
TouchEvent::CtrlKey()
|
|
{
|
|
return mEvent->AsTouchEvent()->IsControl();
|
|
}
|
|
|
|
bool
|
|
TouchEvent::ShiftKey()
|
|
{
|
|
return mEvent->AsTouchEvent()->IsShift();
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
using namespace mozilla;
|
|
using namespace mozilla::dom;
|
|
|
|
already_AddRefed<TouchEvent>
|
|
NS_NewDOMTouchEvent(EventTarget* aOwner,
|
|
nsPresContext* aPresContext,
|
|
WidgetTouchEvent* aEvent)
|
|
{
|
|
nsRefPtr<TouchEvent> it = new TouchEvent(aOwner, aPresContext, aEvent);
|
|
return it.forget();
|
|
}
|