/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | list_item_group_model_impl.cpp | 53 RefPtr<Component> customComponent = ViewStackProcessor::GetInstance()->Finish(); in SetHeader() local 54 listItemGroup->SetHeaderComponent(customComponent); in SetHeader() 69 RefPtr<Component> customComponent = ViewStackProcessor::GetInstance()->Finish(); in SetFooter() local 70 listItemGroup->SetFooterComponent(customComponent); in SetFooter()
|
H A D | list_item_model_impl.cpp | 101 RefPtr<Component> customComponent = ViewStackProcessor::GetInstance()->Finish(); variable 102 listItem->SetSwiperStartComponent(customComponent); 107 RefPtr<Component> customComponent = ViewStackProcessor::GetInstance()->Finish(); variable 108 listItem->SetSwiperEndComponent(customComponent);
|
H A D | water_flow_model_impl.cpp | 38 RefPtr<Component> customComponent = ViewStackProcessor::GetInstance()->Finish(); in SetFooter() local 39 waterflowComponent->SetFooterComponent(customComponent); in SetFooter()
|
H A D | timepicker_model_impl.cpp | 80 properties.customComponent = datePicker; in SetTimePickerDialogShow()
|
H A D | textpicker_model_impl.cpp | 106 properties.customComponent = pickerText; in SetTextPickerDialogShow()
|
H A D | picker_model_impl.cpp | 148 properties.customComponent = datePicker; in SetDatePickerDialogShow()
|
H A D | view_abstract_model_impl.cpp | 176 info.customComponent = AceType::DynamicCast<Component>(dragInfo.node); in ToDragFunc() 1444 auto customComponent = AceType::DynamicCast<Component>(customNode); in BindPopup() local 1445 if (customComponent) { in BindPopup() 1446 popupComponent->SetCustomComponent(customComponent); in BindPopup() 1503 auto customComponent = ViewStackProcessor::GetInstance()->Finish(); in ExecMenuBuilder() local 1504 CHECK_NULL_VOID(customComponent); in ExecMenuBuilder() 1515 optionComponent->SetCustomComponent(customComponent); in ExecMenuBuilder()
|
H A D | custom_dialog_controller_model_impl.cpp | 94 dialogProperties.customComponent = customDialog; in ShowDialog()
|
H A D | image_model_impl.cpp | 255 itemInfo.customComponent = component; in UpdateDragItemInfo()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/common/ |
H A D | state_mgmt_console_trace.ts | 72 …public static varValueCheckFailed<T>(params: { customComponent: string, variableDeco: string, vari… 73 …let msg = `@Component '${params.customComponent}': Illegal variable value error with decorated var… 85 …public static varObservationFailed<T>(params: { customComponent: string, variableDeco: string, var… 86 …let msg = `@Component '${params.customComponent}': decorated variable ${params.variableDeco} '${pa…
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/custom_dialog/ |
H A D | custom_dialog_element.cpp | 25 …RefPtr<CustomDialogComponent> customComponent = AceType::DynamicCast<CustomDialogComponent>(compon… in PerformBuild() local 26 if (!customComponent) { in PerformBuild() 29 dialog_ = customComponent; in PerformBuild() 30 const auto& controller = customComponent->GetDialogController(); in PerformBuild()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/js-service-widget-ui/ |
H A D | js-service-widget-custom-basic-usage.md | 82 <element name='comp' src='../../common/customComponent/customComponent.hml'></element> 183 <element name='comp' src='../../common/customComponent/customComponent.hml'></element>
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/popup/ |
H A D | popup_component_v2.h | 99 void SetCustomComponent(const RefPtr<Component>& customComponent) in SetCustomComponent() argument 101 customComponent_ = customComponent; in SetCustomComponent()
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/js-service-widget-ui/ |
H A D | js-service-widget-custom-basic-usage.md | 82 <element name='comp' src='../../common/customComponent/customComponent.hml'></element> 183 <element name='comp' src='../../common/customComponent/customComponent.hml'></element>
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/partial_update/ |
H A D | pu_observed_property_abstract.ts | 373 customComponent: this.debugInfoOwningView(), 394 customComponent: this.debugInfoOwningView(), 412 customComponent: this.debugInfoOwningView(), 430 customComponent: this.debugInfoOwningView(),
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/box/ |
H A D | drag_drop_event.h | 35 RefPtr<Component> customComponent; member
|
H A D | render_box.cpp | 302 if (!dragItemInfo.customComponent) { in PanOnActionStart() 307 … auto positionedComponent = AceType::MakeRefPtr<PositionedComponent>(dragItemInfo.customComponent); in PanOnActionStart()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/dialog/ |
H A D | dialog_properties.h | 259 RefPtr<AceType> customComponent; // Used for CustomDialog in declarative. member
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/image/ |
H A D | render_image.cpp | 933 if (!dragItemInfo.pixelMap && !dragItemInfo.customComponent) { in PanOnActionStart() 981 if (!dragItemInfo.customComponent) { in PanOnActionStart() 987 … auto positionedComponent = AceType::MakeRefPtr<PositionedComponent>(dragItemInfo.customComponent); in PanOnActionStart()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/text/ |
H A D | render_text.cpp | 1004 if (!dragItemInfo.pixelMap && !dragItemInfo.customComponent) { in PanOnActionStart() 1047 if (!dragItemInfo.customComponent) { in PanOnActionStart() 1053 … auto positionedComponent = AceType::MakeRefPtr<PositionedComponent>(dragItemInfo.customComponent); in PanOnActionStart()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/ |
H A D | render_grid_layout.cpp | 1109 void RenderGridLayout::ActionStart(const ItemDragInfo& info, RefPtr<Component> customComponent) in ActionStart() argument 1114 auto positionedComponent = AceType::MakeRefPtr<PositionedComponent>(customComponent); in ActionStart() 1484 auto customComponent = component_->GetOnGridDragStartId()(info, draggingItemIndex_); in ImpDragStart() local 1485 if (customComponent) { in ImpDragStart() 1487 ActionStart(info, customComponent); in ImpDragStart()
|
H A D | render_grid_layout.h | 309 void ActionStart(const ItemDragInfo& info, RefPtr<Component> customComponent);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/web/ |
H A D | render_web.cpp | 1068 if (!dragItemInfo.customComponent) { in PanOnActionStart() 1074 … auto positionedComponent = AceType::MakeRefPtr<PositionedComponent>(dragItemInfo.customComponent); in PanOnActionStart()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/ |
H A D | pipeline_context.cpp | 1129 auto customComponent = AceType::DynamicCast<Component>(dialogProperties.customComponent); in ShowDialog() local 1130 if (customComponent) { in ShowDialog() 1131 dialog->SetCustomChild(customComponent); in ShowDialog()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/list/ |
H A D | render_list.cpp | 2460 auto customComponent = in CreateDragDropRecognizer() local 2462 if (!customComponent) { in CreateDragDropRecognizer() 2467 auto positionedComponent = AceType::MakeRefPtr<PositionedComponent>(customComponent); in CreateDragDropRecognizer()
|