Searched refs:scaleCount (Results 1 - 8 of 8) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_progress_ffi.cpp | 72 double strokeWidth, int32_t strokeWidthUnit, int32_t scaleCount, double scaleWidth, int32_t scaleWidthUnit) in FfiOHOSAceFrameworkProgressSetStyle() 78 ProgressModel::GetInstance()->SetScaleCount(scaleCount); in FfiOHOSAceFrameworkProgressSetStyle() 71 FfiOHOSAceFrameworkProgressSetStyle( double strokeWidth, int32_t strokeWidthUnit, int32_t scaleCount, double scaleWidth, int32_t scaleWidthUnit) FfiOHOSAceFrameworkProgressSetStyle() argument
|
H A D | cj_progress_ffi.h | 30 double strokeWidth, int32_t strokeWidthUnit, int32_t scaleCount, double scaleWidth, int32_t scaleWidthUnit);
|
/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/ |
H A D | progress_composed_element.cpp | 134 auto scaleCount = renderProgress->GetProgressComponent()->GetScaleNumber(); in GetCircularStyle() local 135 jsonCircularStyle->Put("scaleCount", std::to_string(scaleCount).c_str()); in GetCircularStyle()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_progress_bridge.cpp | 248 int32_t scaleCount = DEFAULT_SCALE_COUNT; in ParseScaleCount() local 251 scaleCount = theme->GetScaleNumber(); in ParseScaleCount() 254 if (scaleCountArg->IsNull() || !ArkTSUtils::ParseJsInteger(vm, scaleCountArg, scaleCount)) { in ParseScaleCount() 255 scaleCount = DEFAULT_SCALE_COUNT; in ParseScaleCount() 257 if (scaleCount > 1) { in ParseScaleCount() 258 progressStyle.scaleCount = scaleCount; in ParseScaleCount() 260 progressStyle.scaleCount = theme->GetScaleNumber(); in ParseScaleCount()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_progress.cpp | 223 auto jsScaleCount = paramObject->GetProperty("scaleCount"); in JsSetProgressStyleOptions() 224 auto scaleCount = jsScaleCount->IsNumber() ? jsScaleCount->ToNumber<int32_t>() : theme->GetScaleNumber(); in JsSetProgressStyleOptions() local 225 if (scaleCount > 1.0) { in JsSetProgressStyleOptions() 226 ProgressModel::GetInstance()->SetScaleCount(scaleCount); in JsSetProgressStyleOptions()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | progress_modifier.cpp | 214 ProgressModelNG::SetScaleCount(node, value->scaleCount); in SetProgressStyleOptions()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/ |
H A D | arkoala_api.h | 390 ArkUI_Int32 scaleCount; member
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | arkComponent.js | 24393 let scaleCount = this.value.scaleCount; 24415 getUINativeModule().progress.SetProgressStyle(node, strokeWidth, scaleCount,
|
Completed in 46 milliseconds