Home
last modified time | relevance | path

Searched refs:themeBlockSize (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/slider/
H A Dslider_layout_algorithm.cpp93 Dimension themeBlockSize; in MeasureContent() local
96 …GetStyleThemeValue(layoutWrapper, themeTrackThickness, themeBlockSize, hotBlockShadowWidth, themeB… in MeasureContent()
104 auto blockDiameter = scaleValue * static_cast<float>(themeBlockSize.ConvertToPx()); in MeasureContent()
109 blockDiameter = static_cast<float>(themeBlockSize.ConvertToPx()); in MeasureContent()
136 Dimension& themeBlockSize, Dimension& hotBlockShadowWidth, Dimension& themeBlockHotSize) in GetStyleThemeValue() argument
149 themeBlockSize = theme->GetOutsetBlockSize(); in GetStyleThemeValue()
154 themeBlockSize = theme->GetInsetBlockSize(); in GetStyleThemeValue()
159 themeBlockSize = Dimension(0); in GetStyleThemeValue()
H A Dslider_layout_property.h80 …auto themeBlockSize = sliderMode == SliderModelNG::SliderMode::OUTSET ? theme->GetOutsetBlockSize() in ToJsonValue() local
82 jsonValue->Put("width", themeBlockSize.ToString().c_str()); in ToJsonValue()
83 jsonValue->Put("height", themeBlockSize.ToString().c_str()); in ToJsonValue()
H A Dslider_model_ng.cpp193 …auto themeBlockSize = mode == SliderMode::OUTSET ? theme->GetOutsetBlockSize() : theme->GetInsetBl… in SetBlockSize() local
194 … blockSize = layoutProperty->GetBlockSizeValue(SizeT<Dimension>(themeBlockSize, themeBlockSize)); in SetBlockSize()
366 …auto themeBlockSize = mode == SliderMode::OUTSET ? theme->GetOutsetBlockSize() : theme->GetInsetBl… in SetBlockSize() local
367 … blockSize = layoutProperty->GetBlockSizeValue(SizeT<Dimension>(themeBlockSize, themeBlockSize)); in SetBlockSize()
H A Dslider_layout_algorithm.h58 …ThemeValue(LayoutWrapper* layoutWrapper, Dimension& themeTrackThickness, Dimension& themeBlockSize,