├── .cmake.conf ├── .gitreview ├── .tag ├── CMakeLists.txt ├── LICENSES ├── BSD-3-Clause.txt ├── CC-BY-4.0.txt ├── GFDL-1.3-no-invariants-only.txt ├── GPL-3.0-only.txt ├── LicenseRef-Lottie-Simple-License-9.13.21.txt ├── LicenseRef-Qt-Commercial.txt ├── MIT.txt └── Qt-GPL-exception-1.0.txt ├── REUSE.toml ├── coin ├── axivion │ └── ci_config_linux.json └── module_config.yaml ├── dependencies.yaml ├── examples ├── CMakeLists.txt └── lottie │ ├── CMakeLists.txt │ ├── lottietoqml │ ├── CMakeLists.txt │ ├── GridIcon.qml │ ├── Main.qml │ ├── REUSE.toml │ ├── doc │ │ ├── images │ │ │ ├── lottietoqmlexample-closeup.png │ │ │ └── lottietoqmlexample.png │ │ └── src │ │ │ └── lottietoqmlexample.qdoc │ ├── main.cpp │ ├── original │ │ ├── FingerprintIcon.json │ │ ├── GoogleIcons.json │ │ ├── HappyStar.json │ │ ├── HeartMedical.json │ │ ├── SurprisedBoy.json │ │ ├── USAMapWithOutlines.json │ │ ├── UserAuthentication.json │ │ ├── UserInteractionAnimation.json │ │ └── UserInterface.json │ └── qt_attribution.json │ └── qtlottieviewer │ ├── CMakeLists.txt │ ├── Main.qml │ ├── REUSE.toml │ ├── doc │ ├── images │ │ └── qtlottieviewerexample.png │ └── src │ │ └── qtlottieviewerexample.qdoc │ ├── logo.json │ ├── main.cpp │ ├── qt_attribution.json │ └── qtquickcontrols2.conf ├── licenseRule.json ├── src ├── CMakeLists.txt ├── lottie │ ├── CMakeLists.txt │ ├── qbeziereasing.cpp │ ├── qbeziereasing_p.h │ ├── qlottiebase.cpp │ ├── qlottiebase_p.h │ ├── qlottiebasictransform.cpp │ ├── qlottiebasictransform_p.h │ ├── qlottieconstants_p.h │ ├── qlottieellipse.cpp │ ├── qlottieellipse_p.h │ ├── qlottiefill.cpp │ ├── qlottiefill_p.h │ ├── qlottiefilleffect.cpp │ ├── qlottiefilleffect_p.h │ ├── qlottieflatlayers.cpp │ ├── qlottieflatlayers_p.h │ ├── qlottiefreeformshape.cpp │ ├── qlottiefreeformshape_p.h │ ├── qlottiegfill.cpp │ ├── qlottiegfill_p.h │ ├── qlottiegroup.cpp │ ├── qlottiegroup_p.h │ ├── qlottieimage.cpp │ ├── qlottieimage_p.h │ ├── qlottielayer.cpp │ ├── qlottielayer_p.h │ ├── qlottiepolystar.cpp │ ├── qlottiepolystar_p.h │ ├── qlottieprecomplayer.cpp │ ├── qlottieprecomplayer_p.h │ ├── qlottieproperty_p.h │ ├── qlottierect.cpp │ ├── qlottierect_p.h │ ├── qlottierepeater.cpp │ ├── qlottierepeater_p.h │ ├── qlottierepeatertransform.cpp │ ├── qlottierepeatertransform_p.h │ ├── qlottieroot.cpp │ ├── qlottieroot_p.h │ ├── qlottieround.cpp │ ├── qlottieround_p.h │ ├── qlottieshape.cpp │ ├── qlottieshape_p.h │ ├── qlottieshapelayer.cpp │ ├── qlottieshapelayer_p.h │ ├── qlottieshapetransform.cpp │ ├── qlottieshapetransform_p.h │ ├── qlottiespatialproperty_p.h │ ├── qlottiestroke.cpp │ ├── qlottiestroke_p.h │ ├── qlottietrimpath.cpp │ ├── qlottietrimpath_p.h │ └── renderer │ │ ├── qbatchrenderer.cpp │ │ ├── qbatchrenderer_p.h │ │ ├── qlottierasterrenderer.cpp │ │ ├── qlottierasterrenderer_p.h │ │ ├── qlottierenderer.cpp │ │ └── qlottierenderer_p.h ├── lottiegenerator │ ├── CMakeLists.txt │ ├── qlottievisitor.cpp │ └── qlottievisitor_p.h ├── plugins │ ├── CMakeLists.txt │ └── vectorimageformats │ │ ├── CMakeLists.txt │ │ └── lottie │ │ ├── CMakeLists.txt │ │ ├── lottie.json │ │ └── main.cpp ├── qml │ ├── CMakeLists.txt │ ├── doc │ │ ├── qtlottieanimation.qdocconf │ │ └── src │ │ │ ├── external-resources.qdoc │ │ │ ├── lottietoqml.qdoc │ │ │ ├── qt_target_qml_from_lottie.qdoc │ │ │ ├── qtlottie.qdoc │ │ │ └── qtlottievectorimagehelpers.qdoc │ ├── qlottieanimation.cpp │ └── qlottieanimation_p.h └── vectorimagehelpers │ ├── CMakeLists.txt │ ├── qquicklayeritem.cpp │ └── qquicklayeritem_p.h ├── tests ├── CMakeLists.txt ├── auto │ ├── CMakeLists.txt │ ├── lottie │ │ ├── CMakeLists.txt │ │ ├── shape │ │ │ ├── CMakeLists.txt │ │ │ ├── ellipse │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── ellipse_animated_100x80at00to200x40at50100.json │ │ │ │ │ ├── ellipse_direction.json │ │ │ │ │ ├── ellipse_hidden.json │ │ │ │ │ └── ellipse_static_100x80.json │ │ │ │ └── tst_lottieellipse.cpp │ │ │ ├── fill │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── fill_animated_red100_green0.json │ │ │ │ │ ├── fill_hidden.json │ │ │ │ │ └── fill_static_red_100.json │ │ │ │ └── tst_lottiefill.cpp │ │ │ ├── path │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── freeform_curve_animated.json │ │ │ │ │ ├── freeform_curve_static.json │ │ │ │ │ ├── freeform_direction.json │ │ │ │ │ ├── freeform_hidden.json │ │ │ │ │ ├── freeform_roto_animated.json │ │ │ │ │ ├── freeform_roto_static.json │ │ │ │ │ ├── freeform_triangle_animated.json │ │ │ │ │ └── freeform_triangle_static.json │ │ │ │ └── tst_lottiepath.cpp │ │ │ ├── rect │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── rect_animated_30x30_1515_rad0_to_50x50_7575_rad25.json │ │ │ │ │ ├── rect_direction.json │ │ │ │ │ ├── rect_hidden.json │ │ │ │ │ └── rect_static_30x30_5050_rad0.json │ │ │ │ └── tst_lottierect.cpp │ │ │ ├── repeater │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── repeater_animated.json │ │ │ │ │ ├── repeater_hidden.json │ │ │ │ │ └── repeater_static.json │ │ │ │ └── tst_lottierepeater.cpp │ │ │ ├── repeatertransform │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── repeater_transform_animated.json │ │ │ │ │ └── repeater_transform_static.json │ │ │ │ └── tst_lottierepeatertransform.cpp │ │ │ ├── shapelayer │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── shape_active_60to120.json │ │ │ │ │ ├── shape_matte_alphaclip.json │ │ │ │ │ ├── shape_matte_alphainvclip.json │ │ │ │ │ ├── shape_matte_lumaclip.json │ │ │ │ │ └── shape_matte_lumainvclip.json │ │ │ │ └── tst_lottieshapelayer.cpp │ │ │ ├── shapetransform │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── shapetransform_animated.json │ │ │ │ │ └── shapetransform_static.json │ │ │ │ └── tst_lottieshapetransform.cpp │ │ │ ├── stroke │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── stroke_animated_blue5_white1.json │ │ │ │ │ ├── stroke_hidden.json │ │ │ │ │ └── stroke_static_blue_2.json │ │ │ │ └── tst_lottiestroke.cpp │ │ │ ├── transform │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ │ ├── transform_animated.json │ │ │ │ │ └── transform_static.json │ │ │ │ └── tst_lottiebasictransform.cpp │ │ │ └── trimpath │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data │ │ │ │ ├── trimpath_animated_2080_0_to_0060_3x30.json │ │ │ │ ├── trimpath_hidden.json │ │ │ │ └── trimpath_static_20to80.json │ │ │ │ └── tst_lottietrimpath.cpp │ │ └── vectorimage │ │ │ ├── CMakeLists.txt │ │ │ ├── data │ │ │ ├── json │ │ │ │ ├── broken.json │ │ │ │ └── ok.json │ │ │ ├── vectorimage.qml │ │ │ └── vectorimage_noassumetrustedsource.qml │ │ │ └── tst_vectorimage.cpp │ └── qml │ │ ├── CMakeLists.txt │ │ ├── data │ │ ├── rec_pos_col_opa.json │ │ └── tst_main.qml │ │ ├── qml.qrc │ │ └── tst_qml.cpp ├── baseline │ ├── CMakeLists.txt │ ├── data │ │ ├── Ignore │ │ ├── REUSE.toml │ │ ├── docsamples │ │ │ ├── 3d_layers.json │ │ │ ├── 3d_layers_animation.json │ │ │ ├── 3d_parenting.json │ │ │ ├── auto_orient.json │ │ │ ├── bezier.json │ │ │ ├── bezier_expression.json │ │ │ ├── blend_mode.json │ │ │ ├── blep.png │ │ │ ├── bouncy_ball.json │ │ │ ├── camera.json │ │ │ ├── easing.json │ │ │ ├── effects-blur.json │ │ │ ├── effects-bulge.json │ │ │ ├── effects-fill.json │ │ │ ├── effects-matte3-image.json │ │ │ ├── effects-matte3.json │ │ │ ├── effects-prolevels.json │ │ │ ├── effects-shadow.json │ │ │ ├── effects-stroke.json │ │ │ ├── effects-tint.json │ │ │ ├── effects-tritone.json │ │ │ ├── effects-wave.json │ │ │ ├── ellipse.json │ │ │ ├── fill.json │ │ │ ├── fill_oddeven.json │ │ │ ├── font-css.json │ │ │ ├── font-local.json │ │ │ ├── font-url.json │ │ │ ├── fractal.json │ │ │ ├── gradient-stroke.json │ │ │ ├── gradient.json │ │ │ ├── image.json │ │ │ ├── image_animated.json │ │ │ ├── layer_order.json │ │ │ ├── layers-solid.json │ │ │ ├── mask.json │ │ │ ├── matte.json │ │ │ ├── mod │ │ │ │ ├── combined_paths.json │ │ │ │ ├── dashes.json │ │ │ │ ├── gfill_radial.json │ │ │ │ ├── star.json │ │ │ │ ├── starpoly.json │ │ │ │ ├── trim_parallel.json │ │ │ │ └── trim_sequential.json │ │ │ ├── offset-path.json │ │ │ ├── parenting.json │ │ │ ├── precomp │ │ │ │ ├── circle.json │ │ │ │ ├── star-circle.json │ │ │ │ ├── star-comp.json │ │ │ │ ├── star-nocomp.json │ │ │ │ └── star-splosion.json │ │ │ ├── pucker_bloat.json │ │ │ ├── rectangle.json │ │ │ ├── remapping.json │ │ │ ├── repeater.json │ │ │ ├── rounded_corners.json │ │ │ ├── slots.json │ │ │ ├── sound.mp3 │ │ │ ├── star.json │ │ │ ├── stroke.json │ │ │ ├── text-document.json │ │ │ ├── text-selector.json │ │ │ ├── text.json │ │ │ ├── text_shape.png │ │ │ ├── thumbs-up.png │ │ │ ├── transform.json │ │ │ ├── trim_path.json │ │ │ └── zig-zag.json │ │ ├── original │ │ │ ├── easing.json │ │ │ ├── easing_rect_translate.json │ │ │ ├── gradient_fill.json │ │ │ ├── gradient_opacity_unpair.json │ │ │ ├── image_embedded.json │ │ │ ├── layer_effect_fill.json │ │ │ ├── layer_effect_slider.json │ │ │ ├── linked_layers.json │ │ │ ├── path_and_ellipse.json │ │ │ ├── rect_anchor_moved_static2.json │ │ │ ├── rect_anchor_std_anim.json │ │ │ ├── rect_gfill_linear.json │ │ │ ├── rect_gfill_radial.json │ │ │ ├── rect_move_bezier.json │ │ │ ├── rect_negative_scale_anchors.json │ │ │ ├── rect_negative_scale_pos.json │ │ │ ├── rect_negative_scale_pos_anchors_rot.json │ │ │ ├── rect_rotate.json │ │ │ ├── rect_rotate_layer.json │ │ │ ├── rect_rotate_layer2.json │ │ │ ├── rect_rotate_shape.json │ │ │ ├── rect_scale.json │ │ │ ├── rect_scale_anchors_on_layer.json │ │ │ ├── rect_scale_anchors_on_rect.json │ │ │ ├── rect_skew.json │ │ │ ├── rect_skew_axis.json │ │ │ ├── repeater1.json │ │ │ ├── repeater_group1.json │ │ │ ├── repeater_group2.json │ │ │ ├── rotate_anchor.json │ │ │ ├── shape_bezier_simple.json │ │ │ ├── shape_circle.json │ │ │ ├── shape_complex.json │ │ │ ├── shape_complex2.json │ │ │ ├── shape_static.json │ │ │ ├── skew_bothaxes.json │ │ │ ├── skew_xaxis.json │ │ │ ├── skew_yaxis.json │ │ │ ├── split_positions.json │ │ │ ├── stroke.json │ │ │ ├── trim_path1.json │ │ │ ├── trim_path2.json │ │ │ ├── trim_path2_offset.json │ │ │ ├── trim_path2_sequential.json │ │ │ ├── trim_path_multiple1.json │ │ │ ├── trim_path_multiple2.json │ │ │ ├── trim_path_multiple4.json │ │ │ └── trim_path_parallel2.json │ │ └── qt_attribution.json │ ├── lottie │ │ ├── CMakeLists.txt │ │ └── tst_baseline_qtlottie.cpp │ └── scenegrabber │ │ ├── CMakeLists.txt │ │ ├── Main.qml │ │ ├── checkered.png │ │ └── main.cpp ├── libfuzzer │ └── qml │ │ └── qlottieanimation │ │ └── parse │ │ ├── CMakeLists.txt │ │ └── main.cpp └── manual │ ├── CMakeLists.txt │ ├── featcheck │ ├── CMakeLists.txt │ ├── featcheck.pro │ ├── howtofind.txt │ └── main.cpp │ ├── html │ ├── content.json │ └── index.html │ ├── manual.pro │ └── testApp │ ├── CMakeLists.txt │ ├── easing_rect_translate.json │ ├── gradient_fill.json │ ├── gradient_opacity_unpair.json │ ├── layer_effect_fill.json │ ├── layer_effect_slider.json │ ├── linked_layers.json │ ├── main.cpp │ ├── main.qml │ ├── path_and_ellipse.json │ ├── qml.qrc │ ├── rect_anchor_moved_static2.json │ ├── rect_anchor_std_anim.json │ ├── rect_anim_easing.json │ ├── rect_gfill_linear.json │ ├── rect_gfill_radial.json │ ├── rect_move_bezier.json │ ├── rect_negative_scale_anchors.json │ ├── rect_negative_scale_pos.json │ ├── rect_negative_scale_pos_anchors_rot.json │ ├── rect_rotate.json │ ├── rect_rotate_layer.json │ ├── rect_rotate_layer2.json │ ├── rect_rotate_shape.json │ ├── rect_scale.json │ ├── rect_scale_anchors_on_layer.json │ ├── rect_scale_anchors_on_rect.json │ ├── rect_skew.json │ ├── rect_skew_axis.json │ ├── repeater1.json │ ├── repeater_group1.json │ ├── repeater_group2.json │ ├── shape_bezier_simple.json │ ├── shape_circle.json │ ├── shape_complex.json │ ├── shape_complex2.json │ ├── shape_static.json │ ├── stroke.json │ ├── testApp.pro │ ├── trim_path1.json │ ├── trim_path2.json │ ├── trim_path2_offset.json │ ├── trim_path2_sequential.json │ ├── trim_path_multiple1.json │ ├── trim_path_multiple2.json │ ├── trim_path_multiple3.json │ ├── trim_path_multiple4.json │ └── trim_path_parallel2.json └── tools ├── CMakeLists.txt └── lottietoqml ├── CMakeLists.txt ├── Qt6LottieToQmlMacros.cmake ├── main.cpp └── main.qml /.cmake.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/.cmake.conf -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/.gitreview -------------------------------------------------------------------------------- /.tag: -------------------------------------------------------------------------------- 1 | 2aa620242f3a10fc051a8c68e95df8de42270a85 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/LICENSES/CC-BY-4.0.txt -------------------------------------------------------------------------------- /LICENSES/GFDL-1.3-no-invariants-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/LICENSES/GFDL-1.3-no-invariants-only.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-Lottie-Simple-License-9.13.21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/LICENSES/LicenseRef-Lottie-Simple-License-9.13.21.txt -------------------------------------------------------------------------------- /LICENSES/LicenseRef-Qt-Commercial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/LICENSES/LicenseRef-Qt-Commercial.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/Qt-GPL-exception-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/LICENSES/Qt-GPL-exception-1.0.txt -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/REUSE.toml -------------------------------------------------------------------------------- /coin/axivion/ci_config_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/coin/axivion/ci_config_linux.json -------------------------------------------------------------------------------- /coin/module_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/coin/module_config.yaml -------------------------------------------------------------------------------- /dependencies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/dependencies.yaml -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/lottie/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/CMakeLists.txt -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/CMakeLists.txt -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/GridIcon.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/GridIcon.qml -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/Main.qml -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/REUSE.toml -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/doc/images/lottietoqmlexample-closeup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/doc/images/lottietoqmlexample-closeup.png -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/doc/images/lottietoqmlexample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/doc/images/lottietoqmlexample.png -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/doc/src/lottietoqmlexample.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/doc/src/lottietoqmlexample.qdoc -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/main.cpp -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/original/FingerprintIcon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/original/FingerprintIcon.json -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/original/GoogleIcons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/original/GoogleIcons.json -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/original/HappyStar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/original/HappyStar.json -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/original/HeartMedical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/original/HeartMedical.json -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/original/SurprisedBoy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/original/SurprisedBoy.json -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/original/USAMapWithOutlines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/original/USAMapWithOutlines.json -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/original/UserAuthentication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/original/UserAuthentication.json -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/original/UserInteractionAnimation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/original/UserInteractionAnimation.json -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/original/UserInterface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/original/UserInterface.json -------------------------------------------------------------------------------- /examples/lottie/lottietoqml/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/lottietoqml/qt_attribution.json -------------------------------------------------------------------------------- /examples/lottie/qtlottieviewer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/qtlottieviewer/CMakeLists.txt -------------------------------------------------------------------------------- /examples/lottie/qtlottieviewer/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/qtlottieviewer/Main.qml -------------------------------------------------------------------------------- /examples/lottie/qtlottieviewer/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/qtlottieviewer/REUSE.toml -------------------------------------------------------------------------------- /examples/lottie/qtlottieviewer/doc/images/qtlottieviewerexample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/qtlottieviewer/doc/images/qtlottieviewerexample.png -------------------------------------------------------------------------------- /examples/lottie/qtlottieviewer/doc/src/qtlottieviewerexample.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/qtlottieviewer/doc/src/qtlottieviewerexample.qdoc -------------------------------------------------------------------------------- /examples/lottie/qtlottieviewer/logo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/qtlottieviewer/logo.json -------------------------------------------------------------------------------- /examples/lottie/qtlottieviewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/qtlottieviewer/main.cpp -------------------------------------------------------------------------------- /examples/lottie/qtlottieviewer/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/examples/lottie/qtlottieviewer/qt_attribution.json -------------------------------------------------------------------------------- /examples/lottie/qtlottieviewer/qtquickcontrols2.conf: -------------------------------------------------------------------------------- 1 | [Controls] 2 | Style=Basic 3 | -------------------------------------------------------------------------------- /licenseRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/licenseRule.json -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/lottie/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/CMakeLists.txt -------------------------------------------------------------------------------- /src/lottie/qbeziereasing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qbeziereasing.cpp -------------------------------------------------------------------------------- /src/lottie/qbeziereasing_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qbeziereasing_p.h -------------------------------------------------------------------------------- /src/lottie/qlottiebase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiebase.cpp -------------------------------------------------------------------------------- /src/lottie/qlottiebase_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiebase_p.h -------------------------------------------------------------------------------- /src/lottie/qlottiebasictransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiebasictransform.cpp -------------------------------------------------------------------------------- /src/lottie/qlottiebasictransform_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiebasictransform_p.h -------------------------------------------------------------------------------- /src/lottie/qlottieconstants_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieconstants_p.h -------------------------------------------------------------------------------- /src/lottie/qlottieellipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieellipse.cpp -------------------------------------------------------------------------------- /src/lottie/qlottieellipse_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieellipse_p.h -------------------------------------------------------------------------------- /src/lottie/qlottiefill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiefill.cpp -------------------------------------------------------------------------------- /src/lottie/qlottiefill_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiefill_p.h -------------------------------------------------------------------------------- /src/lottie/qlottiefilleffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiefilleffect.cpp -------------------------------------------------------------------------------- /src/lottie/qlottiefilleffect_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiefilleffect_p.h -------------------------------------------------------------------------------- /src/lottie/qlottieflatlayers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieflatlayers.cpp -------------------------------------------------------------------------------- /src/lottie/qlottieflatlayers_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieflatlayers_p.h -------------------------------------------------------------------------------- /src/lottie/qlottiefreeformshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiefreeformshape.cpp -------------------------------------------------------------------------------- /src/lottie/qlottiefreeformshape_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiefreeformshape_p.h -------------------------------------------------------------------------------- /src/lottie/qlottiegfill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiegfill.cpp -------------------------------------------------------------------------------- /src/lottie/qlottiegfill_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiegfill_p.h -------------------------------------------------------------------------------- /src/lottie/qlottiegroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiegroup.cpp -------------------------------------------------------------------------------- /src/lottie/qlottiegroup_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiegroup_p.h -------------------------------------------------------------------------------- /src/lottie/qlottieimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieimage.cpp -------------------------------------------------------------------------------- /src/lottie/qlottieimage_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieimage_p.h -------------------------------------------------------------------------------- /src/lottie/qlottielayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottielayer.cpp -------------------------------------------------------------------------------- /src/lottie/qlottielayer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottielayer_p.h -------------------------------------------------------------------------------- /src/lottie/qlottiepolystar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiepolystar.cpp -------------------------------------------------------------------------------- /src/lottie/qlottiepolystar_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiepolystar_p.h -------------------------------------------------------------------------------- /src/lottie/qlottieprecomplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieprecomplayer.cpp -------------------------------------------------------------------------------- /src/lottie/qlottieprecomplayer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieprecomplayer_p.h -------------------------------------------------------------------------------- /src/lottie/qlottieproperty_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieproperty_p.h -------------------------------------------------------------------------------- /src/lottie/qlottierect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottierect.cpp -------------------------------------------------------------------------------- /src/lottie/qlottierect_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottierect_p.h -------------------------------------------------------------------------------- /src/lottie/qlottierepeater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottierepeater.cpp -------------------------------------------------------------------------------- /src/lottie/qlottierepeater_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottierepeater_p.h -------------------------------------------------------------------------------- /src/lottie/qlottierepeatertransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottierepeatertransform.cpp -------------------------------------------------------------------------------- /src/lottie/qlottierepeatertransform_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottierepeatertransform_p.h -------------------------------------------------------------------------------- /src/lottie/qlottieroot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieroot.cpp -------------------------------------------------------------------------------- /src/lottie/qlottieroot_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieroot_p.h -------------------------------------------------------------------------------- /src/lottie/qlottieround.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieround.cpp -------------------------------------------------------------------------------- /src/lottie/qlottieround_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieround_p.h -------------------------------------------------------------------------------- /src/lottie/qlottieshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieshape.cpp -------------------------------------------------------------------------------- /src/lottie/qlottieshape_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieshape_p.h -------------------------------------------------------------------------------- /src/lottie/qlottieshapelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieshapelayer.cpp -------------------------------------------------------------------------------- /src/lottie/qlottieshapelayer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieshapelayer_p.h -------------------------------------------------------------------------------- /src/lottie/qlottieshapetransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieshapetransform.cpp -------------------------------------------------------------------------------- /src/lottie/qlottieshapetransform_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottieshapetransform_p.h -------------------------------------------------------------------------------- /src/lottie/qlottiespatialproperty_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiespatialproperty_p.h -------------------------------------------------------------------------------- /src/lottie/qlottiestroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiestroke.cpp -------------------------------------------------------------------------------- /src/lottie/qlottiestroke_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottiestroke_p.h -------------------------------------------------------------------------------- /src/lottie/qlottietrimpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottietrimpath.cpp -------------------------------------------------------------------------------- /src/lottie/qlottietrimpath_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/qlottietrimpath_p.h -------------------------------------------------------------------------------- /src/lottie/renderer/qbatchrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/renderer/qbatchrenderer.cpp -------------------------------------------------------------------------------- /src/lottie/renderer/qbatchrenderer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/renderer/qbatchrenderer_p.h -------------------------------------------------------------------------------- /src/lottie/renderer/qlottierasterrenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/renderer/qlottierasterrenderer.cpp -------------------------------------------------------------------------------- /src/lottie/renderer/qlottierasterrenderer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/renderer/qlottierasterrenderer_p.h -------------------------------------------------------------------------------- /src/lottie/renderer/qlottierenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/renderer/qlottierenderer.cpp -------------------------------------------------------------------------------- /src/lottie/renderer/qlottierenderer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottie/renderer/qlottierenderer_p.h -------------------------------------------------------------------------------- /src/lottiegenerator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottiegenerator/CMakeLists.txt -------------------------------------------------------------------------------- /src/lottiegenerator/qlottievisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottiegenerator/qlottievisitor.cpp -------------------------------------------------------------------------------- /src/lottiegenerator/qlottievisitor_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/lottiegenerator/qlottievisitor_p.h -------------------------------------------------------------------------------- /src/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/vectorimageformats/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(lottie) 5 | -------------------------------------------------------------------------------- /src/plugins/vectorimageformats/lottie/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/plugins/vectorimageformats/lottie/CMakeLists.txt -------------------------------------------------------------------------------- /src/plugins/vectorimageformats/lottie/lottie.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "lottie+json" ] 3 | } 4 | -------------------------------------------------------------------------------- /src/plugins/vectorimageformats/lottie/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/plugins/vectorimageformats/lottie/main.cpp -------------------------------------------------------------------------------- /src/qml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/qml/CMakeLists.txt -------------------------------------------------------------------------------- /src/qml/doc/qtlottieanimation.qdocconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/qml/doc/qtlottieanimation.qdocconf -------------------------------------------------------------------------------- /src/qml/doc/src/external-resources.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/qml/doc/src/external-resources.qdoc -------------------------------------------------------------------------------- /src/qml/doc/src/lottietoqml.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/qml/doc/src/lottietoqml.qdoc -------------------------------------------------------------------------------- /src/qml/doc/src/qt_target_qml_from_lottie.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/qml/doc/src/qt_target_qml_from_lottie.qdoc -------------------------------------------------------------------------------- /src/qml/doc/src/qtlottie.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/qml/doc/src/qtlottie.qdoc -------------------------------------------------------------------------------- /src/qml/doc/src/qtlottievectorimagehelpers.qdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/qml/doc/src/qtlottievectorimagehelpers.qdoc -------------------------------------------------------------------------------- /src/qml/qlottieanimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/qml/qlottieanimation.cpp -------------------------------------------------------------------------------- /src/qml/qlottieanimation_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/qml/qlottieanimation_p.h -------------------------------------------------------------------------------- /src/vectorimagehelpers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/vectorimagehelpers/CMakeLists.txt -------------------------------------------------------------------------------- /src/vectorimagehelpers/qquicklayeritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/vectorimagehelpers/qquicklayeritem.cpp -------------------------------------------------------------------------------- /src/vectorimagehelpers/qquicklayeritem_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/src/vectorimagehelpers/qquicklayeritem_p.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | qt_build_tests() 2 | -------------------------------------------------------------------------------- /tests/auto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/ellipse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/ellipse/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/ellipse/data/ellipse_animated_100x80at00to200x40at50100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/ellipse/data/ellipse_animated_100x80at00to200x40at50100.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/ellipse/data/ellipse_direction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/ellipse/data/ellipse_direction.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/ellipse/data/ellipse_hidden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/ellipse/data/ellipse_hidden.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/ellipse/data/ellipse_static_100x80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/ellipse/data/ellipse_static_100x80.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/ellipse/tst_lottieellipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/ellipse/tst_lottieellipse.cpp -------------------------------------------------------------------------------- /tests/auto/lottie/shape/fill/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/fill/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/fill/data/fill_animated_red100_green0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/fill/data/fill_animated_red100_green0.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/fill/data/fill_hidden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/fill/data/fill_hidden.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/fill/data/fill_static_red_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/fill/data/fill_static_red_100.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/fill/tst_lottiefill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/fill/tst_lottiefill.cpp -------------------------------------------------------------------------------- /tests/auto/lottie/shape/path/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/path/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/path/data/freeform_curve_animated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/path/data/freeform_curve_animated.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/path/data/freeform_curve_static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/path/data/freeform_curve_static.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/path/data/freeform_direction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/path/data/freeform_direction.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/path/data/freeform_hidden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/path/data/freeform_hidden.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/path/data/freeform_roto_animated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/path/data/freeform_roto_animated.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/path/data/freeform_roto_static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/path/data/freeform_roto_static.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/path/data/freeform_triangle_animated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/path/data/freeform_triangle_animated.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/path/data/freeform_triangle_static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/path/data/freeform_triangle_static.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/path/tst_lottiepath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/path/tst_lottiepath.cpp -------------------------------------------------------------------------------- /tests/auto/lottie/shape/rect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/rect/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/rect/data/rect_animated_30x30_1515_rad0_to_50x50_7575_rad25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/rect/data/rect_animated_30x30_1515_rad0_to_50x50_7575_rad25.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/rect/data/rect_direction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/rect/data/rect_direction.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/rect/data/rect_hidden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/rect/data/rect_hidden.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/rect/data/rect_static_30x30_5050_rad0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/rect/data/rect_static_30x30_5050_rad0.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/rect/tst_lottierect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/rect/tst_lottierect.cpp -------------------------------------------------------------------------------- /tests/auto/lottie/shape/repeater/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/repeater/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/repeater/data/repeater_animated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/repeater/data/repeater_animated.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/repeater/data/repeater_hidden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/repeater/data/repeater_hidden.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/repeater/data/repeater_static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/repeater/data/repeater_static.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/repeater/tst_lottierepeater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/repeater/tst_lottierepeater.cpp -------------------------------------------------------------------------------- /tests/auto/lottie/shape/repeatertransform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/repeatertransform/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/repeatertransform/data/repeater_transform_animated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/repeatertransform/data/repeater_transform_animated.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/repeatertransform/data/repeater_transform_static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/repeatertransform/data/repeater_transform_static.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/repeatertransform/tst_lottierepeatertransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/repeatertransform/tst_lottierepeatertransform.cpp -------------------------------------------------------------------------------- /tests/auto/lottie/shape/shapelayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/shapelayer/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/shapelayer/data/shape_active_60to120.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/shapelayer/data/shape_active_60to120.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/shapelayer/data/shape_matte_alphaclip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/shapelayer/data/shape_matte_alphaclip.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/shapelayer/data/shape_matte_alphainvclip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/shapelayer/data/shape_matte_alphainvclip.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/shapelayer/data/shape_matte_lumaclip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/shapelayer/data/shape_matte_lumaclip.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/shapelayer/data/shape_matte_lumainvclip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/shapelayer/data/shape_matte_lumainvclip.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/shapelayer/tst_lottieshapelayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/shapelayer/tst_lottieshapelayer.cpp -------------------------------------------------------------------------------- /tests/auto/lottie/shape/shapetransform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/shapetransform/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/shapetransform/data/shapetransform_animated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/shapetransform/data/shapetransform_animated.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/shapetransform/data/shapetransform_static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/shapetransform/data/shapetransform_static.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/shapetransform/tst_lottieshapetransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/shapetransform/tst_lottieshapetransform.cpp -------------------------------------------------------------------------------- /tests/auto/lottie/shape/stroke/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/stroke/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/stroke/data/stroke_animated_blue5_white1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/stroke/data/stroke_animated_blue5_white1.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/stroke/data/stroke_hidden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/stroke/data/stroke_hidden.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/stroke/data/stroke_static_blue_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/stroke/data/stroke_static_blue_2.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/stroke/tst_lottiestroke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/stroke/tst_lottiestroke.cpp -------------------------------------------------------------------------------- /tests/auto/lottie/shape/transform/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/transform/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/transform/data/transform_animated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/transform/data/transform_animated.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/transform/data/transform_static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/transform/data/transform_static.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/transform/tst_lottiebasictransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/transform/tst_lottiebasictransform.cpp -------------------------------------------------------------------------------- /tests/auto/lottie/shape/trimpath/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/trimpath/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/shape/trimpath/data/trimpath_animated_2080_0_to_0060_3x30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/trimpath/data/trimpath_animated_2080_0_to_0060_3x30.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/trimpath/data/trimpath_hidden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/trimpath/data/trimpath_hidden.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/trimpath/data/trimpath_static_20to80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/trimpath/data/trimpath_static_20to80.json -------------------------------------------------------------------------------- /tests/auto/lottie/shape/trimpath/tst_lottietrimpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/shape/trimpath/tst_lottietrimpath.cpp -------------------------------------------------------------------------------- /tests/auto/lottie/vectorimage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/vectorimage/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/lottie/vectorimage/data/json/broken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/vectorimage/data/json/broken.json -------------------------------------------------------------------------------- /tests/auto/lottie/vectorimage/data/json/ok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/vectorimage/data/json/ok.json -------------------------------------------------------------------------------- /tests/auto/lottie/vectorimage/data/vectorimage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/vectorimage/data/vectorimage.qml -------------------------------------------------------------------------------- /tests/auto/lottie/vectorimage/data/vectorimage_noassumetrustedsource.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/vectorimage/data/vectorimage_noassumetrustedsource.qml -------------------------------------------------------------------------------- /tests/auto/lottie/vectorimage/tst_vectorimage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/lottie/vectorimage/tst_vectorimage.cpp -------------------------------------------------------------------------------- /tests/auto/qml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/qml/CMakeLists.txt -------------------------------------------------------------------------------- /tests/auto/qml/data/rec_pos_col_opa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/qml/data/rec_pos_col_opa.json -------------------------------------------------------------------------------- /tests/auto/qml/data/tst_main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/qml/data/tst_main.qml -------------------------------------------------------------------------------- /tests/auto/qml/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/qml/qml.qrc -------------------------------------------------------------------------------- /tests/auto/qml/tst_qml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/auto/qml/tst_qml.cpp -------------------------------------------------------------------------------- /tests/baseline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/CMakeLists.txt -------------------------------------------------------------------------------- /tests/baseline/data/Ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/Ignore -------------------------------------------------------------------------------- /tests/baseline/data/REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/REUSE.toml -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/3d_layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/3d_layers.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/3d_layers_animation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/3d_layers_animation.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/3d_parenting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/3d_parenting.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/auto_orient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/auto_orient.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/bezier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/bezier.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/bezier_expression.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/bezier_expression.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/blend_mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/blend_mode.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/blep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/blep.png -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/bouncy_ball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/bouncy_ball.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/camera.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/easing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/easing.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/effects-blur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/effects-blur.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/effects-bulge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/effects-bulge.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/effects-fill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/effects-fill.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/effects-matte3-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/effects-matte3-image.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/effects-matte3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/effects-matte3.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/effects-prolevels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/effects-prolevels.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/effects-shadow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/effects-shadow.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/effects-stroke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/effects-stroke.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/effects-tint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/effects-tint.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/effects-tritone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/effects-tritone.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/effects-wave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/effects-wave.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/ellipse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/ellipse.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/fill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/fill.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/fill_oddeven.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/fill_oddeven.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/font-css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/font-css.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/font-local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/font-local.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/font-url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/font-url.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/fractal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/fractal.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/gradient-stroke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/gradient-stroke.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/gradient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/gradient.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/image.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/image_animated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/image_animated.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/layer_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/layer_order.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/layers-solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/layers-solid.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/mask.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/matte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/matte.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/mod/combined_paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/mod/combined_paths.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/mod/dashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/mod/dashes.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/mod/gfill_radial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/mod/gfill_radial.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/mod/star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/mod/star.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/mod/starpoly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/mod/starpoly.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/mod/trim_parallel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/mod/trim_parallel.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/mod/trim_sequential.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/mod/trim_sequential.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/offset-path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/offset-path.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/parenting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/parenting.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/precomp/circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/precomp/circle.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/precomp/star-circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/precomp/star-circle.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/precomp/star-comp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/precomp/star-comp.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/precomp/star-nocomp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/precomp/star-nocomp.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/precomp/star-splosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/precomp/star-splosion.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/pucker_bloat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/pucker_bloat.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/rectangle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/rectangle.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/remapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/remapping.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/repeater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/repeater.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/rounded_corners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/rounded_corners.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/slots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/slots.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/sound.mp3 -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/star.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/star.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/stroke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/stroke.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/text-document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/text-document.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/text-selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/text-selector.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/text.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/text_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/text_shape.png -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/thumbs-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/thumbs-up.png -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/transform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/transform.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/trim_path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/trim_path.json -------------------------------------------------------------------------------- /tests/baseline/data/docsamples/zig-zag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/docsamples/zig-zag.json -------------------------------------------------------------------------------- /tests/baseline/data/original/easing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/easing.json -------------------------------------------------------------------------------- /tests/baseline/data/original/easing_rect_translate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/easing_rect_translate.json -------------------------------------------------------------------------------- /tests/baseline/data/original/gradient_fill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/gradient_fill.json -------------------------------------------------------------------------------- /tests/baseline/data/original/gradient_opacity_unpair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/gradient_opacity_unpair.json -------------------------------------------------------------------------------- /tests/baseline/data/original/image_embedded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/image_embedded.json -------------------------------------------------------------------------------- /tests/baseline/data/original/layer_effect_fill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/layer_effect_fill.json -------------------------------------------------------------------------------- /tests/baseline/data/original/layer_effect_slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/layer_effect_slider.json -------------------------------------------------------------------------------- /tests/baseline/data/original/linked_layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/linked_layers.json -------------------------------------------------------------------------------- /tests/baseline/data/original/path_and_ellipse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/path_and_ellipse.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_anchor_moved_static2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_anchor_moved_static2.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_anchor_std_anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_anchor_std_anim.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_gfill_linear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_gfill_linear.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_gfill_radial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_gfill_radial.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_move_bezier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_move_bezier.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_negative_scale_anchors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_negative_scale_anchors.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_negative_scale_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_negative_scale_pos.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_negative_scale_pos_anchors_rot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_negative_scale_pos_anchors_rot.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_rotate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_rotate.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_rotate_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_rotate_layer.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_rotate_layer2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_rotate_layer2.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_rotate_shape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_rotate_shape.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_scale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_scale.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_scale_anchors_on_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_scale_anchors_on_layer.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_scale_anchors_on_rect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_scale_anchors_on_rect.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_skew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_skew.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rect_skew_axis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rect_skew_axis.json -------------------------------------------------------------------------------- /tests/baseline/data/original/repeater1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/repeater1.json -------------------------------------------------------------------------------- /tests/baseline/data/original/repeater_group1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/repeater_group1.json -------------------------------------------------------------------------------- /tests/baseline/data/original/repeater_group2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/repeater_group2.json -------------------------------------------------------------------------------- /tests/baseline/data/original/rotate_anchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/rotate_anchor.json -------------------------------------------------------------------------------- /tests/baseline/data/original/shape_bezier_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/shape_bezier_simple.json -------------------------------------------------------------------------------- /tests/baseline/data/original/shape_circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/shape_circle.json -------------------------------------------------------------------------------- /tests/baseline/data/original/shape_complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/shape_complex.json -------------------------------------------------------------------------------- /tests/baseline/data/original/shape_complex2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/shape_complex2.json -------------------------------------------------------------------------------- /tests/baseline/data/original/shape_static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/shape_static.json -------------------------------------------------------------------------------- /tests/baseline/data/original/skew_bothaxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/skew_bothaxes.json -------------------------------------------------------------------------------- /tests/baseline/data/original/skew_xaxis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/skew_xaxis.json -------------------------------------------------------------------------------- /tests/baseline/data/original/skew_yaxis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/skew_yaxis.json -------------------------------------------------------------------------------- /tests/baseline/data/original/split_positions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/split_positions.json -------------------------------------------------------------------------------- /tests/baseline/data/original/stroke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/stroke.json -------------------------------------------------------------------------------- /tests/baseline/data/original/trim_path1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/trim_path1.json -------------------------------------------------------------------------------- /tests/baseline/data/original/trim_path2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/trim_path2.json -------------------------------------------------------------------------------- /tests/baseline/data/original/trim_path2_offset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/trim_path2_offset.json -------------------------------------------------------------------------------- /tests/baseline/data/original/trim_path2_sequential.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/trim_path2_sequential.json -------------------------------------------------------------------------------- /tests/baseline/data/original/trim_path_multiple1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/trim_path_multiple1.json -------------------------------------------------------------------------------- /tests/baseline/data/original/trim_path_multiple2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/trim_path_multiple2.json -------------------------------------------------------------------------------- /tests/baseline/data/original/trim_path_multiple4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/trim_path_multiple4.json -------------------------------------------------------------------------------- /tests/baseline/data/original/trim_path_parallel2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/original/trim_path_parallel2.json -------------------------------------------------------------------------------- /tests/baseline/data/qt_attribution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/data/qt_attribution.json -------------------------------------------------------------------------------- /tests/baseline/lottie/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/lottie/CMakeLists.txt -------------------------------------------------------------------------------- /tests/baseline/lottie/tst_baseline_qtlottie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/lottie/tst_baseline_qtlottie.cpp -------------------------------------------------------------------------------- /tests/baseline/scenegrabber/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/scenegrabber/CMakeLists.txt -------------------------------------------------------------------------------- /tests/baseline/scenegrabber/Main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/scenegrabber/Main.qml -------------------------------------------------------------------------------- /tests/baseline/scenegrabber/checkered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/scenegrabber/checkered.png -------------------------------------------------------------------------------- /tests/baseline/scenegrabber/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/baseline/scenegrabber/main.cpp -------------------------------------------------------------------------------- /tests/libfuzzer/qml/qlottieanimation/parse/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/libfuzzer/qml/qlottieanimation/parse/CMakeLists.txt -------------------------------------------------------------------------------- /tests/libfuzzer/qml/qlottieanimation/parse/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/libfuzzer/qml/qlottieanimation/parse/main.cpp -------------------------------------------------------------------------------- /tests/manual/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/featcheck/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/featcheck/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/featcheck/featcheck.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/featcheck/featcheck.pro -------------------------------------------------------------------------------- /tests/manual/featcheck/howtofind.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/featcheck/howtofind.txt -------------------------------------------------------------------------------- /tests/manual/featcheck/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/featcheck/main.cpp -------------------------------------------------------------------------------- /tests/manual/html/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/html/content.json -------------------------------------------------------------------------------- /tests/manual/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/html/index.html -------------------------------------------------------------------------------- /tests/manual/manual.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = subdirs 2 | SUBDIRS += testApp 3 | -------------------------------------------------------------------------------- /tests/manual/testApp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/CMakeLists.txt -------------------------------------------------------------------------------- /tests/manual/testApp/easing_rect_translate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/easing_rect_translate.json -------------------------------------------------------------------------------- /tests/manual/testApp/gradient_fill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/gradient_fill.json -------------------------------------------------------------------------------- /tests/manual/testApp/gradient_opacity_unpair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/gradient_opacity_unpair.json -------------------------------------------------------------------------------- /tests/manual/testApp/layer_effect_fill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/layer_effect_fill.json -------------------------------------------------------------------------------- /tests/manual/testApp/layer_effect_slider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/layer_effect_slider.json -------------------------------------------------------------------------------- /tests/manual/testApp/linked_layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/linked_layers.json -------------------------------------------------------------------------------- /tests/manual/testApp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/main.cpp -------------------------------------------------------------------------------- /tests/manual/testApp/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/main.qml -------------------------------------------------------------------------------- /tests/manual/testApp/path_and_ellipse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/path_and_ellipse.json -------------------------------------------------------------------------------- /tests/manual/testApp/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/qml.qrc -------------------------------------------------------------------------------- /tests/manual/testApp/rect_anchor_moved_static2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_anchor_moved_static2.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_anchor_std_anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_anchor_std_anim.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_anim_easing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_anim_easing.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_gfill_linear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_gfill_linear.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_gfill_radial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_gfill_radial.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_move_bezier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_move_bezier.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_negative_scale_anchors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_negative_scale_anchors.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_negative_scale_pos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_negative_scale_pos.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_negative_scale_pos_anchors_rot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_negative_scale_pos_anchors_rot.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_rotate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_rotate.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_rotate_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_rotate_layer.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_rotate_layer2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_rotate_layer2.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_rotate_shape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_rotate_shape.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_scale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_scale.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_scale_anchors_on_layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_scale_anchors_on_layer.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_scale_anchors_on_rect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_scale_anchors_on_rect.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_skew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_skew.json -------------------------------------------------------------------------------- /tests/manual/testApp/rect_skew_axis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/rect_skew_axis.json -------------------------------------------------------------------------------- /tests/manual/testApp/repeater1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/repeater1.json -------------------------------------------------------------------------------- /tests/manual/testApp/repeater_group1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/repeater_group1.json -------------------------------------------------------------------------------- /tests/manual/testApp/repeater_group2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/repeater_group2.json -------------------------------------------------------------------------------- /tests/manual/testApp/shape_bezier_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/shape_bezier_simple.json -------------------------------------------------------------------------------- /tests/manual/testApp/shape_circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/shape_circle.json -------------------------------------------------------------------------------- /tests/manual/testApp/shape_complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/shape_complex.json -------------------------------------------------------------------------------- /tests/manual/testApp/shape_complex2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/shape_complex2.json -------------------------------------------------------------------------------- /tests/manual/testApp/shape_static.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/shape_static.json -------------------------------------------------------------------------------- /tests/manual/testApp/stroke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/stroke.json -------------------------------------------------------------------------------- /tests/manual/testApp/testApp.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/testApp.pro -------------------------------------------------------------------------------- /tests/manual/testApp/trim_path1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/trim_path1.json -------------------------------------------------------------------------------- /tests/manual/testApp/trim_path2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/trim_path2.json -------------------------------------------------------------------------------- /tests/manual/testApp/trim_path2_offset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/trim_path2_offset.json -------------------------------------------------------------------------------- /tests/manual/testApp/trim_path2_sequential.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/trim_path2_sequential.json -------------------------------------------------------------------------------- /tests/manual/testApp/trim_path_multiple1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/trim_path_multiple1.json -------------------------------------------------------------------------------- /tests/manual/testApp/trim_path_multiple2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/trim_path_multiple2.json -------------------------------------------------------------------------------- /tests/manual/testApp/trim_path_multiple3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/trim_path_multiple3.json -------------------------------------------------------------------------------- /tests/manual/testApp/trim_path_multiple4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/trim_path_multiple4.json -------------------------------------------------------------------------------- /tests/manual/testApp/trim_path_parallel2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tests/manual/testApp/trim_path_parallel2.json -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2025 The Qt Company Ltd. 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | add_subdirectory(lottietoqml) 5 | -------------------------------------------------------------------------------- /tools/lottietoqml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tools/lottietoqml/CMakeLists.txt -------------------------------------------------------------------------------- /tools/lottietoqml/Qt6LottieToQmlMacros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tools/lottietoqml/Qt6LottieToQmlMacros.cmake -------------------------------------------------------------------------------- /tools/lottietoqml/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tools/lottietoqml/main.cpp -------------------------------------------------------------------------------- /tools/lottietoqml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qt/qtlottie/HEAD/tools/lottietoqml/main.qml --------------------------------------------------------------------------------