ProgressBar.qml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 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:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. import QtQuick 2.2
  40. import QtQuick.Controls 1.2
  41. import QtQuick.Controls.Private 1.0
  42. /*!
  43. \qmltype ProgressBar
  44. \inqmlmodule QtQuick.Controls
  45. \since 5.1
  46. \ingroup controls
  47. \brief A progress indicator.
  48. \image progressbar.png
  49. The ProgressBar is used to give an indication of the progress of an operation.
  50. \l value is updated regularly and must be between \l minimumValue and \l maximumValue.
  51. \code
  52. Column {
  53. ProgressBar {
  54. value: 0.5
  55. }
  56. ProgressBar {
  57. indeterminate: true
  58. }
  59. }
  60. \endcode
  61. You can create a custom appearance for a ProgressBar by
  62. assigning a \l {ProgressBarStyle}.
  63. */
  64. Control {
  65. id: progressbar
  66. /*! This property holds the progress bar's current value.
  67. Attempting to change the current value to one outside the minimum-maximum
  68. range has no effect on the current value.
  69. The default value is \c{0}.
  70. */
  71. property real value: 0
  72. /*! This property is the progress bar's minimum value.
  73. The \l value is clamped to this value.
  74. The default value is \c{0}.
  75. */
  76. property real minimumValue: 0
  77. /*! This property is the progress bar's maximum value.
  78. The \l value is clamped to this value.
  79. If maximumValue is smaller than \l minimumValue, \l minimumValue will be enforced.
  80. The default value is \c{1}.
  81. */
  82. property real maximumValue: 1
  83. /*! This property toggles indeterminate mode.
  84. When the actual progress is unknown, use this option.
  85. The progress bar will be animated as a busy indicator instead.
  86. The default value is \c false.
  87. */
  88. property bool indeterminate: false
  89. /*! \qmlproperty enumeration orientation
  90. This property holds the orientation of the progress bar.
  91. \list
  92. \li Qt.Horizontal - Horizontal orientation. (Default)
  93. \li Qt.Vertical - Vertical orientation.
  94. \endlist
  95. */
  96. property int orientation: Qt.Horizontal
  97. /*! \qmlproperty bool ProgressBar::hovered
  98. This property indicates whether the control is being hovered.
  99. */
  100. readonly property alias hovered: hoverArea.containsMouse
  101. /*! \internal */
  102. style: Settings.styleComponent(Settings.style, "ProgressBarStyle.qml", progressbar)
  103. /*! \internal */
  104. property bool __initialized: false
  105. /*! \internal */
  106. onMaximumValueChanged: setValue(value)
  107. /*! \internal */
  108. onMinimumValueChanged: setValue(value)
  109. /*! \internal */
  110. onValueChanged: if (__initialized) setValue(value)
  111. /*! \internal */
  112. Component.onCompleted: {
  113. __initialized = true;
  114. setValue(value)
  115. }
  116. activeFocusOnTab: false
  117. Accessible.role: Accessible.ProgressBar
  118. Accessible.name: value
  119. implicitWidth:(__panel ? __panel.implicitWidth : 0)
  120. implicitHeight: (__panel ? __panel.implicitHeight: 0)
  121. MouseArea {
  122. id: hoverArea
  123. anchors.fill: parent
  124. hoverEnabled: Settings.hoverEnabled
  125. }
  126. /*! \internal */
  127. function setValue(v) {
  128. var newval = parseFloat(v)
  129. if (!isNaN(newval)) {
  130. // we give minimumValue priority over maximum if they are inconsistent
  131. if (newval > maximumValue) {
  132. if (maximumValue >= minimumValue)
  133. newval = maximumValue;
  134. else
  135. newval = minimumValue
  136. } else if (v < minimumValue) {
  137. newval = minimumValue
  138. }
  139. if (value !== newval)
  140. value = newval
  141. }
  142. }
  143. }