2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsIDOMUIEvent.idl"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* For more information on this interface please see
|
|
|
|
* http://www.w3.org/TR/SVG11/script.html#InterfaceSVGZoomEvent
|
|
|
|
*/
|
|
|
|
|
|
|
|
interface nsIDOMSVGRect;
|
|
|
|
|
2012-12-22 00:18:08 -08:00
|
|
|
[scriptable, builtinclass, uuid(9cf032c6-8485-4bde-90d4-0c8bbff27a12)]
|
2007-03-22 10:30:00 -07:00
|
|
|
interface nsIDOMSVGZoomEvent : nsIDOMUIEvent
|
|
|
|
{
|
2013-01-09 15:02:47 -08:00
|
|
|
// Not implemented
|
|
|
|
// readonly attribute nsIDOMSVGRect zoomRectScreen;
|
2007-03-22 10:30:00 -07:00
|
|
|
readonly attribute float previousScale;
|
2012-12-22 20:54:25 -08:00
|
|
|
// SVGPoint
|
|
|
|
readonly attribute nsISupports previousTranslate;
|
2007-03-22 10:30:00 -07:00
|
|
|
readonly attribute float newScale;
|
2012-12-22 20:54:25 -08:00
|
|
|
// SVGPoint
|
|
|
|
readonly attribute nsISupports newTranslate;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|