2009-12-23 11:10:31 -08: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/. */
|
2014-02-28 06:58:42 -08:00
|
|
|
#ifndef mozilla_dom_TransitionEvent_h_
|
|
|
|
#define mozilla_dom_TransitionEvent_h_
|
2009-12-23 11:10:31 -08:00
|
|
|
|
2013-10-17 23:10:22 -07:00
|
|
|
#include "mozilla/EventForwards.h"
|
2014-03-04 16:37:43 -08:00
|
|
|
#include "mozilla/dom/Event.h"
|
2013-03-14 14:16:13 -07:00
|
|
|
#include "mozilla/dom/TransitionEventBinding.h"
|
2014-03-04 16:37:43 -08:00
|
|
|
#include "nsIDOMTransitionEvent.h"
|
2009-12-23 11:10:31 -08:00
|
|
|
|
2013-08-29 14:18:25 -07:00
|
|
|
class nsAString;
|
2009-12-23 11:10:31 -08:00
|
|
|
|
2014-02-28 06:58:42 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-03-04 16:37:43 -08:00
|
|
|
class TransitionEvent : public Event,
|
2014-02-28 06:58:42 -08:00
|
|
|
public nsIDOMTransitionEvent
|
2009-12-23 11:10:31 -08:00
|
|
|
{
|
|
|
|
public:
|
2014-02-28 06:58:42 -08:00
|
|
|
TransitionEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
InternalTransitionEvent* aEvent);
|
2009-12-23 11:10:31 -08:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2014-03-04 16:37:43 -08:00
|
|
|
NS_FORWARD_TO_EVENT
|
2009-12-23 11:10:31 -08:00
|
|
|
NS_DECL_NSIDOMTRANSITIONEVENT
|
|
|
|
|
2014-02-28 06:58:42 -08:00
|
|
|
static already_AddRefed<TransitionEvent>
|
|
|
|
Constructor(const GlobalObject& aGlobal,
|
2013-05-04 07:41:20 -07:00
|
|
|
const nsAString& aType,
|
2014-02-28 06:58:42 -08:00
|
|
|
const TransitionEventInit& aParam,
|
|
|
|
ErrorResult& aRv);
|
2013-05-04 07:41:20 -07:00
|
|
|
|
2013-04-25 09:29:54 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
2014-02-28 06:58:42 -08:00
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE
|
2013-03-14 14:16:13 -07:00
|
|
|
{
|
2014-02-28 06:58:42 -08:00
|
|
|
return TransitionEventBinding::Wrap(aCx, aScope, this);
|
2013-03-14 14:16:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// xpidl implementation
|
|
|
|
// GetPropertyName(nsAString& aPropertyName)
|
2013-05-04 07:41:20 -07:00
|
|
|
// GetPseudoElement(nsAString& aPreudoElement)
|
2013-03-14 14:16:13 -07:00
|
|
|
|
2013-10-17 23:10:22 -07:00
|
|
|
float ElapsedTime();
|
2009-12-23 11:10:31 -08:00
|
|
|
};
|
|
|
|
|
2014-02-28 06:58:42 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_TransitionEvent_h_
|