Home
last modified time | relevance | path

Searched refs:updateSpanStyle_ (Results 1 – 9 of 9) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_richeditor_controller_ffi.cpp218 updateSpanStyle_.updateTextColor = fontColor; in ParseTextStyle()
221 updateSpanStyle_.updateFontSize = size; in ParseTextStyle()
226 updateSpanStyle_.updateFontWeight = fontWeight; in ParseTextStyle()
229 updateSpanStyle_.updateFontFamily = fontFamily; in ParseTextStyle()
234 updateSpanStyle_.updateTextDecorationColor = decorationColor; in ParseTextStyle()
297 updateSpanStyle_.updateImageWidth = imageSpanWidth; in ParseImageSpanStyle()
304 updateSpanStyle_.updateImageHeight = imageSpanHeight; in ParseImageSpanStyle()
311 updateSpanStyle_.updateImageVerticalAlign = align; in ParseImageSpanStyle()
315 updateSpanStyle_.updateImageFit = fit; in ParseImageSpanStyle()
377 richEditorController->SetUpdateSpanStyle(updateSpanStyle_); in UpdateSpanStyleText()
[all …]
H A Dcj_richeditor_controller_ffi.h259 struct UpdateSpanStyle updateSpanStyle_; variable
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/
H A Drich_editor_controller.cpp66 richEditorPattern->SetUpdateSpanStyle(updateSpanStyle_); in UpdateSpanStyle()
73 updateSpanStyle_ = updateSpanStyle; in SetUpdateSpanStyle()
H A Drich_editor_controller.h45 struct UpdateSpanStyle updateSpanStyle_; variable
H A Drich_editor_pattern.cpp1883 updateSpanStyle_ = updateSpanStyle; in SetUpdateSpanStyle()
1901 return updateSpanStyle_; in GetUpdateSpanStyle()
2030 …if (updateSpanStyle_.updateImageWidth.has_value() || updateSpanStyle_.updateImageHeight.has_value(… in UpdateImageStyle()
2033 if (updateSpanStyle_.updateImageFit.has_value()) { in UpdateImageStyle()
2036 if (updateSpanStyle_.updateImageVerticalAlign.has_value()) { in UpdateImageStyle()
2039 if (updateSpanStyle_.borderRadius.has_value()) { in UpdateImageStyle()
2044 if (updateSpanStyle_.marginProp.has_value()) { in UpdateImageStyle()
2069 UpdateSymbolStyle(spanNode, updateSpanStyle_, textStyle); in SymbolSpanUpdateStyle()
2103 UpdateSymbolStyle(spanNode, updateSpanStyle_, textStyle); in UpdateSpanStyle()
2104 UpdateTextStyle(spanNode, updateSpanStyle_, textStyle); in UpdateSpanStyle()
[all …]
H A Drich_editor_pattern.h1377 struct UpdateSpanStyle updateSpanStyle_; variable
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/
H A Drich_editor_pattern_testone_ng.cpp894 richEditorPattern->updateSpanStyle_.updateImageWidth = std::nullopt;
895 richEditorPattern->updateSpanStyle_.updateImageHeight = std::nullopt;
898 richEditorPattern->updateSpanStyle_.updateImageWidth = width;
899 richEditorPattern->updateSpanStyle_.updateImageHeight = height;
902 richEditorPattern->updateSpanStyle_.updateImageWidth = width;
903 richEditorPattern->updateSpanStyle_.updateImageHeight = std::nullopt;
906 richEditorPattern->updateSpanStyle_.updateImageWidth = std::nullopt;
907 richEditorPattern->updateSpanStyle_.updateImageHeight = height;
909 ASSERT_EQ(richEditorPattern->updateSpanStyle_.updateImageHeight.has_value(), true);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_richeditor.cpp1362 updateSpanStyle_.updateImageWidth = imageSpanWidth; in ParseJsImageSpanAttribute()
1368 updateSpanStyle_.updateImageHeight = imageSpanHeight; in ParseJsImageSpanAttribute()
1379 updateSpanStyle_.updateImageVerticalAlign = align; in ParseJsImageSpanAttribute()
1388 updateSpanStyle_.updateImageFit = fit; in ParseJsImageSpanAttribute()
1396 updateSpanStyle_.marginProp = imageStyle.marginProp; in ParseJsImageSpanAttribute()
1399 updateSpanStyle_.borderRadius = imageStyle.borderRadius; in ParseJsImageSpanAttribute()
1711 updateSpanStyle_.ResetStyle(); in AddTextSpan()
1720 ParseJsTextStyle(styleObject, style, updateSpanStyle_); in AddTextSpan()
1780 ParseJsSymbolSpanStyle(styleObject, style, updateSpanStyle_); in AddSymbolSpan()
2125 updateSpanStyle_.ResetStyle(); in UpdateSpanStyle()
[all …]
H A Djs_richeditor.h216 struct UpdateSpanStyle updateSpanStyle_; variable