1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/events/CommandEvent.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,50 @@ 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_CommandEvent_h_ 1.10 +#define mozilla_dom_CommandEvent_h_ 1.11 + 1.12 +#include "mozilla/EventForwards.h" 1.13 +#include "mozilla/dom/CommandEventBinding.h" 1.14 +#include "mozilla/dom/Event.h" 1.15 +#include "nsIDOMCommandEvent.h" 1.16 + 1.17 +namespace mozilla { 1.18 +namespace dom { 1.19 + 1.20 +class CommandEvent : public Event, 1.21 + public nsIDOMCommandEvent 1.22 +{ 1.23 +public: 1.24 + CommandEvent(EventTarget* aOwner, 1.25 + nsPresContext* aPresContext, 1.26 + WidgetCommandEvent* aEvent); 1.27 + 1.28 + NS_DECL_ISUPPORTS_INHERITED 1.29 + 1.30 + NS_DECL_NSIDOMCOMMANDEVENT 1.31 + 1.32 + // Forward to base class 1.33 + NS_FORWARD_TO_EVENT 1.34 + 1.35 + virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE 1.36 + { 1.37 + return CommandEventBinding::Wrap(aCx, this); 1.38 + } 1.39 + 1.40 + void InitCommandEvent(const nsAString& aType, 1.41 + bool aCanBubble, 1.42 + bool aCancelable, 1.43 + const nsAString& aCommand, 1.44 + ErrorResult& aRv) 1.45 + { 1.46 + aRv = InitCommandEvent(aType, aCanBubble, aCancelable, aCommand); 1.47 + } 1.48 +}; 1.49 + 1.50 +} // namespace dom 1.51 +} // namespace mozilla 1.52 + 1.53 +#endif // mozilla_dom_CommandEvent_h_