/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | custom_dialog_model.h | 35 ArkUI_Int32 showInSubWindow; member 59 ArkUI_Int32 ShowDialog(ArkUIDialogHandle handle, bool showInSubWindow);
|
H A D | custom_dialog_model.cpp | 53 .showInSubWindow = false, in CreateDialog() 151 dialogProperties.isShowInSubWindow = controllerHandler->showInSubWindow; in ParseDialogProperties() 291 ArkUI_Int32 ShowDialog(ArkUIDialogHandle controllerHandler, bool showInSubWindow) in ShowDialog() argument 294 controllerHandler->showInSubWindow = showInSubWindow; in ShowDialog()
|
H A D | node_api.cpp | 1781 ArkUI_Int32 ShowDialog(ArkUIDialogHandle handle, ArkUI_Bool showInSubWindow) in ShowDialog() argument 1783 return CustomDialog::ShowDialog(handle, showInSubWindow); in ShowDialog()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/bubble/ |
H A D | bubble_pattern.cpp | 388 auto showInSubWindow = layoutProp->GetShowInSubWindow().value_or(false); in PopBubble() local 389 if (showInSubWindow) { in PopBubble() 434 auto showInSubWindow = layoutProp->GetShowInSubWindow().value_or(false); in StartEnteringTransitionEffects() local 438 [weak = WeakClaim(this), finish, showInSubWindow, popupId, isBlock]() { in StartEnteringTransitionEffects() 445 if (showInSubWindow) { in StartEnteringTransitionEffects() 540 auto showInSubWindow = layoutProp->GetShowInSubWindow().value_or(false); in StartAlphaEnteringAnimation() local 552 [weak = WeakClaim(this), finish, showInSubWindow, popupId, isBlock]() { in StartAlphaEnteringAnimation() 559 if (showInSubWindow) { in StartAlphaEnteringAnimation() 715 auto showInSubWindow = layoutProp->GetShowInSubWindow().value_or(false); in OnWindowSizeChanged() local 716 if (showInSubWindow) { in OnWindowSizeChanged() 737 auto showInSubWindow = layoutProp->GetShowInSubWindow().value_or(false); OnWindowHide() local [all...] |
H A D | bubble_layout_algorithm.h | 180 void InitTargetSizeAndPosition(bool showInSubWindow, LayoutWrapper* layoutWrapper); 182 void InitProps(const RefPtr<BubbleLayoutProperty>& layoutProp, bool showInSubWindow, LayoutWrapper* layoutWrapper); 193 void UpdateScrollHeight(LayoutWrapper* layoutWrapper, bool showInSubWindow); 219 RefPtr<FrameNode> bubbleNode, bool showInSubWindow, LayoutWrapper* layoutWrapper); 221 void SetHotAreas(bool showInSubWindow, bool isBlock, RefPtr<FrameNode> frameNode, int32_t containerId); 233 SizeF GetPopupMaxWidthAndHeight(bool showInSubWindow, const float& width);
|
H A D | bubble_layout_algorithm.cpp | 259 bool showInSubWindow = bubbleLayoutProperty->GetShowInSubWindowValue(false); in Measure() local 260 InitProps(bubbleProp, showInSubWindow, layoutWrapper); in Measure() 297 if (useCustom_ && !showInSubWindow) { in Measure() 354 SizeF BubbleLayoutAlgorithm::GetPopupMaxWidthAndHeight(bool showInSubWindow, const float& width) in GetPopupMaxWidthAndHeight() argument 364 if (showInSubWindow) { in GetPopupMaxWidthAndHeight() 394 RefPtr<FrameNode> bubbleNode, bool showInSubWindow, LayoutWrapper* layoutWrapper) 403 InitTargetSizeAndPosition(showInSubWindow, layoutWrapper); 455 bool showInSubWindow = bubbleProp->GetShowInSubWindowValue(false); in Layout() local 458 GetPopupMaxWidthAndHeight(showInSubWindow, childWrapper->GetGeometryNode()->GetMarginFrameSize().Width()); in Layout() 469 BubbleAvoidanceRule(childWrapper, bubbleProp, frameNode, showInSubWindow, layoutWrappe in Layout() 511 SetHotAreas(bool showInSubWindow, bool isBlock, RefPtr<FrameNode> frameNode, int32_t containerId) SetHotAreas() argument 574 InitProps(const RefPtr<BubbleLayoutProperty>& layoutProp, bool showInSubWindow, LayoutWrapper* layoutWrapper) InitProps() argument 658 UpdateScrollHeight(LayoutWrapper* layoutWrapper, bool showInSubWindow) UpdateScrollHeight() argument 1212 InitTargetSizeAndPosition(bool showInSubWindow, LayoutWrapper* layoutWrapper) InitTargetSizeAndPosition() argument [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/prompt/ |
H A D | cj_prompt_ffi.h | 35 bool showInSubWindow; member
|
H A D | cj_prompt_ffi.cpp | 157 .showInSubWindow = options.showInSubWindow, in FfiPromptOpenCustomDialog()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_alert_dialog_ffi.h | 56 bool showInSubWindow; member
|
H A D | cj_customdialog_controller_ffi.h | 43 bool showInSubWindow; member
|
H A D | cj_alert_dialog_ffi.cpp | 94 properties.isShowInSubWindow = alertDialog.showInSubWindow; in ParseAlertDialogConfirm()
|
H A D | cj_customdialog_controller_ffi.cpp | 111 dialogProperties_.isShowInSubWindow = options.showInSubWindow; in NativeCustomDialogController()
|
/foundation/arkui/ace_engine/interfaces/native/node/ |
H A D | dialog_model.cpp | 159 int32_t Show(ArkUI_NativeDialogHandle handle, bool showInSubWindow) in Show() argument 165 return impl->getDialogAPI()->show(handle->controller, showInSubWindow); in Show()
|
H A D | dialog_model.h | 58 int32_t Show(ArkUI_NativeDialogHandle handle, bool showInSubWindow);
|
/foundation/arkui/ace_engine/interfaces/native/ |
H A D | native_dialog.h | 212 * @param showInSubWindow Specifies whether to show the dialog box in a sub-window. 215 int32_t (*show)(ArkUI_NativeDialogHandle handle, bool showInSubWindow);
|
/foundation/arkui/ace_engine/interfaces/napi/kits/promptaction/ |
H A D | prompt_action.cpp | 605 napi_value showInSubWindow = nullptr; member 1195 napi_typeof(env, asyncContext->showInSubWindow, &valueType); in GetNapiNamedBoolProperties() 1197 napi_get_value_bool(env, asyncContext->showInSubWindow, &asyncContext->showInSubWindowBool); in GetNapiNamedBoolProperties() 1229 napi_get_named_property(env, argv[index], "showInSubWindow", &asyncContext->showInSubWindow); in GetNapiNamedProperties() 1383 napi_get_named_property(env, argv[0], "showInSubWindow", &asyncContext->showInSubWindow); in JSPromptShowDialog() 1410 napi_typeof(env, asyncContext->showInSubWindow, &valueType); in JSPromptShowDialog() 1412 napi_get_value_bool(env, asyncContext->showInSubWindow, &asyncContext->showInSubWindowBool); in JSPromptShowDialog() 1540 .showInSubWindow in JSPromptShowDialog() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components/dialog/ |
H A D | dialog_properties.h | 285 bool showInSubWindow = false; member
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/frontend/ |
H A D | cj_frontend_abstract.cpp | 337 .isShowInSubWindow = dialogAttr.showInSubWindow, in OpenCustomDialog()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ng/ |
H A D | frontend_delegate_declarative_ng.cpp | 676 .isShowInSubWindow = dialogAttr.showInSubWindow, in ShowDialog() 713 .isShowInSubWindow = dialogAttr.showInSubWindow, in ShowDialog() 735 .isShowInSubWindow = dialogAttr.showInSubWindow, in ParsePropertiesFromAttr()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/bubble/ |
H A D | bubble_test_One_ng.cpp | 88 std::optional<bool> showInSubWindow = std::nullopt;
member 182 if (testProperty.showInSubWindow.has_value()) {
in CreateBubbleNode() 183 layoutProperty->UpdateShowInSubWindow(testProperty.showInSubWindow.value());
in CreateBubbleNode()
|
H A D | bubble_test_ng.cpp | 120 std::optional<bool> showInSubWindow = std::nullopt; member 216 if (testProperty.showInSubWindow.has_value()) { in CreateBubbleNode() 217 layoutProperty->UpdateShowInSubWindow(testProperty.showInSubWindow.value()); in CreateBubbleNode() 262 testProperty.showInSubWindow = std::make_optional(BUBBLE_LAYOUT_PROPERTY_SHOW_IN_SUBWINDOW); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | view_abstract.cpp | 1731 auto showInSubWindow = param->IsShowInSubWindow(); in BindPopup() local 1733 showInSubWindow = false; in BindPopup() 1741 showInSubWindow = true; in BindPopup() 1776 if (!showInSubWindow) { in BindPopup() 1822 if (showInSubWindow) { in BindPopup()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ |
H A D | frontend_delegate_declarative.cpp | 1709 .isShowInSubWindow = dialogAttr.showInSubWindow, in ShowDialog() 1753 .isShowInSubWindow = dialogAttr.showInSubWindow, in ShowDialog() 1789 .isShowInSubWindow = dialogAttr.showInSubWindow, in ParsePropertiesFromAttr() 2038 .isShowInSubWindow = dialogAttr.showInSubWindow, in ShowActionMenu()
|
/foundation/arkui/ace_engine/frameworks/base/subwindow/ |
H A D | subwindow_manager.cpp | 962 tmpPromptAttr.showInSubWindow = false; in OpenCustomDialog()
|
/foundation/arkui/ace_engine/advanced_ui_component/dialog/interfaces/ |
H A D | dialog.js | 4140 showInSubWindow: this.popover?.showInSubWindow,
|