Home
last modified time | relevance | path

Searched refs:Animation (Results 1 – 16 of 16) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgAnimation.cpp37 Animation::~Animation() in ~Animation()
43 Animation::Animation() : pImpl(new Impl) in Animation() function in Animation
48 Result Animation::frame(float no) noexcept in frame()
60 Picture* Animation::picture() const noexcept in picture()
66 float Animation::curFrame() const noexcept in curFrame()
77 float Animation::totalFrame() const noexcept in totalFrame()
88 float Animation::duration() const noexcept in duration()
99 Result Animation::segment(float begin, float end) noexcept in segment()
113 Result Animation::segment(float *begin, float *end) noexcept in segment()
126 unique_ptr<Animation> Animation::gen() noexcept in gen()
[all …]
DtvgAnimation.h33 struct Animation::Impl
DtvgSaveModule.h40 …virtual bool save(Animation* animation, Paint* bg, const string& path, uint32_t quality, uint32_t …
Dthorvg_lottie.h23 class TVG_API LottieAnimation final : public Animation
Dthorvg.h75 class Animation; variable
1380 _TVG_DECLARE_ACCESSOR(Animation);
1883 class TVG_API Animation
1886 ~Animation();
1994 static std::unique_ptr<Animation> gen() noexcept;
1996 _TVG_DECLARE_PRIVATE(Animation);
2074 …Result save(std::unique_ptr<Animation> animation, const std::string& path, uint32_t quality = 100,…
DtvgCapi.cpp827 return (Tvg_Animation*) Animation::gen().release(); in tvg_animation_new()
834 return (Tvg_Result) reinterpret_cast<Animation*>(animation)->frame(no); in tvg_animation_set_frame()
841 *no = reinterpret_cast<Animation*>(animation)->curFrame(); in tvg_animation_get_frame()
849 *cnt = reinterpret_cast<Animation*>(animation)->totalFrame(); in tvg_animation_get_total_frame()
857 return (Tvg_Paint*) reinterpret_cast<Animation*>(animation)->picture(); in tvg_animation_get_picture()
864 *duration = reinterpret_cast<Animation*>(animation)->duration(); in tvg_animation_get_duration()
872 return (Tvg_Result) reinterpret_cast<Animation*>(animation)->segment(start, end); in tvg_animation_set_segment()
879 return (Tvg_Result) reinterpret_cast<Animation*>(animation)->segment(start, end); in tvg_animation_get_segment()
886 delete(reinterpret_cast<Animation*>(animation)); in tvg_animation_del()
DtvgLottieAnimation.cpp68 return static_cast<Animation*>(this)->segment(begin, end); in segment()
DtvgSaver.cpp158 Result Saver::save(unique_ptr<Animation> animation, const string& path, uint32_t quality, uint32_t … in save()
DtvgSvgLoaderCommon.h41 Animation, enumerator
/lvgl-latest/docs/details/main-components/
Danimation.rst4 Animation (lv_anim)
15 For each Animation you create, it accomplishes the above by providing a generic
19 Animation is playing through.
25 The main callback called during an Animation (when it is playing) is called an
59 Thus, you can have a Button's width being changed by one Animation while having its
60 height being changed by another Animation.
66 Create an Animation
69 To create an Animation, start by creating an Animation *template* in an
90 /* Set target of the Animation */
93 /* Length of the Animation [ms] */
[all …]
/lvgl-latest/docs/details/widgets/
Danimimg.rst4 Animation Image (lv_animimg)
41 use the :ref:`Animation <animation>` functions, for example, to
53 No special events are sent by Animation-Image Widgets.
68 No *Keys* are processed by Animation-Image Widgets.
/lvgl-latest/examples/widgets/animimg/
Dindex.rst2 Simple Animation Image
/lvgl-latest/examples/anim/
Dindex.rst23 Animation timeline
/lvgl-latest/docs/details/integration/bindings/
Djavascript.rst22 - `Animation <#animation>`__
91 Animation section in JavaScript
94 - `Animation <https://github.com/lvgl/lv_binding_js/blob/master/doc/animate/animate.md>`__
/lvgl-latest/docs/details/base-widget/
Dobj.rst354 Load Screen with Animation
/lvgl-latest/docs/details/base-widget/styles/
Dstyle-properties.rst1330 Animation template for Widget's animation. Should be a pointer to `lv_anim_t`. The animation parame…
1344 Animation duration in milliseconds. Its meaning is widget specific. E.g. blink time of the cursor o…