Home
last modified time | relevance | path

Searched refs:typingStyle (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/
H A Drich_editor_content_modifier_test_ng.cpp137 UpdateSpanStyle typingStyle; in SetTypingStyle() local
138 typingStyle.updateTextColor = TEXT_COLOR_VALUE; in SetTypingStyle()
139 typingStyle.updateTextShadows = SHADOWS; in SetTypingStyle()
140 typingStyle.updateFontSize = FONT_SIZE_VALUE; in SetTypingStyle()
141 typingStyle.updateItalicFontStyle = ITALIC_FONT_STYLE_VALUE; in SetTypingStyle()
142 typingStyle.updateFontWeight = FONT_WEIGHT_VALUE; in SetTypingStyle()
143 typingStyle.updateTextDecoration = TEXT_DECORATION_VALUE; in SetTypingStyle()
144 typingStyle.updateTextDecorationColor = TEXT_DECORATION_COLOR_VALUE; in SetTypingStyle()
145 typingStyle.updateLineHeight = LINE_HEIGHT_VALUE; in SetTypingStyle()
146 typingStyle.updateLetterSpacing = LETTER_SPACING; in SetTypingStyle()
[all …]
H A Drich_editor_styled_string_test_ng.cpp133 UpdateSpanStyle typingStyle; in SetTypingStyle() local
134 typingStyle.updateTextColor = TEXT_COLOR_VALUE; in SetTypingStyle()
135 typingStyle.updateTextShadows = SHADOWS; in SetTypingStyle()
136 typingStyle.updateFontSize = FONT_SIZE_VALUE; in SetTypingStyle()
137 typingStyle.updateItalicFontStyle = ITALIC_FONT_STYLE_VALUE; in SetTypingStyle()
138 typingStyle.updateFontWeight = FONT_WEIGHT_VALUE; in SetTypingStyle()
139 typingStyle.updateTextDecoration = TEXT_DECORATION_VALUE; in SetTypingStyle()
140 typingStyle.updateTextDecorationColor = TEXT_DECORATION_COLOR_VALUE; in SetTypingStyle()
141 typingStyle.updateLineHeight = LINE_HEIGHT_VALUE; in SetTypingStyle()
142 typingStyle.updateLetterSpacing = LETTER_SPACING; in SetTypingStyle()
[all …]
H A Drich_editor_pattern_test_ng.cpp353 struct UpdateSpanStyle typingStyle; variable
355 richEditorPattern->SetTypingStyle(typingStyle, textStyle);
380 auto typingStyle = richEditorPattern->typingStyle_; variable
401 richEditorPattern->typingStyle_ = typingStyle;
1363 struct UpdateSpanStyle typingStyle; variable
1365 richEditorPattern->SetTypingStyle(typingStyle, textStyle);
H A Drich_editor_edit_testone_ng.cpp869 UpdateSpanStyle typingStyle; variable
870 richEditorPattern->SetTypingStyle(typingStyle, style);
948 UpdateSpanStyle typingStyle; variable
949 richEditorPattern->SetTypingStyle(typingStyle, style);
H A Drich_editor_pattern_testfour_ng.cpp1040 struct UpdateSpanStyle typingStyle; variable
1042 richEditorPattern->SetTypingStyle(typingStyle, textStyle);
H A Drich_editor_base_testone_ng.cpp936 UpdateSpanStyle typingStyle; variable
937 richEditorController->SetTypingStyle(typingStyle, style);
H A Drich_editor_edit_test_ng.cpp838 struct UpdateSpanStyle typingStyle; variable
840 richEditorPattern->SetTypingStyle(typingStyle, textStyle);
H A Drich_editor_test_ng.cpp4837 UpdateSpanStyle typingStyle; variable
4838 richEditorPattern->SetTypingStyle(typingStyle, style);
4876 UpdateSpanStyle typingStyle; variable
4877 richEditorPattern->SetTypingStyle(typingStyle, style);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/
H A Drich_editor_base_controller.cpp50 void RichEditorBaseController::SetTypingStyle(std::optional<struct UpdateSpanStyle> typingStyle, in SetTypingStyle() argument
55 richEditorPattern->SetTypingStyle(typingStyle, textStyle); in SetTypingStyle()
H A Drich_editor_base_controller.h33 …void SetTypingStyle(std::optional<struct UpdateSpanStyle> typingStyle, std::optional<TextStyle> te…
H A Drich_editor_model.h290 virtual void SetTypingStyle(std::optional<struct UpdateSpanStyle> typingStyle,
H A Drich_editor_pattern.h520 …void SetTypingStyle(std::optional<struct UpdateSpanStyle> typingStyle, std::optional<TextStyle> te…
H A Drich_editor_pattern.cpp1886 void RichEditorPattern::SetTypingStyle(std::optional<struct UpdateSpanStyle> typingStyle, in SetTypingStyle() argument
1889 typingStyle_ = typingStyle; in SetTypingStyle()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_richeditor.cpp2446 auto typingStyle = controller->GetTypingStyle(); in GetTypingStyle() local
2454 if (typingStyle.updateFontFamily.has_value()) { in CreateTypingStyleResult()
2458 if (typingStyle.updateFontSize.has_value()) { in CreateTypingStyleResult()
2461 if (typingStyle.updateLineHeight.has_value()) { in CreateTypingStyleResult()
2464 if (typingStyle.updateLetterSpacing.has_value()) { in CreateTypingStyleResult()
2467 if (typingStyle.updateTextColor.has_value()) { in CreateTypingStyleResult()
2470 if (typingStyle.updateFontFeature.has_value()) { in CreateTypingStyleResult()
2478 if (typingStyle.updateFontWeight.has_value()) { in CreateTypingStyleResult()
2483 if (typingStyle.updateTextDecoration.has_value()) { in CreateTypingStyleResult()
2494 if (typingStyle.isInitDecoration) { in CreateTypingStyleResult()
[all …]
H A Djs_richeditor.h149 static JSRef<JSObject> CreateTypingStyleResult(const struct UpdateSpanStyle& typingStyle);