Home
last modified time | relevance | path

Searched refs:AnimatedDrawableDescriptor (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-basic-components-image.md102 当组件的参数类型为[AnimatedDrawableDescriptor](../js-apis-arkui-drawableDescriptor.md#animateddrawabledescri…
140 当组件的参数类型为[AnimatedDrawableDescriptor](../js-apis-arkui-drawableDescriptor.md#animateddrawabledescri…
160 当组件的参数类型为[AnimatedDrawableDescriptor](../js-apis-arkui-drawableDescriptor.md#animateddrawabledescri…
182 当组件的参数类型为[AnimatedDrawableDescriptor](../js-apis-arkui-drawableDescriptor.md#animateddrawabledescri…
635 当组件的参数类型为[AnimatedDrawableDescriptor](../js-apis-arkui-drawableDescriptor.md#animateddrawabledescri…
663 当组件的参数类型为[AnimatedDrawableDescriptor](../js-apis-arkui-drawableDescriptor.md#animateddrawabledescri…
990 import {AnimationOptions, AnimatedDrawableDescriptor} from '@kit.ArkUI'
998 @State animated: AnimatedDrawableDescriptor | undefined = undefined;
1002 this.animated = new AnimatedDrawableDescriptor(this.pixelmaps, this.options);
1017 this.animated = new AnimatedDrawableDescriptor(this.pixelmaps, this.options);
[all …]
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/
H A Djs-apis-arkui-drawableDescriptor.md321 ## AnimatedDrawableDescriptor<sup>12+</sup>
323 Image组件播放PixelMap数组时传入AnimatedDrawableDescriptor对象。继承自[DrawableDescriptor](#drawabledescriptor)。
329 AnimatedDrawableDescriptor的构造函数。
345 import { AnimationOptions, AnimatedDrawableDescriptor } from '@kit.ArkUI'
353 …@State animated: AnimatedDrawableDescriptor = new AnimatedDrawableDescriptor(this.pixelmaps, this…
356 this.animated = new AnimatedDrawableDescriptor(this.pixelmaps, this.options);
/ohos5.0/docs/en/application-dev/reference/apis-arkui/
H A Djs-apis-arkui-drawableDescriptor.md303 ## AnimatedDrawableDescriptor<sup>12+</sup>
305 Implements an **AnimatedDrawableDescriptor** object, which can be passed in when the **Image** comp…
311 A constructor used to create an **AnimatedDrawableDescriptor** instance.
327 import { AnimationOptions, AnimatedDrawableDescriptor } from '@kit.ArkUI'
335 …@State animated: AnimatedDrawableDescriptor = new AnimatedDrawableDescriptor(this.pixelmaps, this…
338 this.animated = new AnimatedDrawableDescriptor(this.pixelmaps, this.options);
/ohos5.0/foundation/arkui/ace_engine/test/unittest/interfaces/
H A Ddrawable_descriptor_test.cpp309 auto* animatedDrawable = new Napi::AnimatedDrawableDescriptor(pixelMaps, duration, iterations);
333 animatedDrawable = new Napi::AnimatedDrawableDescriptor(pixelMaps, duration, iterations);
348 animatedDrawable = new Napi::AnimatedDrawableDescriptor(pixelMaps, duration, iterations);
493 auto* animatedDrawable = new Napi::AnimatedDrawableDescriptor(pixelMaps, duration, iterations);
522 auto* animatedDrawable = new Napi::AnimatedDrawableDescriptor(pixelMaps, duration, iterations);
749 auto* animatedDrawable = new Napi::AnimatedDrawableDescriptor(pixelMaps, duration, iterations);
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-basic-components-image.md100 …s not take effect when the parameter type of the component is [AnimatedDrawableDescriptor](../js-a…
138 …s not take effect when the parameter type of the component is [AnimatedDrawableDescriptor](../js-a…
571 This event is not triggered if the parameter type of the component is [AnimatedDrawableDescriptor](…
599 This event is not triggered if the parameter type of the component is [AnimatedDrawableDescriptor](…
633 The callback is not triggered if the parameter type of the component is [AnimatedDrawableDescriptor
649 This event is not triggered if the parameter type of the component is [AnimatedDrawableDescriptor](…
926 import {AnimationOptions, AnimatedDrawableDescriptor} from '@kit.ArkUI'
934 @State animated: AnimatedDrawableDescriptor | undefined = undefined;
938 this.animated = new AnimatedDrawableDescriptor(this.pixelmaps, this.options);
953 this.animated = new AnimatedDrawableDescriptor(this.pixelmaps, this.options);
[all …]
/ohos5.0/foundation/arkui/ace_engine/interfaces/inner_api/drawable_descriptor/
H A Ddrawable_descriptor.cpp791 std::shared_ptr<Media::PixelMap> AnimatedDrawableDescriptor::GetPixelMap() in GetPixelMap()
799 DrawableDescriptor::DrawableType AnimatedDrawableDescriptor::GetDrawableType() in GetDrawableType()
804 std::vector<std::shared_ptr<Media::PixelMap>> AnimatedDrawableDescriptor::GetPixelMapList() in GetPixelMapList()
809 int32_t AnimatedDrawableDescriptor::GetDuration() in GetDuration()
817 int32_t AnimatedDrawableDescriptor::GetIterations() in GetIterations()
825 void AnimatedDrawableDescriptor::SetDuration(int32_t duration) in SetDuration()
834 void AnimatedDrawableDescriptor::SetIterations(int32_t iterations) in SetIterations()
H A Ddrawable_descriptor.h210 class ACE_EXPORT AnimatedDrawableDescriptor : public DrawableDescriptor {
212AnimatedDrawableDescriptor(std::vector<std::shared_ptr<Media::PixelMap>> pixelMaps, int32_t durati… in AnimatedDrawableDescriptor() function
214 ~AnimatedDrawableDescriptor() override = default;
H A Djs_drawable_descriptor.cpp130 auto* animatedDrawable = new AnimatedDrawableDescriptor(pixelMaps, duration, iterations); in AnimatedConstructor()
/ohos5.0/foundation/arkui/ace_engine/interfaces/native/node/
H A Ddrawable_descriptor.cpp56 … std::make_shared<OHOS::Ace::Napi::AnimatedDrawableDescriptor>(pixelMapList, duration, iteration); in OH_ArkUI_DrawableDescriptor_CreateFromAnimatedPixelMap()
H A Dnode_extened.h125 std::shared_ptr<OHOS::Ace::Napi::AnimatedDrawableDescriptor> animatedDrawableDescriptor;
H A Dnative_node_napi.cpp189 … auto* animatedDrawable = static_cast<OHOS::Ace::Napi::AnimatedDrawableDescriptor*>(descriptor); in OH_ArkUI_GetDrawableDescriptorFromNapiValue()
195 …awable->animatedDrawableDescriptor = std::make_shared<OHOS::Ace::Napi::AnimatedDrawableDescriptor>( in OH_ArkUI_GetDrawableDescriptorFromNapiValue()
H A Dstyle_modifier.cpp9816 …MapArraySrc(ArkUI_NodeHandle node, const std::shared_ptr<Napi::AnimatedDrawableDescriptor>& descri… in SetPixelMapArraySrc()
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Dpixel_map_ohos.cpp137 auto* animatedDrawable = static_cast<Napi::AnimatedDrawableDescriptor*>(drawable); in GetPxielMapListFromAnimatedDrawable()