Home
last modified time | relevance | path

Searched refs:progressStyle (Results 1 - 7 of 7) sorted by relevance

/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_progress_bridge.cpp198 const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) in ParseStrokeWidth()
215 progressStyle.strokeWidthValue = DEFAULT_STROKE_WIDTH; in ParseStrokeWidth()
216 progressStyle.strokeWidthUnit = static_cast<uint8_t>(DimensionUnit::VP); in ParseStrokeWidth()
218 progressStyle.strokeWidthValue = strokeWidth.Value(); in ParseStrokeWidth()
219 progressStyle.strokeWidthUnit = static_cast<uint8_t>(strokeWidth.Unit()); in ParseStrokeWidth()
224 const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) in ParseBorderWidth()
236 progressStyle.borderWidthValue = DEFAULT_BORDER_WIDTH; in ParseBorderWidth()
237 progressStyle.borderWidthUnit = static_cast<uint8_t>(DimensionUnit::VP); in ParseBorderWidth()
239 progressStyle.borderWidthValue = borderWidth.Value(); in ParseBorderWidth()
240 progressStyle in ParseBorderWidth()
197 ParseStrokeWidth( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseStrokeWidth() argument
223 ParseBorderWidth( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseBorderWidth() argument
244 ParseScaleCount( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseScaleCount() argument
264 ParseProgressStatus( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseProgressStatus() argument
283 ParseScaleWidth( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseScaleWidth() argument
303 ParseStrokeRadius( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseStrokeRadius() argument
317 ParseBorderColor( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseBorderColor() argument
330 ParseFontColor( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseFontColor() argument
343 ParseEnableSmoothEffect( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseEnableSmoothEffect() argument
351 ParseContent( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseContent() argument
359 ParseEnableScanEffect( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseEnableScanEffect() argument
367 ParseShadow( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseShadow() argument
374 ParseShowDefaultPercentage( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseShowDefaultPercentage() argument
382 ParseCapsuleFontSize( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseCapsuleFontSize() argument
398 ParseCapsuleFontWeight( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseCapsuleFontWeight() argument
418 ParseCapsuleFontStyle( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseCapsuleFontStyle() argument
436 ParseCapsuleFontFamily( const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle, int32_t index) ParseCapsuleFontFamily() argument
457 ParseLinearStyle(const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle) ParseLinearStyle() argument
465 ParseRingStyle(const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle) ParseRingStyle() argument
474 ParseCapsuleStyle(const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle) ParseCapsuleStyle() argument
489 ParseProgressStyle(const EcmaVM* vm, ArkUIRuntimeCallInfo* runtimeCallInfo, ArkUIProgressStyle& progressStyle) ParseProgressStyle() argument
519 ArkUIProgressStyle progressStyle = { DEFAULT_STROKE_WIDTH, static_cast<int8_t>(DimensionUnit::VP), SetProgressStyle() local
664 auto progressStyle = static_cast<Framework::ProgressStyle>(type); SetProgressInitialize() local
[all...]
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dhorizon_progress_component.cpp48 Style progressStyle = StyleDefault::GetBrightColorStyle(); in CreateNativeViews() local
50 progressView_.SetForegroundStyle(progressStyle); in CreateNativeViews()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_progress.cpp86 auto progressStyle = static_cast<ProgressStyle>(jsStyle->ToNumber<int32_t>()); in Create() local
87 if (progressStyle == ProgressStyle::Eclipse) { in Create()
89 } else if (progressStyle == ProgressStyle::Ring) { in Create()
91 } else if (progressStyle == ProgressStyle::ScaleRing) { in Create()
93 } else if (progressStyle == ProgressStyle::Capsule) { in Create()
100 JSProgressTheme::ApplyTheme(progressStyle); in Create()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/
H A Djsi_view_register.cpp1396 JSObjectTemplate progressStyle; in JsRegisterFormViews() local
1397 progressStyle.Constant("Linear", 0); in JsRegisterFormViews()
1398 progressStyle.Constant("Ring", 1); // 1 means index of constant in JsRegisterFormViews()
1399 progressStyle.Constant("Eclipse", 2); // 2 means index of constant in JsRegisterFormViews()
1400 progressStyle.Constant("ScaleRing", 3); // 3 means index of constant in JsRegisterFormViews()
1401 progressStyle.Constant("Capsule", 4); // 4 means index of constant in JsRegisterFormViews()
1463 globalObj->Set(vm, panda::StringRef::NewFromUtf8(vm, "ProgressStyle"), *progressStyle); in JsRegisterFormViews()
1597 JSObjectTemplate progressStyle; in JsRegisterViews() local
1598 progressStyle.Constant("Linear", 0); in JsRegisterViews()
1599 progressStyle in JsRegisterViews()
[all...]
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dprogress_modifier.cpp408 ArkUINodeHandle node, ArkUI_Float32 value, ArkUI_Float32 total, ArkUI_Int32 progressStyle) in SetProgressInitialize()
413 frameNode, 0.0, value, 0.0, total, static_cast<NG::ProgressType>(progressStyle)); in SetProgressInitialize()
407 SetProgressInitialize( ArkUINodeHandle node, ArkUI_Float32 value, ArkUI_Float32 total, ArkUI_Int32 progressStyle) SetProgressInitialize() argument
/foundation/arkui/ace_engine/frameworks/core/interfaces/cjui/
H A Dcjui_api.h1448 ArkUINodeHandle node, ArkUI_Float32 value, ArkUI_Float32 total, ArkUI_Int32 progressStyle);
/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/
H A Darkoala_api.h3084 ArkUINodeHandle node, ArkUI_Float32 value, ArkUI_Float32 total, ArkUI_Int32 progressStyle);

Completed in 39 milliseconds