2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04: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 18:58:42 +04:00
|
|
|
#ifndef mozilla_dom_TransitionEvent_h_
|
|
|
|
#define mozilla_dom_TransitionEvent_h_
|
2009-12-23 22:10:31 +03:00
|
|
|
|
2013-10-18 10:10:22 +04:00
|
|
|
#include "mozilla/EventForwards.h"
|
2014-03-05 04:37:43 +04:00
|
|
|
#include "mozilla/dom/Event.h"
|
2013-03-15 01:16:13 +04:00
|
|
|
#include "mozilla/dom/TransitionEventBinding.h"
|
2017-08-17 02:48:52 +03:00
|
|
|
#include "nsStringFwd.h"
|
2009-12-23 22:10:31 +03:00
|
|
|
|
2014-02-28 18:58:42 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2018-02-09 19:17:10 +03:00
|
|
|
class TransitionEvent : public Event {
|
2009-12-23 22:10:31 +03:00
|
|
|
public:
|
2014-02-28 18:58:42 +04:00
|
|
|
TransitionEvent(EventTarget* aOwner, nsPresContext* aPresContext,
|
|
|
|
InternalTransitionEvent* aEvent);
|
2009-12-23 22:10:31 +03:00
|
|
|
|
2018-02-12 23:43:55 +03:00
|
|
|
NS_INLINE_DECL_REFCOUNTING_INHERITED(TransitionEvent, Event)
|
2009-12-23 22:10:31 +03:00
|
|
|
|
2014-02-28 18:58:42 +04:00
|
|
|
static already_AddRefed<TransitionEvent> Constructor(
|
|
|
|
const GlobalObject& aGlobal, const nsAString& aType,
|
2019-09-11 17:35:28 +03:00
|
|
|
const TransitionEventInit& aParam);
|
2013-05-04 18:41:20 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObjectInternal(
|
|
|
|
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override {
|
2018-06-26 00:20:54 +03:00
|
|
|
return TransitionEvent_Binding::Wrap(aCx, this, aGivenProto);
|
2013-03-15 01:16:13 +04:00
|
|
|
}
|
|
|
|
|
2018-02-09 19:17:10 +03:00
|
|
|
void GetPropertyName(nsAString& aPropertyName) const;
|
|
|
|
void GetPseudoElement(nsAString& aPreudoElement) const;
|
2013-03-15 01:16:13 +04:00
|
|
|
|
2013-10-18 10:10:22 +04:00
|
|
|
float ElapsedTime();
|
2014-07-09 01:23:17 +04:00
|
|
|
|
|
|
|
protected:
|
2020-02-20 18:56:28 +03:00
|
|
|
~TransitionEvent() = default;
|
2009-12-23 22:10:31 +03:00
|
|
|
};
|
|
|
|
|
2014-02-28 18:58:42 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-08-12 14:39:31 +03:00
|
|
|
already_AddRefed<mozilla::dom::TransitionEvent> NS_NewDOMTransitionEvent(
|
|
|
|
mozilla::dom::EventTarget* aOwner, nsPresContext* aPresContext,
|
|
|
|
mozilla::InternalTransitionEvent* aEvent);
|
|
|
|
|
2014-02-28 18:58:42 +04:00
|
|
|
#endif // mozilla_dom_TransitionEvent_h_
|