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
|
|
|
|
|
|
|
#include "nsIDOMUIEvent.idl"
|
2011-12-16 16:24:11 -08:00
|
|
|
%{C++
|
|
|
|
#include "nsWeakPtr.h"
|
|
|
|
#include "nsPoint.h"
|
|
|
|
%}
|
2011-04-26 05:30:17 -07:00
|
|
|
interface nsIVariant;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see http://dvcs.w3.org/hg/webevents/raw-file/tip/touchevents.html
|
|
|
|
*/
|
|
|
|
|
2013-08-02 00:06:35 -07:00
|
|
|
[scriptable, builtinclass, uuid(2311671f-ff7e-43d2-adfb-d9e07006955e)]
|
2011-04-27 04:58:25 -07:00
|
|
|
interface nsIDOMTouch : nsISupports {
|
2011-04-26 05:30:17 -07:00
|
|
|
readonly attribute long identifier;
|
|
|
|
readonly attribute nsIDOMEventTarget target;
|
|
|
|
readonly attribute long pageX;
|
|
|
|
readonly attribute long pageY;
|
|
|
|
readonly attribute long screenX;
|
|
|
|
readonly attribute long screenY;
|
|
|
|
readonly attribute long clientX;
|
|
|
|
readonly attribute long clientY;
|
|
|
|
readonly attribute long radiusX;
|
|
|
|
readonly attribute long radiusY;
|
|
|
|
readonly attribute float rotationAngle;
|
|
|
|
readonly attribute float force;
|
|
|
|
};
|
|
|
|
|
2011-08-24 12:49:25 -07:00
|
|
|
[scriptable, uuid(6d5484f7-92ac-45f8-9388-39b5bad055ce)]
|
|
|
|
interface nsITouchEventReceiver : nsISupports {
|
2011-08-24 12:49:25 -07:00
|
|
|
[implicit_jscontext] attribute jsval ontouchstart;
|
|
|
|
[implicit_jscontext] attribute jsval ontouchend;
|
|
|
|
[implicit_jscontext] attribute jsval ontouchmove;
|
|
|
|
[implicit_jscontext] attribute jsval ontouchenter;
|
|
|
|
[implicit_jscontext] attribute jsval ontouchleave;
|
|
|
|
[implicit_jscontext] attribute jsval ontouchcancel;
|
2011-08-24 12:49:25 -07:00
|
|
|
};
|