38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_TextFormatUpdateEvent_h_
|
|
#define mozilla_dom_TextFormatUpdateEvent_h_
|
|
|
|
#include "mozilla/dom/Event.h"
|
|
#include "mozilla/dom/TextFormatUpdateEventBinding.h"
|
|
|
|
namespace mozilla::dom {
|
|
|
|
class TextFormatUpdateEvent final : public Event {
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(TextFormatUpdateEvent, Event)
|
|
|
|
TextFormatUpdateEvent(EventTarget* aOwner, const nsAString& aType,
|
|
const TextFormatUpdateEventInit& aOptions);
|
|
|
|
static already_AddRefed<TextFormatUpdateEvent> Constructor(
|
|
const GlobalObject& aGlobal, const nsAString& aType,
|
|
const TextFormatUpdateEventInit& aOptions);
|
|
|
|
JSObject* WrapObjectInternal(JSContext* aCx,
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
void GetTextFormats(nsTArray<RefPtr<TextFormat>>& aRetVal);
|
|
|
|
private:
|
|
~TextFormatUpdateEvent() = default;
|
|
nsTArray<RefPtr<TextFormat>> mTextFormats;
|
|
};
|
|
|
|
} // namespace mozilla::dom
|
|
|
|
#endif // mozilla_dom_TextFormatUpdateEvent_h_
|