Home
last modified time | relevance | path

Searched refs:totalScale_ (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/radio/
H A Dradio_paint_method.cpp65 totalScale_ = AceType::MakeRefPtr<AnimatablePropertyFloat>(DEFAULT_TOTAL_SCALE); in RadioModifier()
78 AttachProperty(totalScale_); in RadioModifier()
130 totalScale_->Set(DEFAULT_TOTAL_SCALE); in UpdateTotalScaleOnAnimatable()
132 totalScale_->Set(DEFAULT_SHRINK_SCALE_VER_TWELVE); in UpdateTotalScaleOnAnimatable()
133 AnimationUtils::Animate(delayOption, [&]() { totalScale_->Set(DEFAULT_TOTAL_SCALE); }); in UpdateTotalScaleOnAnimatable()
159 totalScale_->Set(DEFAULT_TOTAL_SCALE); in UpdateIsOnAnimatableProperty()
160 AnimationUtils::Animate(halfDurationOption, [&]() { totalScale_->Set(DEFAULT_SHRINK_SCALE); }); in UpdateIsOnAnimatableProperty()
161 totalScale_->Set(DEFAULT_SHRINK_SCALE); in UpdateIsOnAnimatableProperty()
163 delayOption, [&]() { totalScale_->Set(1); }, in UpdateIsOnAnimatableProperty()
342 auto outWidth = outCircleRadius * totalScale_->Get(); in PaintIndicator()
[all …]
H A Dradio_paint_method.h89 radioModifier_->SetTotalScale(totalScale_); in UpdateContentModifier()
134 totalScale_ = totalScale; in SetTotalScale()
170 float totalScale_ = 1.0f; variable
H A Dradio_modifier.h136 if (totalScale_) { in SetTotalScale()
137 totalScale_->Set(totalScale); in SetTotalScale()
230 RefPtr<AnimatablePropertyFloat> totalScale_; variable
H A Dradio_pattern.h63 paintMethod->SetTotalScale(totalScale_); in CreateNodePaintMethod()
229 float totalScale_ = 1.0f; variable
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/checkbox/
H A Dcheckbox_paint_method.h178 totalScale_ = totalScale; in SetTotalScale()
213 float totalScale_ = 1.0f; variable
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/checkable/
H A Drender_radio.h64 double totalScale_ = 1.0; variable
H A Drosen_render_radio.cpp73 canvas->drawCircle(centerX, centerY, outCircleRadius_ * totalScale_, paint); in Paint()
123 canvas->DrawCircle(RSPoint(centerX, centerY), outCircleRadius_ * totalScale_); in Paint()
H A Drender_radio.cpp214 radio->totalScale_ = value; in UpdateAnimation()