Searched refs:Animation (Results 1 – 16 of 16) sorted by relevance
/lvgl-latest/src/libs/thorvg/ |
D | tvgAnimation.cpp | 37 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 …]
|
D | tvgAnimation.h | 33 struct Animation::Impl
|
D | tvgSaveModule.h | 40 …virtual bool save(Animation* animation, Paint* bg, const string& path, uint32_t quality, uint32_t …
|
D | thorvg_lottie.h | 23 class TVG_API LottieAnimation final : public Animation
|
D | thorvg.h | 75 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,…
|
D | tvgCapi.cpp | 827 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()
|
D | tvgLottieAnimation.cpp | 68 return static_cast<Animation*>(this)->segment(begin, end); in segment()
|
D | tvgSaver.cpp | 158 Result Saver::save(unique_ptr<Animation> animation, const string& path, uint32_t quality, uint32_t … in save()
|
D | tvgSvgLoaderCommon.h | 41 Animation, enumerator
|
/lvgl-latest/docs/details/main-components/ |
D | animation.rst | 4 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/ |
D | animimg.rst | 4 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/ |
D | index.rst | 2 Simple Animation Image
|
/lvgl-latest/examples/anim/ |
D | index.rst | 23 Animation timeline
|
/lvgl-latest/docs/details/integration/bindings/ |
D | javascript.rst | 22 - `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/ |
D | obj.rst | 354 Load Screen with Animation
|
/lvgl-latest/docs/details/base-widget/styles/ |
D | style-properties.rst | 1330 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…
|