dom/smil/TimeEvent.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/dom/smil/TimeEvent.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,63 @@
     1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +#ifndef mozilla_dom_TimeEvent_h_
    1.10 +#define mozilla_dom_TimeEvent_h_
    1.11 +
    1.12 +#include "mozilla/dom/Event.h"
    1.13 +#include "mozilla/dom/TimeEventBinding.h"
    1.14 +#include "nsIDOMTimeEvent.h"
    1.15 +
    1.16 +namespace mozilla {
    1.17 +namespace dom {
    1.18 +
    1.19 +class TimeEvent MOZ_FINAL : public Event,
    1.20 +                            public nsIDOMTimeEvent
    1.21 +{
    1.22 +public:
    1.23 +  TimeEvent(EventTarget* aOwner,
    1.24 +            nsPresContext* aPresContext,
    1.25 +            WidgetEvent* aEvent);
    1.26 +
    1.27 +  // nsISupports interface:
    1.28 +  NS_DECL_ISUPPORTS_INHERITED
    1.29 +  NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(TimeEvent, Event)
    1.30 +
    1.31 +  // nsIDOMTimeEvent interface:
    1.32 +  NS_DECL_NSIDOMTIMEEVENT
    1.33 +
    1.34 +  // Forward to base class
    1.35 +  NS_FORWARD_TO_EVENT
    1.36 +
    1.37 +  virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE
    1.38 +  {
    1.39 +    return TimeEventBinding::Wrap(aCx, this);
    1.40 +  }
    1.41 +
    1.42 +  int32_t Detail() const
    1.43 +  {
    1.44 +    return mDetail;
    1.45 +  }
    1.46 +
    1.47 +  nsIDOMWindow* GetView() const
    1.48 +  {
    1.49 +    return mView;
    1.50 +  }
    1.51 +
    1.52 +  void InitTimeEvent(const nsAString& aType, nsIDOMWindow* aView,
    1.53 +                     int32_t aDetail, ErrorResult& aRv)
    1.54 +  {
    1.55 +    aRv = InitTimeEvent(aType, aView, aDetail);
    1.56 +  }
    1.57 +
    1.58 +private:
    1.59 +  nsCOMPtr<nsIDOMWindow> mView;
    1.60 +  int32_t mDetail;
    1.61 +};
    1.62 +
    1.63 +} // namespace dom
    1.64 +} // namespace mozilla
    1.65 +
    1.66 +#endif // mozilla_dom_TimeEvent_h_

mercurial