aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/codemodel/importscheck/007_compositeQmlCopyAndCppAndQml/QtQuick/Controls/StackViewTransition.qml
blob: 47f4d9ce644627b9ab9503c0b05453231446dfb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick 2.1

ParallelAnimation {
    id: root
    /*! The name of the animation that is running. Can be one of the following:
    \list
    \li 'PushTransition'
    \li 'PopTransition'
    \li 'ReplaceTransition'
    \endlist
    */
    property string name
    /*! The page that is transitioning in. */
    property Item enterItem
    /*! The page that is transitioning out */
    property Item exitItem
    /*! Set to \c true if the transition is told to
        fast-forward directly to its end-state */
    property bool immediate
}