Commit 72730784 authored by Nico Vertriest's avatar Nico Vertriest Committed by The Qt Project
Browse files

Doc: updated ApplicationWindow.qml according to writing guidelines.


Change-Id: I4df1825fdeb99c46e143e7f3065f2d77f45b26ae
Reviewed-by: default avatarJerome Pasion <jerome.pasion@digia.com>
Reviewed-by: default avatarJ-P Nurmi <jpnurmi@digia.com>
parent faa61235
Branches
Tags
No related merge requests found
Showing with 7 additions and 7 deletions
...@@ -51,7 +51,7 @@ import QtQuick.Controls.Private 1.0 ...@@ -51,7 +51,7 @@ import QtQuick.Controls.Private 1.0
\brief Provides a top-level application window. \brief Provides a top-level application window.
ApplicationWindow is a \l Window, but adds convenience for positioning items ApplicationWindow is a \l Window, but adds convenience for positioning items
such as \l MenuBar, \l ToolBar and \l StatusBar in a platform independent such as \l MenuBar, \l ToolBar, and \l StatusBar in a platform independent
manner. manner.
\code \code
...@@ -89,19 +89,19 @@ Window { ...@@ -89,19 +89,19 @@ Window {
This property holds the \l MenuBar. This property holds the \l MenuBar.
By default this value is not set. By default, this value is not set.
*/ */
property MenuBar menuBar: null property MenuBar menuBar: null
/*! /*!
\qmlproperty Item ApplicationWindow::toolBar \qmlproperty Item ApplicationWindow::toolBar
This property holds the tool bar \l Item. This property holds the toolbar \l Item.
It can be set to any Item type but is generally used with \l ToolBar. It can be set to any Item type but is generally used with \l ToolBar.
By default this value is not set. When you set the toolBar Item, it will By default, this value is not set. When you set the toolbar item, it will
be anchored automatically into the ApplicationWindow. be anchored automatically into the application window.
*/ */
property Item toolBar property Item toolBar
...@@ -112,8 +112,8 @@ Window { ...@@ -112,8 +112,8 @@ Window {
It can be set to any Item type but is generally used with \l StatusBar. It can be set to any Item type but is generally used with \l StatusBar.
By default this value is not set. When you set the statusBar Item, it By default, this value is not set. When you set the status bar item, it
will be anchored automatically into the ApplicationWindow. will be anchored automatically into the application window.
*/ */
property Item statusBar property Item statusBar
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment