Home
last modified time | relevance | path

Searched refs:progressLayoutProperty (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/progress/
H A Dprogress_layout_algorithm.cpp59 …auto progressLayoutProperty = DynamicCast<ProgressLayoutProperty>(layoutWrapper->GetLayoutProperty… in MeasureContent() local
60 CHECK_NULL_RETURN(progressLayoutProperty, std::nullopt); in MeasureContent()
61 type_ = progressLayoutProperty->GetType().value_or(ProgressType::LINEAR); in MeasureContent()
62 strokeWidth_ = progressLayoutProperty->GetStrokeWidth(). in MeasureContent()
106 …auto progressLayoutProperty = DynamicCast<ProgressLayoutProperty>(layoutWrapper->GetLayoutProperty… in MeasureContentForApiNine() local
107 CHECK_NULL_RETURN(progressLayoutProperty, std::nullopt); in MeasureContentForApiNine()
108 type_ = progressLayoutProperty->GetType().value_or(ProgressType::LINEAR); in MeasureContentForApiNine()
109 strokeWidth_ = progressLayoutProperty->GetStrokeWidth(). in MeasureContentForApiNine()
H A Dprogress_pattern.h47 auto progressLayoutProperty = GetLayoutProperty<ProgressLayoutProperty>(); in CreateNodePaintMethod() local
48 CHECK_NULL_RETURN(progressLayoutProperty, nullptr); in CreateNodePaintMethod()
49 progressType_ = progressLayoutProperty->GetType().value_or(ProgressType::LINEAR); in CreateNodePaintMethod()
55 bool isRtl = progressLayoutProperty->GetNonAutoLayoutDirection() == TextDirection::RTL; in CreateNodePaintMethod()
H A Dprogress_pattern.cpp57 auto progressLayoutProperty = GetLayoutProperty<ProgressLayoutProperty>(); in InitAnimatableProperty() local
58 CHECK_NULL_VOID(progressLayoutProperty); in InitAnimatableProperty()
271 auto progressLayoutProperty = GetLayoutProperty<ProgressLayoutProperty>(); in OnModifyDone() local
272 CHECK_NULL_VOID(progressLayoutProperty); in OnModifyDone()
273 if (progressLayoutProperty->GetType() == ProgressType::CAPSULE) { in OnModifyDone()
298 auto progressLayoutProperty = GetLayoutProperty<ProgressLayoutProperty>(); in OnLanguageConfigurationUpdate() local
299 CHECK_NULL_VOID(progressLayoutProperty); in OnLanguageConfigurationUpdate()
300 bool isRtl = progressLayoutProperty->GetNonAutoLayoutDirection() == TextDirection::RTL; in OnLanguageConfigurationUpdate()
H A Dprogress_model_ng.cpp89 auto progressLayoutProperty = frameNode->GetLayoutProperty<NG::ProgressLayoutProperty>(); in CreateFrameNode() local
90 progressLayoutProperty->UpdateType(type); in CreateFrameNode()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dprogress_modifier.cpp157 auto progressLayoutProperty = frameNode->GetLayoutProperty<ProgressLayoutProperty>(); in ResetProgressColor() local
158 CHECK_NULL_VOID(progressLayoutProperty); in ResetProgressColor()
159 auto progresstype = progressLayoutProperty->GetType(); in ResetProgressColor()
279 auto progressLayoutProperty = frameNode->GetLayoutProperty<ProgressLayoutProperty>(); in SetProgressStyle() local
280 CHECK_NULL_VOID(progressLayoutProperty); in SetProgressStyle()
281 auto progresstype = progressLayoutProperty->GetType(); in SetProgressStyle()
346 auto progressLayoutProperty = frameNode->GetLayoutProperty<ProgressLayoutProperty>(); in ResetProgressStyle() local
347 CHECK_NULL_VOID(progressLayoutProperty); in ResetProgressStyle()
348 auto progresstype = progressLayoutProperty->GetType(); in ResetProgressStyle()
374 CHECK_NULL_VOID(progressLayoutProperty); in ResetProgressBackgroundColor()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/refresh/
H A Drefresh_pattern.cpp226 … auto progressLayoutProperty = progressChild_->GetLayoutProperty<LoadingProgressLayoutProperty>(); in InitProgressNode() local
227 CHECK_NULL_VOID(progressLayoutProperty); in InitProgressNode()
228 progressLayoutProperty->UpdateUserDefinedIdealSize( in InitProgressNode()
1129 … auto progressLayoutProperty = progressChild_->GetLayoutProperty<LoadingProgressLayoutProperty>(); in UpdateLoadingMarginTop() local
1130 CHECK_NULL_VOID(progressLayoutProperty); in UpdateLoadingMarginTop()
1136 progressLayoutProperty->UpdateMargin(marginProperty); in UpdateLoadingMarginTop()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_progress_bridge.cpp535 auto progressLayoutProperty = frameNode->GetLayoutProperty<ProgressLayoutProperty>(); in SetProgressStyle() local
536 CHECK_NULL_RETURN(progressLayoutProperty, panda::JSValueRef::Undefined(vm)); in SetProgressStyle()
537 auto progresstype = progressLayoutProperty->GetType(); in SetProgressStyle()