2011-04-26 05:30:17 -07:00
|
|
|
/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is nsDOMTouchEvent.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is the Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Olli Pettay <Olli.Pettay@helsinki.fi> (Original Author)
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#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"
|
2011-04-26 05:30:17 -07:00
|
|
|
|
2011-04-27 04:58:25 -07:00
|
|
|
class nsDOMTouch : 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);
|
2011-04-26 05:30:17 -07:00
|
|
|
protected:
|
2011-12-16 16:24:11 -08:00
|
|
|
bool mPointsInitialized;
|
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-04-24 07:51:56 -07:00
|
|
|
class nsDOMTouchList : public nsIDOMTouchList
|
2011-04-26 05:30:17 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2012-04-24 07:51:56 -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-04-24 07:51:56 -07:00
|
|
|
nsDOMTouchList() { }
|
|
|
|
nsDOMTouchList(nsTArray<nsCOMPtr<nsIDOMTouch> > &aTouches);
|
|
|
|
|
2011-08-22 02:14:13 -07:00
|
|
|
void Append(nsIDOMTouch* aPoint)
|
|
|
|
{
|
|
|
|
mPoints.AppendElement(aPoint);
|
|
|
|
}
|
|
|
|
|
2012-04-24 07:51:56 -07:00
|
|
|
nsIDOMTouch* GetItemAt(PRUint32 aIndex)
|
|
|
|
{
|
|
|
|
return mPoints.SafeElementAt(aIndex, nsnull);
|
|
|
|
}
|
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_) */
|