2011-09-22 13:17:40 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-05-03 22:32:37 +03:00
|
|
|
/* 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/. */
|
2011-09-22 13:17:40 +04:00
|
|
|
|
2014-02-26 09:23:57 +04:00
|
|
|
#ifndef mozilla_dom_CompositionEvent_h_
|
|
|
|
#define mozilla_dom_CompositionEvent_h_
|
2011-09-22 13:17:40 +04:00
|
|
|
|
2013-03-26 15:45:45 +04:00
|
|
|
#include "mozilla/dom/CompositionEventBinding.h"
|
2016-07-26 13:09:07 +03:00
|
|
|
#include "mozilla/dom/TextClause.h"
|
|
|
|
#include "mozilla/dom/TypedArray.h"
|
2014-02-28 18:58:43 +04:00
|
|
|
#include "mozilla/dom/UIEvent.h"
|
2013-10-18 10:10:25 +04:00
|
|
|
#include "mozilla/EventForwards.h"
|
2011-09-22 13:17:40 +04:00
|
|
|
|
2014-02-26 09:23:57 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2016-07-26 13:09:07 +03:00
|
|
|
typedef nsTArray<RefPtr<TextClause>> TextClauseArray;
|
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
class CompositionEvent : public UIEvent
|
2011-09-22 13:17:40 +04:00
|
|
|
{
|
|
|
|
public:
|
2014-02-26 09:23:57 +04:00
|
|
|
CompositionEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetCompositionEvent* aEvent);
|
2011-09-22 13:17:40 +04:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2014-02-28 18:58:43 +04:00
|
|
|
NS_FORWARD_TO_UIEVENT
|
2011-09-22 13:17:40 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObjectInternal(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override
|
2013-03-26 15:45:45 +04:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 17:13:33 +03:00
|
|
|
return CompositionEventBinding::Wrap(aCx, this, aGivenProto);
|
2013-03-26 15:45:45 +04:00
|
|
|
}
|
|
|
|
|
2014-02-26 09:23:57 +04:00
|
|
|
void InitCompositionEvent(const nsAString& aType,
|
|
|
|
bool aCanBubble,
|
|
|
|
bool aCancelable,
|
2016-01-30 20:05:36 +03:00
|
|
|
nsGlobalWindow* aView,
|
2014-02-26 09:23:57 +04:00
|
|
|
const nsAString& aData,
|
2016-01-30 20:05:36 +03:00
|
|
|
const nsAString& aLocale);
|
|
|
|
void GetData(nsAString&) const;
|
|
|
|
void GetLocale(nsAString&) const;
|
2016-07-26 13:09:07 +03:00
|
|
|
void GetRanges(TextClauseArray& aRanges);
|
2013-03-26 15:45:45 +04:00
|
|
|
|
2011-09-22 13:17:40 +04:00
|
|
|
protected:
|
2014-07-09 01:23:17 +04:00
|
|
|
~CompositionEvent() {}
|
|
|
|
|
2011-09-22 13:17:40 +04:00
|
|
|
nsString mData;
|
|
|
|
nsString mLocale;
|
2016-07-26 13:09:07 +03:00
|
|
|
TextClauseArray mRanges;
|
2011-09-22 13:17:40 +04:00
|
|
|
};
|
|
|
|
|
2014-02-26 09:23:57 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-08-12 14:39:31 +03:00
|
|
|
already_AddRefed<mozilla::dom::CompositionEvent>
|
|
|
|
NS_NewDOMCompositionEvent(mozilla::dom::EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetCompositionEvent* aEvent);
|
|
|
|
|
2014-02-26 09:23:57 +04:00
|
|
|
#endif // mozilla_dom_CompositionEvent_h_
|