2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; 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
|
|
|
|
2013-04-30 10:43:07 -07:00
|
|
|
#ifndef mozilla_dom_SVGZoomEvent_h
|
|
|
|
#define mozilla_dom_SVGZoomEvent_h
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-04-30 10:43:25 -07:00
|
|
|
#include "DOMSVGPoint.h"
|
2014-02-28 06:58:43 -08:00
|
|
|
#include "mozilla/dom/UIEvent.h"
|
2013-04-30 10:43:25 -07:00
|
|
|
#include "mozilla/dom/SVGZoomEventBinding.h"
|
2014-02-28 06:58:43 -08:00
|
|
|
#include "mozilla/EventForwards.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2012-01-26 01:57:21 -08:00
|
|
|
|
|
|
|
class nsPresContext;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-12-08 04:15:53 -08:00
|
|
|
namespace mozilla {
|
2013-11-17 07:59:45 -08:00
|
|
|
|
|
|
|
class nsISVGPoint;
|
|
|
|
|
2013-04-30 10:43:07 -07:00
|
|
|
namespace dom {
|
|
|
|
|
2014-02-28 06:58:43 -08:00
|
|
|
class SVGZoomEvent MOZ_FINAL : public UIEvent
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2014-03-31 20:33:28 -07:00
|
|
|
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(SVGZoomEvent, UIEvent)
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
2013-04-30 10:43:07 -07:00
|
|
|
SVGZoomEvent(EventTarget* aOwner, nsPresContext* aPresContext,
|
2014-07-30 10:16:57 -07:00
|
|
|
InternalSVGZoomEvent* aEvent);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Forward to base class
|
2014-02-28 06:58:43 -08:00
|
|
|
NS_FORWARD_TO_UIEVENT
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-10-17 16:16:58 -07:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx) MOZ_OVERRIDE
|
2013-04-30 10:43:25 -07:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 15:27:17 -07:00
|
|
|
return SVGZoomEventBinding::Wrap(aCx, this);
|
2013-04-30 10:43:25 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
float PreviousScale() const
|
|
|
|
{
|
|
|
|
return mPreviousScale;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsISVGPoint* GetPreviousTranslate() const
|
|
|
|
{
|
|
|
|
return mPreviousTranslate;
|
|
|
|
}
|
|
|
|
|
|
|
|
float NewScale() const
|
|
|
|
{
|
|
|
|
return mNewScale;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsISVGPoint* GetNewTranslate() const
|
|
|
|
{
|
|
|
|
return mNewTranslate;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
private:
|
2014-07-08 14:23:16 -07:00
|
|
|
~SVGZoomEvent();
|
|
|
|
|
2010-12-08 04:15:53 -08:00
|
|
|
float mPreviousScale;
|
|
|
|
float mNewScale;
|
|
|
|
nsRefPtr<DOMSVGPoint> mPreviousTranslate;
|
|
|
|
nsRefPtr<DOMSVGPoint> mNewTranslate;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2013-04-30 10:43:07 -07:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_SVGZoomEvent_h
|