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;
|
|
|
|
|
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 ontouchcancel;
|
2011-08-24 12:49:25 -07:00
|
|
|
};
|