1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef InputEvent_h
#define InputEvent_h
#include "core/clipboard/DataTransfer.h"
#include "core/dom/Range.h"
#include "core/dom/StaticRange.h"
#include "core/events/InputEventInit.h"
#include "core/events/UIEvent.h"
namespace blink {
class InputEvent final : public UIEvent {
DEFINE_WRAPPERTYPEINFO();
public:
static InputEvent* create(const AtomicString& type,
const InputEventInit& initializer) {
return new InputEvent(type, initializer);
}
// https://w3c.github.io/input-events/#h-interface-inputevent-attributes
enum class InputType {
None,
// Insertion.
InsertText,
InsertLineBreak,
InsertParagraph,
InsertOrderedList,
InsertUnorderedList,
InsertHorizontalRule,
InsertFromPaste,
InsertFromDrop,
InsertReplacementText,
// Deletion.
DeleteComposedCharacterForward,
DeleteComposedCharacterBackward,
DeleteWordBackward,
DeleteWordForward,
DeleteLineBackward,
DeleteLineForward,
DeleteContentBackward,
DeleteContentForward,
DeleteByCut,
DeleteByDrag,
// History.
HistoryUndo,
HistoryRedo,
// Formatting.
FormatBold,
FormatItalic,
FormatUnderline,
FormatStrikeThrough,
FormatSuperscript,
FormatSubscript,
FormatJustifyCenter,
FormatJustifyFull,
FormatJustifyRight,
FormatJustifyLeft,
FormatIndent,
FormatOutdent,
FormatRemove,
FormatSetBlockTextDirection,
// Add new input types immediately above this line.
NumberOfInputTypes,
};
enum EventCancelable : bool {
NotCancelable = false,
IsCancelable = true,
};
enum EventIsComposing : bool {
NotComposing = false,
IsComposing = true,
};
static InputEvent* createBeforeInput(InputType,
const String& data,
EventCancelable,
EventIsComposing,
const RangeVector*);
static InputEvent* createBeforeInput(InputType,
DataTransfer*,
EventCancelable,
EventIsComposing,
const RangeVector*);
static InputEvent* createInput(InputType,
const String& data,
EventIsComposing,
const RangeVector*);
String inputType() const;
const String& data() const { return m_data; }
DataTransfer* dataTransfer() const { return m_dataTransfer.get(); }
bool isComposing() const { return m_isComposing; }
// Returns a copy of target ranges during event dispatch, and returns an empty
// vector after dispatch.
StaticRangeVector getTargetRanges() const;
bool isInputEvent() const override;
EventDispatchMediator* createMediator() override;
DECLARE_VIRTUAL_TRACE();
private:
friend class InputEventDispatchMediator;
InputEvent(const AtomicString&, const InputEventInit&);
InputType m_inputType;
String m_data;
Member<DataTransfer> m_dataTransfer;
bool m_isComposing;
// We have to stored |Range| internally and only expose |StaticRange|, please
// see comments in |InputEventDispatchMediator::dispatchEvent()|.
RangeVector m_ranges;
};
class InputEventDispatchMediator final : public EventDispatchMediator {
public:
static InputEventDispatchMediator* create(InputEvent*);
private:
explicit InputEventDispatchMediator(InputEvent*);
InputEvent& event() const;
DispatchEventResult dispatchEvent(EventDispatcher&) const override;
};
DEFINE_EVENT_TYPE_CASTS(InputEvent);
} // namespace blink
#endif // InputEvent_h
|