Searched refs:maxAppFontScale (Results 1 - 13 of 13) sorted by relevance
/foundation/arkui/ace_engine/advanced_ui_component/exceptionprompt/interfaces/ |
H A D | exceptionprompt.js | 50 this.maxAppFontScale = 1; 64 if (params.maxAppFontScale !== undefined) { 65 this.maxAppFontScale = params.maxAppFontScale; 396 this.maxAppFontScale = uiContent.getMaxFontScale(); 410 return Math.min(systemFontScale, this.maxAppFontScale);
|
/foundation/arkui/ace_engine/advanced_ui_component/filter/interfaces/ |
H A D | filter.js | 198 this.maxAppFontScale = 1; 218 if (params.maxAppFontScale !== undefined) { 219 this.maxAppFontScale = params.maxAppFontScale; 269 this.maxAppFontScale = uiContent.getMaxFontScale(); 284 return Math.min(systemFontScale, this.maxAppFontScale); 572 this.maxAppFontScale = 1; 608 if (params.maxAppFontScale !== undefined) { 609 this.maxAppFontScale = params.maxAppFontScale; [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/time_picker/ |
H A D | timepicker_dialog_view.cpp | 1031 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 1035 (follow && (GreatOrEqual(maxAppFontScale, pickerTheme->GetMaxOneFontScale())))) { 1063 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 1068 fontSizeScale = std::clamp(fontSizeScale, 0.0f, maxAppFontScale); 1106 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 1107 fontScale = std::clamp(fontScale, 0.0f, maxAppFontScale); 1126 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 1127 fontScale = std::clamp(fontScale, 0.0f, maxAppFontScale);
|
H A D | timepicker_model_ng.cpp | 733 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 740 fontScale = std::clamp(fontScale, 0.0f, maxAppFontScale);
|
/foundation/arkui/ace_engine/advanced_ui_component/treeview/interfaces/ |
H A D | treeview.js | 691 this.s7 = new ObservedPropertySimplePU(1, this, 'maxAppFontScale'); 798 if (params.maxAppFontScale !== undefined) { 799 this.maxAppFontScale = params.maxAppFontScale; 916 get maxAppFontScale() { 920 set maxAppFontScale(newValue) { 965 this.maxAppFontScale = w17.getMaxFontScale(); 974 return Math.min(v17, this.maxAppFontScale, q1); 3433 this.s7 = new ObservedPropertySimplePU(1, this, 'maxAppFontScale'); 3531 if (params.maxAppFontScale ! [all...] |
/foundation/arkui/ace_engine/advanced_ui_component/gridobjectsortcomponent/interfaces/ |
H A D | gridobjectsortcomponent.js | 144 this.maxAppFontScale = 1; 341 if (s16.maxAppFontScale !== undefined) { 342 this.maxAppFontScale = s16.maxAppFontScale; 752 this.maxAppFontScale = r14.getMaxFontScale(); 790 return Math.min(g14, this.maxAppFontScale, MAX_FONT_SCALE);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_picker/ |
H A D | textpicker_dialog_view.cpp | 1481 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 1485 (follow && (GreatOrEqual(maxAppFontScale, pickerTheme->GetMaxOneFontScale())))) { 1513 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 1519 fontSizeScale = std::clamp(fontSizeScale, 0.0f, maxAppFontScale); 1556 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 1557 fontScale = std::clamp(fontScale, 0.0f, maxAppFontScale);
|
H A D | textpicker_model_ng.cpp | 1206 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 1213 fontScale = std::clamp(fontScale, 0.0f, maxAppFontScale);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/picker/ |
H A D | datepicker_dialog_view.cpp | 2049 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 2053 (follow && (GreatOrEqual(maxAppFontScale, pickerTheme->GetMaxOneFontScale())))) { 2081 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 2087 fontSizeScale = std::clamp(fontSizeScale, 0.0f, maxAppFontScale); 2124 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 2125 fontScale = std::clamp(fontScale, 0.0f, maxAppFontScale); 2143 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 2144 fontScale = std::clamp(fontScale, 0.0f, maxAppFontScale);
|
H A D | datepicker_model_ng.cpp | 832 auto maxAppFontScale = pipeline->GetMaxAppFontScale(); 839 fontScale = std::clamp(fontScale, 0.0f, maxAppFontScale);
|
/foundation/arkui/ace_engine/frameworks/core/pipeline/ |
H A D | pipeline_base.h | 413 void SetMaxAppFontScale(float maxAppFontScale) in SetMaxAppFontScale() argument 415 maxAppFontScale_ = maxAppFontScale; in SetMaxAppFontScale()
|
/foundation/arkui/ace_engine/adapter/ohos/entrance/subwindow/ |
H A D | subwindow_ohos.cpp | 1273 auto maxAppFontScale = config->GetItem(OHOS::AAFwk::GlobalConfigurationKey::APP_FONT_MAX_SCALE); in InitToastServiceConfig() local 1283 if (!maxAppFontScale.empty()) { in InitToastServiceConfig() 1284 pipelineContext->SetMaxAppFontScale(StringUtils::StringToFloat(maxAppFontScale)); in InitToastServiceConfig()
|
/foundation/arkui/ace_engine/adapter/ohos/entrance/ |
H A D | ui_content_impl.cpp | 1393 auto maxAppFontScale = config->GetItem(OHOS::AAFwk::GlobalConfigurationKey::APP_FONT_MAX_SCALE); in UpdateFontScale() local 1401 if (!maxAppFontScale.empty()) { in UpdateFontScale() 1402 context->SetMaxAppFontScale(StringUtils::StringToFloat(maxAppFontScale)); in UpdateFontScale()
|
Completed in 28 milliseconds