summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/src_corelib_animation_qpropertyanimation.cpp
blob: e50581a2c85e4a60b21b8ba16174e8da58f3be49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause


//! [0]
    QPropertyAnimation *animation = new QPropertyAnimation(myWidget, "geometry");
    animation->setDuration(10000);
    animation->setStartValue(QRect(0, 0, 100, 30));
    animation->setEndValue(QRect(250, 250, 100, 30));

    animation->start();
//! [0]