summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/editing/commands/apply_style_command.h
blob: f13afac64d825ec8e4b0cff36ba518b7e90f6134 (plain)
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
/*
 * 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 THIRD_PARTY_BLINK_RENDERER_CORE_EDITING_COMMANDS_APPLY_STYLE_COMMAND_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_EDITING_COMMANDS_APPLY_STYLE_COMMAND_H_

#include "third_party/blink/renderer/core/editing/commands/composite_edit_command.h"
#include "third_party/blink/renderer/core/html/html_element.h"

namespace blink {

class EditingStyle;
class HTMLSpanElement;
class StyleChange;

enum ShouldIncludeTypingStyle { kIncludeTypingStyle, kIgnoreTypingStyle };

enum class WritingDirection;

class CORE_EXPORT ApplyStyleCommand final : public CompositeEditCommand {
 public:
  enum PropertyLevel { kPropertyDefault, kForceBlockProperties };
  enum InlineStyleRemovalMode { kRemoveIfNeeded, kRemoveAlways, kRemoveNone };
  enum AddStyledElement { kAddStyledElement, kDoNotAddStyledElement };
  typedef bool (*IsInlineElementToRemoveFunction)(const Element*);

  ApplyStyleCommand(Document&,
                    const EditingStyle*,
                    InputEvent::InputType,
                    PropertyLevel = kPropertyDefault);
  ApplyStyleCommand(Document&,
                    const EditingStyle*,
                    const Position& start,
                    const Position& end);
  ApplyStyleCommand(Element*, bool remove_only);
  ApplyStyleCommand(Document&,
                    const EditingStyle*,
                    bool (*is_inline_element_to_remove)(const Element*),
                    InputEvent::InputType);

  void Trace(Visitor*) override;

 private:
  void DoApply(EditingState*) override;
  InputEvent::InputType GetInputType() const override;

  // style-removal helpers
  bool IsStyledInlineElementToRemove(Element*) const;
  bool ShouldApplyInlineStyleToRun(EditingStyle*,
                                   Node* run_start,
                                   Node* past_end_node);
  void RemoveConflictingInlineStyleFromRun(EditingStyle*,
                                           Member<Node>& run_start,
                                           Member<Node>& run_end,
                                           Node* past_end_node,
                                           EditingState*);
  bool RemoveInlineStyleFromElement(EditingStyle*,
                                    HTMLElement*,
                                    EditingState*,
                                    InlineStyleRemovalMode = kRemoveIfNeeded,
                                    EditingStyle* extracted_style = nullptr);
  inline bool ShouldRemoveInlineStyleFromElement(EditingStyle* style,
                                                 HTMLElement* element) {
    return RemoveInlineStyleFromElement(style, element, ASSERT_NO_EDITING_ABORT,
                                        kRemoveNone);
  }
  void ReplaceWithSpanOrRemoveIfWithoutAttributes(HTMLElement*, EditingState*);
  bool RemoveImplicitlyStyledElement(EditingStyle*,
                                     HTMLElement*,
                                     InlineStyleRemovalMode,
                                     EditingStyle* extracted_style,
                                     EditingState*);
  bool RemoveCSSStyle(EditingStyle*,
                      HTMLElement*,
                      EditingState*,
                      InlineStyleRemovalMode = kRemoveIfNeeded,
                      EditingStyle* extracted_style = nullptr);
  HTMLElement* HighestAncestorWithConflictingInlineStyle(EditingStyle*, Node*);
  void ApplyInlineStyleToPushDown(Node*, EditingStyle*, EditingState*);
  void PushDownInlineStyleAroundNode(EditingStyle*, Node*, EditingState*);
  void RemoveInlineStyle(EditingStyle*,
                         const EphemeralRange& range,
                         EditingState*);
  bool ElementFullySelected(const 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* start_node,
                                   Node* past_end_node,
                                   EditingState*);
  void AddBlockStyle(const StyleChange&, HTMLElement*);
  void AddInlineStyleIfNeeded(EditingStyle*,
                              Node* start,
                              Node* end,
                              EditingState*);
  Position PositionToComputeInlineStyleChange(
      Node*,
      Member<HTMLSpanElement>& dummy_element,
      EditingState*);
  void ApplyInlineStyleChange(Node* start_node,
                              Node* end_node,
                              StyleChange&,
                              AddStyledElement,
                              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* dummy_span_ancestor,
                                      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 allowed_direction);
  void RemoveEmbeddingUpToEnclosingBlock(Node*,
                                         HTMLElement* unsplit_ancestor,
                                         EditingState*);

  void UpdateStartEnd(const EphemeralRange&);
  Position StartPosition();
  Position EndPosition();

  const Member<EditingStyle> style_;
  const InputEvent::InputType input_type_;
  const PropertyLevel property_level_;
  Position start_;
  Position end_;
  bool use_ending_selection_;
  const Member<Element> styled_inline_element_;
  const bool remove_only_;
  IsInlineElementToRemoveFunction const is_inline_element_to_remove_function_;
};

enum ShouldStyleAttributeBeEmpty {
  kAllowNonEmptyStyleAttribute,
  kStyleAttributeShouldBeEmpty
};
bool IsEmptyFontTag(const Element*,
                    ShouldStyleAttributeBeEmpty = kStyleAttributeShouldBeEmpty);
bool IsLegacyAppleHTMLSpanElement(const Node*);
bool IsStyleSpanOrSpanWithOnlyStyleAttribute(const Element*);

}  // namespace blink

#endif