Home
last modified time | relevance | path

Searched refs:backgroundBlurStyle (Results 1 - 25 of 43) sorted by relevance

12

/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/overlay/
H A Dsheet_style.h119 std::optional<BlurStyleOption> backgroundBlurStyle; member
140 detents == sheetStyle.detents && backgroundBlurStyle == sheetStyle.backgroundBlurStyle && in operator ==()
166 backgroundBlurStyle = sheetStyle.backgroundBlurStyle.has_value() ? in PartialUpdate()
167 sheetStyle.backgroundBlurStyle : backgroundBlurStyle; in PartialUpdate()
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_alert_dialog_ffi.h59 int32_t backgroundBlurStyle; member
H A Dcj_alert_dialog_ffi.cpp104 int32_t blurStyle = alertDialog.backgroundBlurStyle; in ParseAlertDialogConfirm()
107 properties.backgroundBlurStyle = blurStyle; in ParseAlertDialogConfirm()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/action_sheet/
H A Djs_action_sheet.cpp432 auto backgroundBlurStyle = obj->GetProperty("backgroundBlurStyle"); in Show() local
433 if (backgroundBlurStyle->IsNumber()) { in Show()
434 auto blurStyle = backgroundBlurStyle->ToNumber<int32_t>(); in Show()
437 properties.backgroundBlurStyle = blurStyle; in Show()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/dialog/
H A Djs_custom_dialog_controller.cpp190 // Parse backgroundBlurStyle. in ConstructorCallback()
191 auto backgroundBlurStyle = constructorArg->GetProperty("backgroundBlurStyle"); in ConstructorCallback() local
192 if (backgroundBlurStyle->IsNumber()) { in ConstructorCallback()
193 auto blurStyle = backgroundBlurStyle->ToNumber<int32_t>(); in ConstructorCallback()
196 instance->dialogProperties_.backgroundBlurStyle = blurStyle; in ConstructorCallback()
H A Djs_alert_dialog.cpp468 auto backgroundBlurStyle = obj->GetProperty("backgroundBlurStyle"); in Show() local
469 if (backgroundBlurStyle->IsNumber()) { in Show()
470 auto blurStyle = backgroundBlurStyle->ToNumber<int32_t>(); in Show()
473 properties.backgroundBlurStyle = blurStyle; in Show()
/foundation/arkui/ace_engine/frameworks/core/components_ng/property/
H A Dmenu_property.h78 std::optional<int32_t> backgroundBlurStyle; member
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/picker/
H A Dpicker_model.h43 std::optional<int32_t> backgroundBlurStyle; member
H A Ddatepicker_model_ng.cpp654 if (pickerDialog.backgroundBlurStyle.has_value()) {
655 properties.backgroundBlurStyle = pickerDialog.backgroundBlurStyle.value();
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/toast/
H A Dtoast_layout_property.h40 std::optional<int32_t> backgroundBlurStyle; member
H A Dtoast_view.cpp177 toastInfo.backgroundBlurStyle.value_or(static_cast<int>(BlurStyle::COMPONENT_ULTRA_THICK))); in UpdateToastNodeStyle()
/foundation/arkui/ace_engine/frameworks/core/components/dialog/
H A Ddialog_properties.h242 std::optional<int32_t> backgroundBlurStyle; member
295 std::optional<int32_t> backgroundBlurStyle; member
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_picker/
H A Dtextpicker_model.h37 std::optional<int32_t> backgroundBlurStyle; member
/foundation/arkui/ace_engine/advanced_ui_component/segmentbutton/interfaces/
H A Dsegmentbutton.js257 this.backgroundBlurStyle = options.backgroundBlurStyle ?? e1.d2;
298 backgroundBlurStyle: options.backgroundBlurStyle,
321 backgroundBlurStyle: options.backgroundBlurStyle,
417 Stack.backgroundBlurStyle(this.options.backgroundBlurStyle);
2366 Stack.backgroundBlurStyle(this.options.backgroundBlurStyle);
[all...]
/foundation/arkui/ace_engine/interfaces/napi/kits/promptaction/
H A Dprompt_action.cpp216 napi_value backgroundBlurStyleNApi, std::optional<int32_t>& backgroundBlurStyle) in GetToastBackgroundBlurStyle()
224 backgroundBlurStyle = num; in GetToastBackgroundBlurStyle()
429 napi_get_named_property(env, argv, "backgroundBlurStyle", &backgroundBlurStyleNApi); in GetToastParams()
446 GetToastBackgroundBlurStyle(env, backgroundBlurStyleNApi, toastInfo.backgroundBlurStyle); in GetToastParams()
830 std::optional<int32_t>& backgroundBlurStyle, std::optional<HoverModeAreaType>& hoverModeArea) in GetNapiBlurStyleAndHoverModeProps()
832 TAG_LOGD(AceLogTag::ACE_DIALOG, "get napi dialog backgroundBlurStyle and hoverModeArea props enter"); in GetNapiBlurStyleAndHoverModeProps()
840 backgroundBlurStyle = num; in GetNapiBlurStyleAndHoverModeProps()
1213 napi_get_named_property(env, argv[index], "backgroundBlurStyle", &asyncContext->backgroundBlurStyleApi); in GetNapiNamedProperties()
1368 std::optional<int32_t> backgroundBlurStyle; in JSPromptShowDialog() local
1390 napi_get_named_property(env, argv[0], "backgroundBlurStyle", in JSPromptShowDialog()
215 GetToastBackgroundBlurStyle(napi_env env, napi_value backgroundBlurStyleNApi, std::optional<int32_t>& backgroundBlurStyle) GetToastBackgroundBlurStyle() argument
829 GetNapiBlurStyleAndHoverModeProps(napi_env env, const std::shared_ptr<PromptAsyncContext>& asyncContext, std::optional<int32_t>& backgroundBlurStyle, std::optional<HoverModeAreaType>& hoverModeArea) GetNapiBlurStyleAndHoverModeProps() argument
1955 std::optional<int32_t> backgroundBlurStyle; GetPromptActionDialog() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/dialog/
H A Ddialog_pattern.cpp310 props.backgroundBlurStyle.value_or(static_cast<int>(BlurStyle::COMPONENT_ULTRA_THICK))); in UpdateContentRenderContext()
1590 if (dialogProperties_.backgroundBlurStyle.has_value()) { in DumpInfo()
1592 "BackgroundBlurStyle: " + std::to_string(dialogProperties_.backgroundBlurStyle.value())); in DumpInfo()
1714 if (dialogProperties_.backgroundBlurStyle.has_value()) { in DumpInfo()
1715 json->Put("BackgroundBlurStyle", std::to_string(dialogProperties_.backgroundBlurStyle.value()).c_str()); in DumpInfo()
1820 if (dialogProperties_.backgroundBlurStyle.has_value() && dialogProperties_.backgroundBlurStyle.value() != 0) { in DumpSimplifyInfo()
1821 json->Put("BackgroundBlurStyle", std::to_string(dialogProperties_.backgroundBlurStyle.value()).c_str()); in DumpSimplifyInfo()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_datepicker.cpp1094 auto backgroundBlurStyle = paramObject->GetProperty("backgroundBlurStyle"); in UpdatePickerDialogInfo() local
1095 if (backgroundBlurStyle->IsNumber()) { in UpdatePickerDialogInfo()
1096 auto blurStyle = backgroundBlurStyle->ToNumber<int32_t>(); in UpdatePickerDialogInfo()
1099 pickerDialog.backgroundBlurStyle = blurStyle; in UpdatePickerDialogInfo()
1777 auto backgroundBlurStyle = paramObject->GetProperty("backgroundBlurStyle"); in Show() local
1778 if (backgroundBlurStyle->IsNumber()) { in Show()
1779 auto blurStyle = backgroundBlurStyle->ToNumber<int32_t>(); in Show()
1782 pickerDialog.backgroundBlurStyle in Show()
[all...]
H A Djs_calendar_picker.cpp755 auto backgroundBlurStyle = paramObj->GetProperty("backgroundBlurStyle"); in CalendarPickerDialogShow() local
756 if (backgroundBlurStyle->IsNumber()) { in CalendarPickerDialogShow()
757 auto blurStyle = backgroundBlurStyle->ToNumber<int32_t>(); in CalendarPickerDialogShow()
760 properties.backgroundBlurStyle = blurStyle; in CalendarPickerDialogShow()
H A Djs_textpicker.cpp1475 auto backgroundBlurStyle = paramObject->GetProperty("backgroundBlurStyle"); in Show() local
1476 if (backgroundBlurStyle->IsNumber()) { in Show()
1477 auto blurStyle = backgroundBlurStyle->ToNumber<int32_t>(); in Show()
1480 textPickerDialog.backgroundBlurStyle = blurStyle; in Show()
/foundation/arkui/ace_engine/advanced_ui_component/editabletitlebar/interfaces/
H A Deditabletitlebar.js251 Flex.backgroundBlurStyle(this.options.backgroundBlurStyle ?? BlurStyle.NONE);
1258 Column.backgroundBlurStyle(BlurStyle.COMPONENT_ULTRA_THICK);
1324 Column.backgroundBlurStyle(BlurStyle.COMPONENT_ULTRA_THICK);
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ng/
H A Dfrontend_delegate_declarative_ng.cpp693 if (dialogAttr.backgroundBlurStyle.has_value()) { in ShowDialog()
694 dialogProperties.backgroundBlurStyle = dialogAttr.backgroundBlurStyle.value(); in ShowDialog()
772 if (dialogAttr.backgroundBlurStyle.has_value()) { in ParsePropertiesFromAttr()
773 dialogProperties.backgroundBlurStyle = dialogAttr.backgroundBlurStyle.value(); in ParsePropertiesFromAttr()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/time_picker/
H A Dtimepicker_model_ng.cpp436 if (pickerDialog.backgroundBlurStyle.has_value()) {
437 properties.backgroundBlurStyle = pickerDialog.backgroundBlurStyle.value();
/foundation/arkui/ace_engine/test/unittest/core/pattern/picker/
H A Ddate_picker_test_two.cpp224 pickerDialog.backgroundBlurStyle = 2; in HWTEST_F()
/foundation/arkui/ace_engine/advanced_ui_component/toolbar/interfaces/
H A Dtoolbar.js1096 Column.backgroundBlurStyle(BlurStyle.COMPONENT_ULTRA_THICK);
1229 Column.backgroundBlurStyle(BlurStyle.COMPONENT_ULTRA_THICK);
/foundation/arkui/ace_engine/advanced_ui_component/selecttitlebar/interfaces/
H A Dselecttitlebar.js1452 Column.backgroundBlurStyle(BlurStyle.COMPONENT_ULTRA_THICK);
1544 Column.backgroundBlurStyle(BlurStyle.COMPONENT_ULTRA_THICK);

Completed in 49 milliseconds

12