diff --git a/src/controls/PageRow.qml b/src/controls/PageRow.qml --- a/src/controls/PageRow.qml +++ b/src/controls/PageRow.qml @@ -133,22 +133,23 @@ * globalToolBar: grouped property * Controls the appearance of an optional global toolbar for the whole PageRow. * It's a grouped property comprised of the following properties: - * * style: (Kirigami.ApplicationHeaderStyle) can have the following values: - * ** Auto: depending on application formfactor, it can behave automatically like other values, such as a Breadcrumb on mobile and ToolBar on desktop - * ** Breadcrumb: it will show a breadcrumb of all the page titles in the stack, for easy navigation - * ** Titles: each page will only have its own tile on top - * ** TabBar: the global toolbar will look like a TabBar to select the pages - * ** ToolBar: each page will have the title on top together buttons and menus to represent all of the page actions: not available on Mobile systems. - * ** None: no global toolbar will be shown + * * style (Kirigami.ApplicationHeaderStyle): can have the following values: + * * Auto: depending on application formfactor, it can behave automatically like other values, such as a Breadcrumb on mobile and ToolBar on desktop + * * Breadcrumb: it will show a breadcrumb of all the page titles in the stack, for easy navigation + * * Titles: each page will only have its own tile on top + * * TabBar: the global toolbar will look like a TabBar to select the pages + * * ToolBar: each page will have the title on top together buttons and menus to represent all of the page actions: not available on Mobile systems. + * * None: no global toolbar will be shown * * * actualStyle: this will represent the actual style of the toolbar: it can be different from style in the case style is Auto * * showNavigationButtons: OR flags combination of ApplicationHeaderStyle.ShowBackButton and ApplicationHeaderStyle.ShowForwardButton * * toolbarActionAlignment: How to horizontally align the actions when using the ToolBar style. Note that anything but Qt.AlignRight will cause the title to be hidden (default: Qt.AlignRight) - * * minimumHeight: (int) minimum height of the header, which will be resized when scrolling, only in Mobile mode (default: preferredHeight, sliding but no scaling) - property int preferredHeight: (int) the height the toolbar will usually have - property int maximumHeight: (int) The height the toolbar will have in mobile mode when the app is in reachable mode (default: preferredHeight * 1.5) - * * leftReservedSpace: (int, readonly) how many pixels are reserved at the left of the page toolBar (for navigation buttons or drawer handle) - property int rightReservedSpace: (int, readonly) how many pixels are reserved at the right of the page toolbar (drawer handle) + * * minimumHeight (int): minimum height of the header, which will be resized when scrolling, only in Mobile mode (default: preferredHeight, sliding but no scaling) + * * preferredHeight (int): the height the toolbar will usually have + * * maximumHeight (int): the height the toolbar will have in mobile mode when the app is in reachable mode (default: preferredHeight * 1.5) + * * leftReservedSpace (int, readonly): how many pixels are reserved at the left of the page toolbar (for navigation buttons or drawer handle) + * * rightReservedSpace (int, readonly): how many pixels are reserved at the right of the page toolbar (drawer handle) + * * @since 5.48 */ readonly property alias globalToolBar: globalToolBar