2015-02-20 10:12:00 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: set ts=2 sw=2 et tw=78:
|
|
|
|
* 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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Description of TouchManager class.
|
|
|
|
* Incapsulate code related with work of touch events.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TouchManager_h_
|
|
|
|
#define TouchManager_h_
|
|
|
|
|
2015-09-10 13:24:34 +03:00
|
|
|
#include "mozilla/BasicEvents.h"
|
|
|
|
#include "mozilla/dom/Touch.h"
|
2016-08-18 14:13:28 +03:00
|
|
|
#include "mozilla/TouchEvents.h"
|
2015-09-10 13:24:34 +03:00
|
|
|
#include "nsRefPtrHashtable.h"
|
|
|
|
|
2015-02-20 10:12:00 +03:00
|
|
|
class nsIDocument;
|
|
|
|
|
2015-12-22 09:14:12 +03:00
|
|
|
namespace mozilla {
|
2016-11-30 06:14:27 +03:00
|
|
|
class PresShell;
|
2015-12-22 09:14:12 +03:00
|
|
|
|
2015-02-20 10:12:00 +03:00
|
|
|
class TouchManager {
|
|
|
|
public:
|
2015-02-25 06:20:00 +03:00
|
|
|
// Initialize and release static variables
|
|
|
|
static void InitializeStatics();
|
|
|
|
static void ReleaseStatics();
|
|
|
|
|
2015-02-20 10:12:00 +03:00
|
|
|
void Init(PresShell* aPresShell, nsIDocument* aDocument);
|
|
|
|
void Destroy();
|
|
|
|
|
|
|
|
bool PreHandleEvent(mozilla::WidgetEvent* aEvent,
|
|
|
|
nsEventStatus* aStatus,
|
|
|
|
bool& aTouchIsNew,
|
|
|
|
bool& aIsHandlingUserInput,
|
|
|
|
nsCOMPtr<nsIContent>& aCurrentEventContent);
|
|
|
|
|
2016-08-18 14:13:28 +03:00
|
|
|
static already_AddRefed<nsIContent> GetAnyCapturedTouchTarget();
|
|
|
|
static bool HasCapturedTouch(int32_t aId);
|
|
|
|
static already_AddRefed<dom::Touch> GetCapturedTouch(int32_t aId);
|
2017-02-16 10:05:09 +03:00
|
|
|
static bool ShouldConvertTouchToPointer(const dom::Touch* aTouch,
|
|
|
|
const WidgetTouchEvent* aEvent);
|
2015-02-20 10:12:00 +03:00
|
|
|
private:
|
|
|
|
void EvictTouches();
|
2016-08-18 14:13:28 +03:00
|
|
|
static void EvictTouchPoint(RefPtr<dom::Touch>& aTouch,
|
|
|
|
nsIDocument* aLimitToDocument = nullptr);
|
|
|
|
static void AppendToTouchList(WidgetTouchEvent::TouchArray* aTouchList);
|
2015-02-20 10:12:00 +03:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<PresShell> mPresShell;
|
2015-02-20 10:12:00 +03:00
|
|
|
nsCOMPtr<nsIDocument> mDocument;
|
2016-08-18 14:13:28 +03:00
|
|
|
|
2016-08-18 14:13:29 +03:00
|
|
|
struct TouchInfo
|
|
|
|
{
|
|
|
|
RefPtr<mozilla::dom::Touch> mTouch;
|
|
|
|
nsCOMPtr<nsIContent> mNonAnonymousTarget;
|
2017-02-16 10:05:09 +03:00
|
|
|
bool mConvertToPointer;
|
2016-08-18 14:13:29 +03:00
|
|
|
};
|
|
|
|
static nsDataHashtable<nsUint32HashKey, TouchInfo>* sCaptureTouchList;
|
2015-02-20 10:12:00 +03:00
|
|
|
};
|
|
|
|
|
2015-12-22 09:14:12 +03:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-02-20 10:12:00 +03:00
|
|
|
#endif /* !defined(TouchManager_h_) */
|