2011-09-22 02:17:40 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
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/. */
|
2011-09-22 02:17:40 -07:00
|
|
|
|
|
|
|
#ifndef nsDOMCompositionEvent_h__
|
|
|
|
#define nsDOMCompositionEvent_h__
|
|
|
|
|
|
|
|
#include "nsDOMUIEvent.h"
|
|
|
|
#include "nsIDOMCompositionEvent.h"
|
2013-03-26 04:45:45 -07:00
|
|
|
#include "mozilla/dom/CompositionEventBinding.h"
|
2013-10-17 23:10:25 -07:00
|
|
|
#include "mozilla/EventForwards.h"
|
2011-09-22 02:17:40 -07:00
|
|
|
|
|
|
|
class nsDOMCompositionEvent : public nsDOMUIEvent,
|
|
|
|
public nsIDOMCompositionEvent
|
|
|
|
{
|
|
|
|
public:
|
2013-03-09 03:34:29 -08:00
|
|
|
nsDOMCompositionEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
2013-10-01 00:23:00 -07:00
|
|
|
mozilla::WidgetCompositionEvent* aEvent);
|
2011-09-22 02:17:40 -07:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_FORWARD_TO_NSDOMUIEVENT
|
|
|
|
NS_DECL_NSIDOMCOMPOSITIONEVENT
|
|
|
|
|
2013-04-25 09:29:54 -07:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aScope) MOZ_OVERRIDE
|
2013-03-26 04:45:45 -07:00
|
|
|
{
|
|
|
|
return mozilla::dom::CompositionEventBinding::Wrap(aCx, aScope, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
InitCompositionEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
|
|
|
nsIDOMWindow* aView,
|
|
|
|
const nsAString& aData,
|
|
|
|
const nsAString& aLocale,
|
|
|
|
mozilla::ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
aRv = InitCompositionEvent(aType, aCanBubble, aCancelable, aView,
|
|
|
|
aData, aLocale);
|
|
|
|
}
|
|
|
|
|
2011-09-22 02:17:40 -07:00
|
|
|
protected:
|
|
|
|
nsString mData;
|
|
|
|
nsString mLocale;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsDOMCompositionEvent_h__
|