ApplicationWindow.qml 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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.Window 2.2
  40. import QtQuick 2.2
  41. import QtQuick.Controls 1.2
  42. import QtQuick.Layouts 1.0
  43. import QtQuick.Controls.Private 1.0
  44. /*!
  45. \qmltype ApplicationWindow
  46. \since 5.1
  47. \inqmlmodule QtQuick.Controls
  48. \ingroup applicationwindow
  49. \ingroup controls
  50. \brief Provides a top-level application window.
  51. \image applicationwindow.png
  52. ApplicationWindow is a \l Window that adds convenience for positioning items,
  53. such as \l MenuBar, \l ToolBar, and \l StatusBar in a platform independent
  54. manner.
  55. \code
  56. ApplicationWindow {
  57. id: window
  58. visible: true
  59. menuBar: MenuBar {
  60. Menu { MenuItem {...} }
  61. Menu { MenuItem {...} }
  62. }
  63. toolBar: ToolBar {
  64. RowLayout {
  65. anchors.fill: parent
  66. ToolButton {...}
  67. }
  68. }
  69. TabView {
  70. id: myContent
  71. anchors.fill: parent
  72. ...
  73. }
  74. }
  75. \endcode
  76. \note By default, an ApplicationWindow is not visible.
  77. The \l{Qt Quick Controls - Gallery} example is a good starting
  78. point to explore this type.
  79. */
  80. Window {
  81. id: root
  82. /*!
  83. \qmlproperty MenuBar ApplicationWindow::menuBar
  84. This property holds the \l MenuBar.
  85. By default, this value is not set.
  86. */
  87. property MenuBar menuBar: null
  88. /*!
  89. \qmlproperty Item ApplicationWindow::toolBar
  90. This property holds the toolbar \l Item.
  91. It can be set to any Item type, but is generally used with \l ToolBar.
  92. By default, this value is not set. When you set the toolbar item, it will
  93. be anchored automatically into the application window.
  94. */
  95. property Item toolBar
  96. /*!
  97. \qmlproperty Item ApplicationWindow::statusBar
  98. This property holds the status bar \l Item.
  99. It can be set to any Item type, but is generally used with \l StatusBar.
  100. By default, this value is not set. When you set the status bar item, it
  101. will be anchored automatically into the application window.
  102. */
  103. property Item statusBar
  104. // The below documentation was supposed to be written as a grouped property, but qdoc would
  105. // not render it correctly due to a bug (QTBUG-34206)
  106. /*!
  107. \qmlproperty ContentItem ApplicationWindow::contentItem
  108. This group holds the size constraints of the content item. This is the area between the
  109. \l ToolBar and the \l StatusBar.
  110. The \l ApplicationWindow will use this as input when calculating the effective size
  111. constraints of the actual window.
  112. It holds these 6 properties for describing the minimum, implicit and maximum sizes:
  113. \table
  114. \header \li Grouped property \li Description
  115. \row \li contentItem.minimumWidth \li The minimum width of the content item.
  116. \row \li contentItem.minimumHeight \li The minimum height of the content item.
  117. \row \li contentItem.implicitWidth \li The implicit width of the content item.
  118. \row \li contentItem.implicitHeight \li The implicit height of the content item.
  119. \row \li contentItem.maximumWidth \li The maximum width of the content item.
  120. \row \li contentItem.maximumHeight \li The maximum height of the content item.
  121. \endtable
  122. */
  123. property alias contentItem : contentArea
  124. /*! The style Component for the window.
  125. \sa {Qt Quick Controls Styles QML Types}
  126. */
  127. property Component style: Settings.styleComponent(Settings.style, "ApplicationWindowStyle.qml", root)
  128. /*! \internal */
  129. property alias __style: styleLoader.item
  130. /*! \internal */
  131. property alias __panel: panelLoader.item
  132. /*! \internal */
  133. property real __topBottomMargins: __panel.contentArea.y + __panel.statusBarArea.height
  134. /*! \internal
  135. There is a similar macro QWINDOWSIZE_MAX in qwindow_p.h that is used to limit the
  136. range of QWindow::maximum{Width,Height}
  137. However, in case we have a very big number (> 2^31) conversion will fail, and it will be
  138. converted to 0, resulting in that we will call setMaximumWidth(0)....
  139. We therefore need to enforce the limit at a level where we are still operating on
  140. floating point values.
  141. */
  142. readonly property real __qwindowsize_max: (1 << 24) - 1
  143. /*! \internal */
  144. property real __width: 0
  145. Binding {
  146. target: root
  147. property: "__width"
  148. when: (root.minimumWidth <= root.maximumWidth) && !contentArea.__noImplicitWidthGiven
  149. value: Math.max(Math.min(root.maximumWidth, contentArea.implicitWidth), root.minimumWidth)
  150. }
  151. /*! \internal */
  152. property real __height: 0
  153. Binding {
  154. target: root
  155. property: "__height"
  156. when: (root.minimumHeight <= root.maximumHeight) && !contentArea.__noImplicitHeightGiven
  157. value: Math.max(Math.min(root.maximumHeight, contentArea.implicitHeight + __topBottomMargins), root.minimumHeight)
  158. }
  159. /* As soon as an application developer writes
  160. width: 200
  161. this binding will be broken. This is the reason for this indirection
  162. via __width (and __height)
  163. */
  164. width: __width
  165. height: __height
  166. minimumWidth: contentArea.__noMinimumWidthGiven ? 0 : contentArea.minimumWidth
  167. minimumHeight: contentArea.__noMinimumHeightGiven ? 0 : (contentArea.minimumHeight + __topBottomMargins)
  168. maximumWidth: Math.min(__qwindowsize_max, contentArea.maximumWidth)
  169. maximumHeight: Math.min(__qwindowsize_max, contentArea.maximumHeight + __topBottomMargins)
  170. /*! \internal */
  171. default property alias data: contentArea.data
  172. flags: Qt.Window | Qt.WindowFullscreenButtonHint |
  173. Qt.WindowTitleHint | Qt.WindowSystemMenuHint | Qt.WindowMinMaxButtonsHint |
  174. Qt.WindowCloseButtonHint | Qt.WindowFullscreenButtonHint
  175. // QTBUG-35049: Windows is removing features we didn't ask for, even though Qt::CustomizeWindowHint is not set
  176. // Otherwise Qt.Window | Qt.WindowFullscreenButtonHint would be enough
  177. Loader {
  178. id: panelLoader
  179. anchors.fill: parent
  180. sourceComponent: __style ? __style.panel : null
  181. onStatusChanged: if (status === Loader.Error) console.error("Failed to load Style for", root)
  182. focus: true
  183. Loader {
  184. id: styleLoader
  185. sourceComponent: style
  186. property var __control: root
  187. property QtObject styleData: QtObject {
  188. readonly property bool hasColor: root.color != "#ffffff"
  189. }
  190. onStatusChanged: if (status === Loader.Error) console.error("Failed to load Style for", root)
  191. }
  192. Binding { target: toolBar; property: "parent"; value: __panel.toolBarArea }
  193. Binding { target: statusBar; property: "parent"; value: __panel.statusBarArea }
  194. Binding {
  195. property: "parent"
  196. target: menuBar ? menuBar.__contentItem : null
  197. when: menuBar && !menuBar.__isNative
  198. value: __panel.menuBarArea
  199. }
  200. Binding { target: menuBar; property: "__parentWindow"; value: root }
  201. Keys.forwardTo: menuBar ? [menuBar.__contentItem, __panel] : []
  202. ContentItem {
  203. id: contentArea
  204. anchors.fill: parent
  205. parent: __panel.contentArea
  206. }
  207. }
  208. }