2011-04-26 05:30:17 -07:00
|
|
|
/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */
|
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/. */
|
2011-04-26 05:30:17 -07:00
|
|
|
#ifndef nsDOMTouchEvent_h_
|
|
|
|
#define nsDOMTouchEvent_h_
|
|
|
|
|
|
|
|
#include "nsDOMUIEvent.h"
|
|
|
|
#include "nsIDOMTouchEvent.h"
|
|
|
|
#include "nsString.h"
|
2011-12-16 16:24:11 -08:00
|
|
|
#include "nsTArray.h"
|
2012-06-18 19:30:09 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2011-04-26 05:30:17 -07:00
|
|
|
|
2012-06-18 19:30:09 -07:00
|
|
|
class nsDOMTouch MOZ_FINAL : public nsIDOMTouch
|
2011-04-26 05:30:17 -07:00
|
|
|
{
|
|
|
|
public:
|
2011-04-27 04:58:25 -07:00
|
|
|
nsDOMTouch(nsIDOMEventTarget* aTarget,
|
|
|
|
PRInt32 aIdentifier,
|
|
|
|
PRInt32 aPageX,
|
|
|
|
PRInt32 aPageY,
|
|
|
|
PRInt32 aScreenX,
|
|
|
|
PRInt32 aScreenY,
|
|
|
|
PRInt32 aClientX,
|
|
|
|
PRInt32 aClientY,
|
|
|
|
PRInt32 aRadiusX,
|
|
|
|
PRInt32 aRadiusY,
|
|
|
|
float aRotationAngle,
|
|
|
|
float aForce)
|
2011-12-16 16:24:11 -08:00
|
|
|
{
|
|
|
|
mTarget = aTarget;
|
|
|
|
mIdentifier = aIdentifier;
|
|
|
|
mPagePoint = nsIntPoint(aPageX, aPageY);
|
|
|
|
mScreenPoint = nsIntPoint(aScreenX, aScreenY);
|
|
|
|
mClientPoint = nsIntPoint(aClientX, aClientY);
|
|
|
|
mRefPoint = nsIntPoint(0, 0);
|
|
|
|
mPointsInitialized = true;
|
|
|
|
mRadius.x = aRadiusX;
|
|
|
|
mRadius.y = aRadiusY;
|
|
|
|
mRotationAngle = aRotationAngle;
|
|
|
|
mForce = aForce;
|
|
|
|
|
|
|
|
mChanged = false;
|
|
|
|
mMessage = 0;
|
|
|
|
}
|
|
|
|
nsDOMTouch(PRInt32 aIdentifier,
|
|
|
|
nsIntPoint aPoint,
|
|
|
|
nsIntPoint aRadius,
|
|
|
|
float aRotationAngle,
|
|
|
|
float aForce)
|
|
|
|
{
|
|
|
|
mIdentifier = aIdentifier;
|
|
|
|
mPagePoint = nsIntPoint(0, 0);
|
|
|
|
mScreenPoint = nsIntPoint(0, 0);
|
|
|
|
mClientPoint = nsIntPoint(0, 0);
|
|
|
|
mRefPoint = aPoint;
|
|
|
|
mPointsInitialized = false;
|
|
|
|
mRadius = aRadius;
|
|
|
|
mRotationAngle = aRotationAngle;
|
|
|
|
mForce = aForce;
|
|
|
|
|
|
|
|
mChanged = false;
|
|
|
|
mMessage = 0;
|
|
|
|
}
|
2011-04-26 05:30:17 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2011-04-27 04:58:25 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(nsDOMTouch)
|
|
|
|
NS_DECL_NSIDOMTOUCH
|
2011-12-16 16:24:11 -08:00
|
|
|
void InitializePoints(nsPresContext* aPresContext, nsEvent* aEvent)
|
|
|
|
{
|
|
|
|
if (mPointsInitialized) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mClientPoint = nsDOMEvent::GetClientCoords(aPresContext,
|
|
|
|
aEvent,
|
|
|
|
mRefPoint,
|
|
|
|
mClientPoint);
|
|
|
|
mPagePoint = nsDOMEvent::GetPageCoords(aPresContext,
|
|
|
|
aEvent,
|
|
|
|
mRefPoint,
|
|
|
|
mClientPoint);
|
|
|
|
mScreenPoint = nsDOMEvent::GetScreenCoords(aPresContext, aEvent, mRefPoint);
|
|
|
|
mPointsInitialized = true;
|
|
|
|
}
|
|
|
|
void SetTarget(nsIDOMEventTarget *aTarget)
|
|
|
|
{
|
|
|
|
mTarget = aTarget;
|
|
|
|
}
|
|
|
|
bool Equals(nsIDOMTouch* aTouch);
|
2012-07-15 19:58:43 -07:00
|
|
|
|
2011-04-26 05:30:17 -07:00
|
|
|
PRInt32 mIdentifier;
|
2011-12-16 16:24:11 -08:00
|
|
|
nsIntPoint mPagePoint;
|
|
|
|
nsIntPoint mClientPoint;
|
|
|
|
nsIntPoint mScreenPoint;
|
|
|
|
nsIntPoint mRadius;
|
2011-04-26 05:30:17 -07:00
|
|
|
float mRotationAngle;
|
|
|
|
float mForce;
|
2012-07-15 19:58:43 -07:00
|
|
|
protected:
|
|
|
|
bool mPointsInitialized;
|
2011-04-26 05:30:17 -07:00
|
|
|
};
|
|
|
|
|
2012-08-10 11:01:16 -07:00
|
|
|
class nsDOMTouchList MOZ_FINAL : public nsIDOMTouchList
|
2011-04-26 05:30:17 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2012-08-02 10:41:42 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(nsDOMTouchList)
|
2011-04-26 05:30:17 -07:00
|
|
|
NS_DECL_NSIDOMTOUCHLIST
|
2011-12-16 16:24:11 -08:00
|
|
|
|
2012-08-02 10:41:42 -07:00
|
|
|
nsDOMTouchList() { }
|
|
|
|
nsDOMTouchList(nsTArray<nsCOMPtr<nsIDOMTouch> > &aTouches);
|
2012-05-03 10:01:49 -07:00
|
|
|
|
2012-08-02 10:41:42 -07:00
|
|
|
void Append(nsIDOMTouch* aPoint)
|
2012-04-24 07:51:56 -07:00
|
|
|
{
|
2012-08-02 10:41:42 -07:00
|
|
|
mPoints.AppendElement(aPoint);
|
2012-04-24 07:51:56 -07:00
|
|
|
}
|
2012-05-03 10:01:49 -07:00
|
|
|
|
2012-08-02 10:41:42 -07:00
|
|
|
nsIDOMTouch* GetItemAt(PRUint32 aIndex)
|
2012-05-03 10:01:49 -07:00
|
|
|
{
|
2012-08-12 03:43:47 -07:00
|
|
|
return mPoints.SafeElementAt(aIndex, nullptr);
|
2012-05-03 10:01:49 -07:00
|
|
|
}
|
|
|
|
|
2011-04-26 05:30:17 -07:00
|
|
|
protected:
|
2011-12-16 16:24:11 -08:00
|
|
|
nsTArray<nsCOMPtr<nsIDOMTouch> > mPoints;
|
2011-04-26 05:30:17 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsDOMTouchEvent : public nsDOMUIEvent,
|
|
|
|
public nsIDOMTouchEvent
|
|
|
|
{
|
|
|
|
public:
|
2011-12-16 16:24:11 -08:00
|
|
|
nsDOMTouchEvent(nsPresContext* aPresContext, nsTouchEvent* aEvent);
|
2011-04-26 05:30:17 -07:00
|
|
|
virtual ~nsDOMTouchEvent();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(nsDOMTouchEvent, nsDOMUIEvent)
|
|
|
|
NS_DECL_NSIDOMTOUCHEVENT
|
|
|
|
|
|
|
|
NS_FORWARD_TO_NSDOMUIEVENT
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool PrefEnabled();
|
2011-04-26 05:30:17 -07:00
|
|
|
protected:
|
|
|
|
nsCOMPtr<nsIDOMTouchList> mTouches;
|
|
|
|
nsCOMPtr<nsIDOMTouchList> mTargetTouches;
|
|
|
|
nsCOMPtr<nsIDOMTouchList> mChangedTouches;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* !defined(nsDOMTouchEvent_h_) */
|