File: CompositeEditCommand.h

package info (click to toggle)
chromium-browser 57.0.2987.98-1~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,637,852 kB
  • ctags: 2,544,394
  • sloc: cpp: 12,815,961; ansic: 3,676,222; python: 1,147,112; asm: 526,608; java: 523,212; xml: 286,794; perl: 92,654; sh: 86,408; objc: 73,271; makefile: 27,698; cs: 18,487; yacc: 13,031; tcl: 12,957; pascal: 4,875; ml: 4,716; lex: 3,904; sql: 3,862; ruby: 1,982; lisp: 1,508; php: 1,368; exp: 404; awk: 325; csh: 117; jsp: 39; sed: 37
file content (250 lines) | stat: -rw-r--r-- 11,024 bytes parent folder | download
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
/*
 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef CompositeEditCommand_h
#define CompositeEditCommand_h

#include "core/CSSPropertyNames.h"
#include "core/CoreExport.h"
#include "core/editing/commands/EditCommand.h"
#include "core/editing/commands/EditingState.h"
#include "core/editing/commands/UndoStep.h"
#include "wtf/Vector.h"

namespace blink {

class EditingStyle;
class Element;
class HTMLBRElement;
class HTMLElement;
class HTMLSpanElement;
class Text;

class CORE_EXPORT CompositeEditCommand : public EditCommand {
 public:
  enum ShouldPreserveSelection { PreserveSelection, DoNotPreserveSelection };
  enum ShouldPreserveStyle { PreserveStyle, DoNotPreserveStyle };

  ~CompositeEditCommand() override;

  const VisibleSelection& startingSelection() const {
    return m_startingSelection;
  }
  const VisibleSelection& endingSelection() const { return m_endingSelection; }

  void setStartingSelection(const VisibleSelection&);
  void setEndingSelection(const SelectionInDOMTree&);
  // TODO(yosin): |setEndingVisibleSelection()| will take |SelectionInUndoStep|
  // You should not use this function other than copying existing selection.
  void setEndingVisibleSelection(const VisibleSelection&);

  void setParent(CompositeEditCommand*) override;

  // Returns |false| if the command failed.  e.g. It's aborted.
  bool apply();
  bool isFirstCommand(EditCommand* command) {
    return !m_commands.isEmpty() && m_commands.front() == command;
  }
  UndoStep* undoStep() { return m_undoStep.get(); }
  UndoStep* ensureUndoStep();
  // Append undo step from an already applied command.
  void appendCommandToUndoStep(CompositeEditCommand*);

  virtual bool isReplaceSelectionCommand() const;
  virtual bool isTypingCommand() const;
  virtual bool isCommandGroupWrapper() const;
  virtual bool isDragAndDropCommand() const;
  virtual bool preservesTypingStyle() const;
  virtual void setShouldRetainAutocorrectionIndicator(bool);
  virtual bool shouldStopCaretBlinking() const { return false; }

  DECLARE_VIRTUAL_TRACE();

 protected:
  explicit CompositeEditCommand(Document&);

  //
  // sugary-sweet convenience functions to help create and apply edit commands
  // in composite commands
  //
  void appendNode(Node*, ContainerNode* parent, EditingState*);
  void applyCommandToComposite(EditCommand*, EditingState*);
  void applyCommandToComposite(CompositeEditCommand*,
                               const VisibleSelection&,
                               EditingState*);
  void applyStyle(const EditingStyle*, EditingState*);
  void applyStyle(const EditingStyle*,
                  const Position& start,
                  const Position& end,
                  EditingState*);
  void applyStyledElement(Element*, EditingState*);
  void removeStyledElement(Element*, EditingState*);
  void deleteSelection(EditingState*,
                       bool smartDelete = false,
                       bool mergeBlocksAfterDelete = true,
                       bool expandForSpecialElements = true,
                       bool sanitizeMarkup = true);
  void deleteSelection(const VisibleSelection&,
                       EditingState*,
                       bool smartDelete = false,
                       bool mergeBlocksAfterDelete = true,
                       bool expandForSpecialElements = true,
                       bool sanitizeMarkup = true);
  virtual void deleteTextFromNode(Text*, unsigned offset, unsigned count);
  bool isRemovableBlock(const Node*);
  void insertNodeAfter(Node*, Node* refChild, EditingState*);
  void insertNodeAt(Node*, const Position&, EditingState*);
  void insertNodeAtTabSpanPosition(Node*, const Position&, EditingState*);
  void insertNodeBefore(
      Node*,
      Node* refChild,
      EditingState*,
      ShouldAssumeContentIsAlwaysEditable = DoNotAssumeContentIsAlwaysEditable);
  void insertParagraphSeparator(EditingState*,
                                bool useDefaultParagraphElement = false,
                                bool pasteBlockqutoeIntoUnquotedArea = false);
  void insertTextIntoNode(Text*, unsigned offset, const String& text);
  void mergeIdenticalElements(Element*, Element*, EditingState*);
  void rebalanceWhitespace();
  void rebalanceWhitespaceAt(const Position&);
  void rebalanceWhitespaceOnTextSubstring(Text*,
                                          int startOffset,
                                          int endOffset);
  void prepareWhitespaceAtPositionForSplit(Position&);
  void replaceCollapsibleWhitespaceWithNonBreakingSpaceIfNeeded(
      const VisiblePosition&);
  bool canRebalance(const Position&) const;
  bool shouldRebalanceLeadingWhitespaceFor(const String&) const;
  void removeCSSProperty(Element*, CSSPropertyID);
  void removeElementAttribute(Element*, const QualifiedName& attribute);
  void removeChildrenInRange(Node*, unsigned from, unsigned to, EditingState*);
  virtual void removeNode(
      Node*,
      EditingState*,
      ShouldAssumeContentIsAlwaysEditable = DoNotAssumeContentIsAlwaysEditable);
  HTMLSpanElement* replaceElementWithSpanPreservingChildrenAndAttributes(
      HTMLElement*);
  void removeNodePreservingChildren(
      Node*,
      EditingState*,
      ShouldAssumeContentIsAlwaysEditable = DoNotAssumeContentIsAlwaysEditable);
  void removeNodeAndPruneAncestors(Node*,
                                   EditingState*,
                                   Node* excludeNode = nullptr);
  void moveRemainingSiblingsToNewParent(Node*,
                                        Node* pastLastNodeToMove,
                                        Element* newParent,
                                        EditingState*);
  void updatePositionForNodeRemovalPreservingChildren(Position&, Node&);
  void prune(Node*, EditingState*, Node* excludeNode = nullptr);
  void replaceTextInNode(Text*,
                         unsigned offset,
                         unsigned count,
                         const String& replacementText);
  Position replaceSelectedTextInNode(const String&);
  void replaceTextInNodePreservingMarkers(Text*,
                                          unsigned offset,
                                          unsigned count,
                                          const String& replacementText);
  Position positionOutsideTabSpan(const Position&);
  void setNodeAttribute(Element*,
                        const QualifiedName& attribute,
                        const AtomicString& value);
  void splitElement(Element*, Node* atChild);
  void splitTextNode(Text*, unsigned offset);
  void splitTextNodeContainingElement(Text*, unsigned offset);
  void wrapContentsInDummySpan(Element*);

  void deleteInsignificantText(Text*, unsigned start, unsigned end);
  void deleteInsignificantText(const Position& start, const Position& end);
  void deleteInsignificantTextDownstream(const Position&);

  HTMLBRElement* appendBlockPlaceholder(Element*, EditingState*);
  HTMLBRElement* insertBlockPlaceholder(const Position&, EditingState*);
  HTMLBRElement* addBlockPlaceholderIfNeeded(Element*, EditingState*);
  void removePlaceholderAt(const Position&);

  HTMLElement* insertNewDefaultParagraphElementAt(const Position&,
                                                  EditingState*);

  HTMLElement* moveParagraphContentsToNewBlockIfNecessary(const Position&,
                                                          EditingState*);

  void pushAnchorElementDown(Element*, EditingState*);

  void moveParagraph(const VisiblePosition&,
                     const VisiblePosition&,
                     const VisiblePosition&,
                     EditingState*,
                     ShouldPreserveSelection = DoNotPreserveSelection,
                     ShouldPreserveStyle = PreserveStyle,
                     Node* constrainingAncestor = nullptr);
  void moveParagraphs(const VisiblePosition&,
                      const VisiblePosition&,
                      const VisiblePosition&,
                      EditingState*,
                      ShouldPreserveSelection = DoNotPreserveSelection,
                      ShouldPreserveStyle = PreserveStyle,
                      Node* constrainingAncestor = nullptr);
  void moveParagraphWithClones(const VisiblePosition& startOfParagraphToMove,
                               const VisiblePosition& endOfParagraphToMove,
                               HTMLElement* blockElement,
                               Node* outerNode,
                               EditingState*);
  void cloneParagraphUnderNewElement(const Position& start,
                                     const Position& end,
                                     Node* outerNode,
                                     Element* blockElement,
                                     EditingState*);
  void cleanupAfterDeletion(EditingState*,
                            VisiblePosition destination = VisiblePosition());

  bool breakOutOfEmptyListItem(EditingState*);
  bool breakOutOfEmptyMailBlockquotedParagraph(EditingState*);

  Position positionAvoidingSpecialElementBoundary(const Position&,
                                                  EditingState*);

  Node* splitTreeToNode(Node*, Node*, bool splitAncestor = false);

  HeapVector<Member<EditCommand>> m_commands;

 private:
  bool isCompositeEditCommand() const final { return true; }

  VisibleSelection m_startingSelection;
  VisibleSelection m_endingSelection;
  Member<UndoStep> m_undoStep;
};

DEFINE_TYPE_CASTS(CompositeEditCommand,
                  EditCommand,
                  command,
                  command->isCompositeEditCommand(),
                  command.isCompositeEditCommand());

}  // namespace blink

#endif  // CompositeEditCommand_h