StackViewTransition.qml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2021 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the Qt Quick Controls module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:COMM$
  9. **
  10. ** Commercial License Usage
  11. ** Licensees holding valid commercial Qt licenses may use this file in
  12. ** accordance with the commercial license agreement provided with the
  13. ** Software or, alternatively, in accordance with the terms contained in
  14. ** a written agreement between you and The Qt Company. For licensing terms
  15. ** and conditions see https://www.qt.io/terms-conditions. For further
  16. ** information use the contact form at https://www.qt.io/contact-us.
  17. **
  18. ** $QT_END_LICENSE$
  19. **
  20. **
  21. **
  22. **
  23. **
  24. **
  25. **
  26. **
  27. **
  28. **
  29. **
  30. **
  31. **
  32. **
  33. **
  34. **
  35. **
  36. **
  37. **
  38. ****************************************************************************/
  39. import QtQuick 2.2
  40. ParallelAnimation {
  41. id: root
  42. /*! The name of the animation that is running. Can be one of the following:
  43. \list
  44. \li 'PushTransition'
  45. \li 'PopTransition'
  46. \li 'ReplaceTransition'
  47. \endlist
  48. */
  49. property string name
  50. /*! The page that is transitioning in. */
  51. property Item enterItem
  52. /*! The page that is transitioning out */
  53. property Item exitItem
  54. /*! Set to \c true if the transition is told to
  55. fast-forward directly to its end-state */
  56. property bool immediate
  57. }