/foundation/arkui/ace_engine/advanced_ui_component/popup/interfaces/ |
H A D | popup.js | 53 fontColor: { 81 fontColor: { 119 fontColor: { 597 return this.title?.fontColor ?? this.theme.title.fontColor; 646 if (this.message.fontColor) { 647 q28 = this.message.fontColor; 651 q28 = this.theme.message.fontColor; 738 return this.buttons?.[0]?.fontColor ?? this.theme.button.fontColor; [all...] |
/foundation/arkui/ace_engine/advanced_ui_component/chipgroup/interfaces/ |
H A D | chipgroup.js | 41 fontColor: { 239 SymbolGlyph.fontColor([e4.fillColor]); 292 SymbolGlyph.fontColor([e4.fillColor]); 568 if (this.itemStyle && this.itemStyle.fontColor) { 569 if (typeof this.itemStyle.fontColor === 'object') { 570 let o4 = this.itemStyle.fontColor; 572 return b1.itemStyle.fontColor; 575 return this.itemStyle.fontColor; 577 return b1.itemStyle.fontColor; 579 return this.itemStyle.fontColor; [all...] |
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | rich_editor_modifier.cpp | 488 if (SetRichEditorPlaceholderValue(valuesArray, 2, valuesCount, result)) { // 2: fontColor in SetRichEditorPlaceholder() 490 Color fontColor; in SetRichEditorPlaceholder() local 493 fontColor.SetValue(static_cast<ArkUI_Uint32>(result)); in SetRichEditorPlaceholder() 494 options.fontColor = fontColor; in SetRichEditorPlaceholder() 496 fontColor.SetValue(static_cast<ArkUI_Uint32>(result)); in SetRichEditorPlaceholder() 497 options.fontColor = fontColor; in SetRichEditorPlaceholder() 525 Color fontColor; in ResetRichEditorPlaceholder() local 527 options.fontColor in ResetRichEditorPlaceholder() [all...] |
H A D | node_symbol_span_modifier.cpp | 44 Color fontColor = theme->GetTextStyle().GetTextColor(); in ResetSymbolSpanFontColor() local 45 std::vector<Color> colorArray = { fontColor }; in ResetSymbolSpanFontColor()
|
H A D | node_symbol_glyph_modifier.cpp | 64 Color fontColor = theme->GetTextStyle().GetTextColor(); in ResetFontColor() local 65 std::vector<Color> colorArray = { fontColor }; in ResetFontColor()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_alert_dialog_ffi.cpp | 135 // Parse fontColor in ParseButtonObj() 136 if (objInner.fontColor != nullptr) { in ParseButtonObj() 137 Color fontColor = Color(ColorAlphaAdapt(*objInner.fontColor)); in ParseButtonObj() local 138 buttonInfo.textColor = fontColor.ColorToString(); in ParseButtonObj()
|
H A D | cj_richeditor_controller_ffi.cpp | 75 nativeTextStyle.fontColor = textStyle.fontColor.c_str(); in ParseTextStyleResult() 127 nativeTextStyle.fontColor = spanObject.GetFontColor().c_str(); in ParseRichEditorAbstractTextSpanResult() 215 auto fontColor = Color(nativeStyle.fontColor); in ParseTextStyle() local 216 style.SetTextColor(fontColor); in ParseTextStyle() 217 updateSpanStyle_.updateTextColor = fontColor; in ParseTextStyle()
|
H A D | cj_alert_dialog_ffi.h | 41 uint32_t* fontColor; member
|
H A D | cj_richeditor_controller_ffi.h | 35 uint32_t fontColor; member 107 const char* fontColor; member
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/calendar_picker/ |
H A D | calendar_dialog_view_test_ng.cpp | 163 info1.fontColor = Color::BLACK; in HWTEST_F() 168 info2.fontColor = Color::BLACK; in HWTEST_F() 174 info3.fontColor = Color::BLACK; in HWTEST_F() 180 info4.fontColor = Color::BLACK; in HWTEST_F() 245 info1.fontColor = Color::BLACK; in HWTEST_F() 249 info2.fontColor = Color::BLACK; in HWTEST_F() 254 info3.fontColor = Color::BLACK; in HWTEST_F() 259 info4.fontColor = Color::BLACK; in HWTEST_F() 394 info1.fontColor = Color::BLACK; in HWTEST_F() 419 info1.fontColor in HWTEST_F() [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_indicator.cpp | 258 Color fontColor; in GetDigitIndicatorInfo() local 259 auto parseOk = JSViewAbstract::ParseJsColor(fontColorValue, fontColor); in GetDigitIndicatorInfo() 260 digitalParameters.fontColor = in GetDigitIndicatorInfo() 261 parseOk ? fontColor : swiperIndicatorTheme->GetDigitalIndicatorTextStyle().GetTextColor(); in GetDigitIndicatorInfo() 262 parseOk = JSViewAbstract::ParseJsColor(selectedFontColorValue, fontColor); in GetDigitIndicatorInfo() 264 parseOk ? fontColor : swiperIndicatorTheme->GetDigitalIndicatorTextStyle().GetTextColor(); in GetDigitIndicatorInfo()
|
/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/ |
H A D | marquee_composed_element.cpp | 29 { "fontColor", [](const MarqueeComposedElement& inspector) { return inspector.GetFontColor(); } }, 109 auto fontColor = render->GetTextStyle().GetTextColor(); in GetFontColor() local 110 return fontColor.ColorToString(); in GetFontColor()
|
H A D | texttimer_composed_element.cpp | 29 { "fontColor", [](const TextTimerComposedElement& inspector) { return inspector.GetFontColor(); } },
44 DumpLog::GetInstance().AddDesc(std::string("fontColor : ").append(GetFontColor()));
in Dump() 90 auto fontColor =
in GetFontColor() local 92 return fontColor.ColorToString();
in GetFontColor()
|
H A D | button_composed_element.cpp | 31 { "fontColor", [](const ButtonComposedElement& inspector) { return inspector.GetFontColor(); } }, 120 auto fontColor = render ? render->GetTextStyle().GetTextColor() : Color::BLACK; in GetFontColor() local 121 return fontColor.ColorToString(); in GetFontColor()
|
H A D | text_clock_composed_element.cpp | 27 { "fontColor", [](const TextClockComposedElement& inspector) { return inspector.GetTextFontColor(); } },
41 DumpLog::GetInstance().AddDesc(std::string("fontColor: ").append(GetTextFontColor()));
in Dump() 88 auto fontColor =
in GetTextFontColor() local 90 return fontColor.ColorToString();
in GetTextFontColor()
|
/foundation/arkui/ui_lite/interfaces/kits/components/ |
H A D | ui_label.h | 435 void SetForegroundColorSpan(ColorType fontColor, int16_t start, int16_t end) in SetForegroundColorSpan() argument 437 labelText_->SetForegroundColorSpan(fontColor, start, end); in SetForegroundColorSpan()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/ |
H A D | text_field_model.h | 47 std::optional<Color> fontColor; member 54 fontColor == other.fontColor && enableVariableFontWeight == other.enableVariableFontWeight; in IsEqual() 75 return fontColor.has_value() ? fontColor.value().ColorToString() : ""; in GetFontColor()
|
/foundation/arkui/ace_engine/advanced_ui_component/interstitialdialogaction/interfaces/ |
H A D | interstitialdialogaction.js | 127 SymbolGlyph.fontColor([o1.options.iconStyle === IconStyle.DARK ? 184 Text.fontColor(f1.options.titleColor !== undefined ? f1.options.titleColor : TITLE_DEFAULT_COLOR); 197 Text.fontColor(c1.options.subtitleColor !== undefined ? c1.options.subtitleColor : SUBTITLE_DEFAULT_COLOR);
|
/foundation/arkui/ui_lite/interfaces/kits/common/ |
H A D | text.h | 173 ColorType fontColor; member 496 void SetForegroundColorSpan(ColorType fontColor, int16_t start, int16_t end) in SetForegroundColorSpan() argument 501 spannableString_->SetForegroundColor(fontColor, (uint16_t)start, (uint16_t)end); in SetForegroundColorSpan()
|
/foundation/arkui/advanced_ui_component/interstitialdialogaction/interfaces/ |
H A D | interstitialdialogaction.js | 127 SymbolGlyph.fontColor([o1.options.iconStyle === IconStyle.DARK ? 184 Text.fontColor(f1.options.titleColor !== undefined ? f1.options.titleColor : TITLE_DEFAULT_COLOR); 197 Text.fontColor(c1.options.subtitleColor !== undefined ? c1.options.subtitleColor : SUBTITLE_DEFAULT_COLOR);
|
/foundation/arkui/ui_lite/frameworks/common/ |
H A D | spannable_string.cpp | 125 SetForegroundColor(node_foreColor->data_.fontColor, node_foreColor->data_.start, node_foreColor->data_.end); in SetSpannableString() 452 inputSpan.fontColor.full = inputForegroundColor.full; in SetForegroundColor() 463 tempSize.full= tempSpan->data_.fontColor.full; in SetForegroundColor() 472 tempLeft.fontColor.full = tempSize.full; in SetForegroundColor() 476 tempRight.fontColor.full = tempSize.full; in SetForegroundColor() 484 inputSpan.fontColor.full = inputForegroundColor.full; in SetForegroundColor() 500 outputForegroundColor.full = tempSpan->data_.fontColor.full; in GetForegroundColor()
|
/foundation/arkui/ace_engine/advanced_ui_component/subheader/interfaces/ |
H A D | subheader.js | 147 Text.fontColor(u17?.fontColor ?? { 162 Text.fontColor(r17?.fontColor ?? { 1194 SymbolGlyph.fontColor(f7.iconOptions?.symbolicIconOption?.fontColor ?? [this.subHeaderTheme.leftIconColor]); 1223 fontColor: this.subHeaderTheme.fontSecondaryColor, 1251 fontColor: this.subHeaderTheme.fontPrimaryColor, 1262 fontColor: this.subHeaderTheme.fontSecondaryColor, 1280 fontColor [all...] |
/foundation/arkui/ace_engine/test/unittest/core/pattern/text_picker/ |
H A D | text_picker_test_update.cpp | 307 info1.fontColor = Color::BLACK; in HWTEST_F() 709 info1.fontColor = Color::BLACK; in HWTEST_F() 1067 info1.fontColor = Color::BLACK; in HWTEST_F() 1110 info1.fontColor = Color::GREEN; in HWTEST_F() 1153 info1.fontColor = Color::GRAY; in HWTEST_F() 1197 info1.fontColor = Color::GRAY; in HWTEST_F() 1199 info2.fontColor = Color::FOREGROUND; in HWTEST_F() 1250 info1.fontColor = Color::GRAY; in HWTEST_F() 1252 info2.fontColor = Color::FOREGROUND; in HWTEST_F() 1322 info1.fontColor in HWTEST_F() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
H A D | rich_editor_model_ng.cpp | 255 if (options.fontColor.has_value()) { in SetPlaceholder() 256 ACE_UPDATE_LAYOUT_PROPERTY(TextLayoutProperty, PlaceholderTextColor, options.fontColor.value()); in SetPlaceholder() 277 if (options.fontColor.has_value()) { in SetPlaceholder() 278 ACE_UPDATE_NODE_LAYOUT_PROPERTY(TextLayoutProperty, PlaceholderTextColor, options.fontColor.value(), frameNode); in SetPlaceholder()
|
/foundation/arkui/ace_engine/advanced_ui_component/treeview/interfaces/ |
H A D | treeview.js | 177 fontColor: undefined, 298 this.fontColor = ''; 366 this.fontColor = color; 370 return this.fontColor; 977 popupForShowTitle(text, backgroundColor, fontColor, parent = null) { 1031 Text.fontColor(fontColor); 1118 Text.fontColor(this.listNodeDataSource.x7().fontColor); 1147 this.nodeList[this.viewLastIndex].fontColor [all...] |