Home
last modified time | relevance | path

Searched refs:showIndicator (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/swiper/
H A Dswiper_component.cpp35 SwiperComponent::SwiperComponent(const std::list<RefPtr<Component>>& children, bool showIndicator) in SwiperComponent() argument
38 SetShowIndicator(showIndicator); in SwiperComponent()
203 void SwiperComponent::SetShowIndicator(bool showIndicator) in SetShowIndicator() argument
205 declaration_->SetShowIndicator(showIndicator); in SetShowIndicator()
H A Dswiper_component.h58 SwiperComponent(const std::list<RefPtr<Component>>& children, bool showIndicator);
121 void SetShowIndicator(bool showIndicator);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dswiper_model_impl.cpp87 void SwiperModelImpl::SetShowIndicator(bool showIndicator) in SetShowIndicator() argument
92 swiper->SetShowIndicator(showIndicator); in SetShowIndicator()
93 if (!showIndicator) { in SetShowIndicator()
H A Dswiper_model_impl.h39 void SetShowIndicator(bool showIndicator) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_swiper_ffi.cpp86 void FfiOHOSAceFrameworkSwiperSetIndicator(bool showIndicator) in FfiOHOSAceFrameworkSwiperSetIndicator() argument
88 SwiperModel::GetInstance()->SetShowIndicator(showIndicator); in FfiOHOSAceFrameworkSwiperSetIndicator()
H A Dcj_swiper_ffi.h33 CJ_EXPORT void FfiOHOSAceFrameworkSwiperSetIndicator(bool showIndicator);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/
H A Dswiper_model_ng.h50 void SetShowIndicator(bool showIndicator) override;
102 static void SetShowIndicator(FrameNode* frameNode, bool showIndicator);
H A Dswiper_model_ng.cpp112 void SwiperModelNG::SetShowIndicator(bool showIndicator) in SetShowIndicator() argument
114 ACE_UPDATE_LAYOUT_PROPERTY(SwiperLayoutProperty, ShowIndicator, showIndicator); in SetShowIndicator()
580 void SwiperModelNG::SetShowIndicator(FrameNode* frameNode, bool showIndicator) in SetShowIndicator() argument
582 ACE_UPDATE_NODE_LAYOUT_PROPERTY(SwiperLayoutProperty, ShowIndicator, showIndicator, frameNode); in SetShowIndicator()
H A Dswiper_model.h116 virtual void SetShowIndicator(bool showIndicator);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/swiper/
H A Dswiper_declaration.h374 void SetShowIndicator(bool showIndicator) in SetShowIndicator() argument
376 showIndicator_ = showIndicator; in SetShowIndicator()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_swiper.cpp728 bool showIndicator = false; in SetIndicator() local
729 ParseJsBool(info[0], showIndicator); in SetIndicator()
730 SwiperModel::GetInstance()->SetShowIndicator(showIndicator); in SetIndicator()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_swiper_modifier.cpp771 bool showIndicator = indicator == 1 ? true : false; in SetSwiperIndicator() local
772 SwiperModelNG::SetShowIndicator(frameNode, showIndicator); in SetSwiperIndicator()