File: ApplyStyleCommand.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 (217 lines) | stat: -rw-r--r-- 9,762 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
/*
 * Copyright (C) 2005, 2006, 2008, 2009 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 ApplyStyleCommand_h
#define ApplyStyleCommand_h

#include "core/editing/WritingDirection.h"
#include "core/editing/commands/CompositeEditCommand.h"
#include "core/html/HTMLElement.h"

namespace blink {

class EditingStyle;
class HTMLSpanElement;
class StyleChange;

enum ShouldIncludeTypingStyle { IncludeTypingStyle, IgnoreTypingStyle };

class CORE_EXPORT ApplyStyleCommand final : public CompositeEditCommand {
 public:
  enum EPropertyLevel { PropertyDefault, ForceBlockProperties };
  enum InlineStyleRemovalMode { RemoveIfNeeded, RemoveAlways, RemoveNone };
  enum EAddStyledElement { AddStyledElement, DoNotAddStyledElement };
  typedef bool (*IsInlineElementToRemoveFunction)(const Element*);

  static ApplyStyleCommand* create(Document& document,
                                   const EditingStyle* style,
                                   InputEvent::InputType inputType,
                                   EPropertyLevel level = PropertyDefault) {
    return new ApplyStyleCommand(document, style, inputType, level);
  }
  static ApplyStyleCommand* create(Document& document,
                                   const EditingStyle* style,
                                   const Position& start,
                                   const Position& end) {
    return new ApplyStyleCommand(document, style, start, end);
  }
  static ApplyStyleCommand* create(Element* element, bool removeOnly) {
    return new ApplyStyleCommand(element, removeOnly);
  }
  static ApplyStyleCommand* create(
      Document& document,
      const EditingStyle* style,
      IsInlineElementToRemoveFunction isInlineElementToRemoveFunction,
      InputEvent::InputType inputType) {
    return new ApplyStyleCommand(document, style,
                                 isInlineElementToRemoveFunction, inputType);
  }

  DECLARE_VIRTUAL_TRACE();

 private:
  ApplyStyleCommand(Document&,
                    const EditingStyle*,
                    InputEvent::InputType,
                    EPropertyLevel);
  ApplyStyleCommand(Document&,
                    const EditingStyle*,
                    const Position& start,
                    const Position& end);
  ApplyStyleCommand(Element*, bool removeOnly);
  ApplyStyleCommand(Document&,
                    const EditingStyle*,
                    bool (*isInlineElementToRemove)(const Element*),
                    InputEvent::InputType);

  void doApply(EditingState*) override;
  InputEvent::InputType inputType() const override;

  // style-removal helpers
  bool isStyledInlineElementToRemove(Element*) const;
  bool shouldApplyInlineStyleToRun(EditingStyle*,
                                   Node* runStart,
                                   Node* pastEndNode);
  void removeConflictingInlineStyleFromRun(EditingStyle*,
                                           Member<Node>& runStart,
                                           Member<Node>& runEnd,
                                           Node* pastEndNode,
                                           EditingState*);
  bool removeInlineStyleFromElement(EditingStyle*,
                                    HTMLElement*,
                                    EditingState*,
                                    InlineStyleRemovalMode = RemoveIfNeeded,
                                    EditingStyle* extractedStyle = nullptr);
  inline bool shouldRemoveInlineStyleFromElement(EditingStyle* style,
                                                 HTMLElement* element) {
    return removeInlineStyleFromElement(style, element, ASSERT_NO_EDITING_ABORT,
                                        RemoveNone);
  }
  void replaceWithSpanOrRemoveIfWithoutAttributes(HTMLElement*, EditingState*);
  bool removeImplicitlyStyledElement(EditingStyle*,
                                     HTMLElement*,
                                     InlineStyleRemovalMode,
                                     EditingStyle* extractedStyle,
                                     EditingState*);
  bool removeCSSStyle(EditingStyle*,
                      HTMLElement*,
                      EditingState*,
                      InlineStyleRemovalMode = RemoveIfNeeded,
                      EditingStyle* extractedStyle = nullptr);
  HTMLElement* highestAncestorWithConflictingInlineStyle(EditingStyle*, Node*);
  void applyInlineStyleToPushDown(Node*, EditingStyle*, EditingState*);
  void pushDownInlineStyleAroundNode(EditingStyle*, Node*, EditingState*);
  void removeInlineStyle(EditingStyle*,
                         const Position& start,
                         const Position& end,
                         EditingState*);
  bool elementFullySelected(HTMLElement&,
                            const Position& start,
                            const Position& end) const;

  // style-application helpers
  void applyBlockStyle(EditingStyle*, EditingState*);
  void applyRelativeFontStyleChange(EditingStyle*, EditingState*);
  void applyInlineStyle(EditingStyle*, EditingState*);
  void fixRangeAndApplyInlineStyle(EditingStyle*,
                                   const Position& start,
                                   const Position& end,
                                   EditingState*);
  void applyInlineStyleToNodeRange(EditingStyle*,
                                   Node* startNode,
                                   Node* pastEndNode,
                                   EditingState*);
  void addBlockStyle(const StyleChange&, HTMLElement*);
  void addInlineStyleIfNeeded(EditingStyle*,
                              Node* start,
                              Node* end,
                              EditingState*);
  Position positionToComputeInlineStyleChange(
      Node*,
      Member<HTMLSpanElement>& dummyElement,
      EditingState*);
  void applyInlineStyleChange(Node* startNode,
                              Node* endNode,
                              StyleChange&,
                              EAddStyledElement,
                              EditingState*);
  void splitTextAtStart(const Position& start, const Position& end);
  void splitTextAtEnd(const Position& start, const Position& end);
  void splitTextElementAtStart(const Position& start, const Position& end);
  void splitTextElementAtEnd(const Position& start, const Position& end);
  bool shouldSplitTextElement(Element*, EditingStyle*);
  bool isValidCaretPositionInTextNode(const Position&);
  bool mergeStartWithPreviousIfIdentical(const Position& start,
                                         const Position& end,
                                         EditingState*);
  bool mergeEndWithNextIfIdentical(const Position& start,
                                   const Position& end,
                                   EditingState*);
  void cleanupUnstyledAppleStyleSpans(ContainerNode* dummySpanAncestor,
                                      EditingState*);

  void surroundNodeRangeWithElement(Node* start,
                                    Node* end,
                                    Element*,
                                    EditingState*);
  float computedFontSize(Node*);
  void joinChildTextNodes(ContainerNode*,
                          const Position& start,
                          const Position& end);

  HTMLElement* splitAncestorsWithUnicodeBidi(Node*,
                                             bool before,
                                             WritingDirection allowedDirection);
  void removeEmbeddingUpToEnclosingBlock(Node*,
                                         HTMLElement* unsplitAncestor,
                                         EditingState*);

  void updateStartEnd(const Position& newStart, const Position& newEnd);
  Position startPosition();
  Position endPosition();

  Member<EditingStyle> m_style;
  InputEvent::InputType m_inputType;
  EPropertyLevel m_propertyLevel;
  Position m_start;
  Position m_end;
  bool m_useEndingSelection;
  Member<Element> m_styledInlineElement;
  bool m_removeOnly;
  IsInlineElementToRemoveFunction m_isInlineElementToRemoveFunction;
};

enum ShouldStyleAttributeBeEmpty {
  AllowNonEmptyStyleAttribute,
  StyleAttributeShouldBeEmpty
};
bool isEmptyFontTag(const Element*,
                    ShouldStyleAttributeBeEmpty = StyleAttributeShouldBeEmpty);
bool isLegacyAppleHTMLSpanElement(const Node*);
bool isStyleSpanOrSpanWithOnlyStyleAttribute(const Element*);

}  // namespace blink

#endif