1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/events/CompositionEvent.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,55 @@ 1.4 +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* vim: set ts=2 et sw=2 tw=80: */ 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +#ifndef mozilla_dom_CompositionEvent_h_ 1.11 +#define mozilla_dom_CompositionEvent_h_ 1.12 + 1.13 +#include "mozilla/dom/CompositionEventBinding.h" 1.14 +#include "mozilla/dom/UIEvent.h" 1.15 +#include "mozilla/EventForwards.h" 1.16 +#include "nsIDOMCompositionEvent.h" 1.17 + 1.18 +namespace mozilla { 1.19 +namespace dom { 1.20 + 1.21 +class CompositionEvent : public UIEvent, 1.22 + public nsIDOMCompositionEvent 1.23 +{ 1.24 +public: 1.25 + CompositionEvent(EventTarget* aOwner, 1.26 + nsPresContext* aPresContext, 1.27 + WidgetCompositionEvent* aEvent); 1.28 + 1.29 + NS_DECL_ISUPPORTS_INHERITED 1.30 + NS_FORWARD_TO_UIEVENT 1.31 + NS_DECL_NSIDOMCOMPOSITIONEVENT 1.32 + 1.33 + virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE 1.34 + { 1.35 + return CompositionEventBinding::Wrap(aCx, this); 1.36 + } 1.37 + 1.38 + void InitCompositionEvent(const nsAString& aType, 1.39 + bool aCanBubble, 1.40 + bool aCancelable, 1.41 + nsIDOMWindow* aView, 1.42 + const nsAString& aData, 1.43 + const nsAString& aLocale, 1.44 + ErrorResult& aRv) 1.45 + { 1.46 + aRv = InitCompositionEvent(aType, aCanBubble, aCancelable, aView, 1.47 + aData, aLocale); 1.48 + } 1.49 + 1.50 +protected: 1.51 + nsString mData; 1.52 + nsString mLocale; 1.53 +}; 1.54 + 1.55 +} // namespace dom 1.56 +} // namespace mozilla 1.57 + 1.58 +#endif // mozilla_dom_CompositionEvent_h_