Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
src_gui_image_qmovie.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3#include <QLabel>
4#include <QMovie>
5
7
8void wrapper0() {
9
10
11//! [0]
12QLabel label;
13QMovie *movie = new QMovie("animations/fire.gif");
14
15label.setMovie(movie);
16movie->start();
17//! [0]
18
19} // wrapper0
20
21
22void wrapper1() {
23
24//! [1]
25QMovie movie("racecar.gif");
26movie.setSpeed(200); // 2x speed
27//! [1]
28
29} // wrapper1
30} // src_gui_image_qmovie