AbstractApplicationWindow
Properties | |
OverlayDrawer | contextDrawer |
bool | controlsVisible |
OverlayDrawer | globalDrawer |
Item | overlay |
Item | pageStack |
KirigamiAction | quitAction |
bool | wideScreen |
Public Member Functions | |
void | applicationWindow () |
void | hidePassiveNotification (index=0) |
void | showPassiveNotification (message, timeout, actionText, callBack) |
Detailed Description
A window that provides some basic features needed for all apps Use this class only if you need a custom content for your application, different from the Page Row behavior recommended by the HIG and provided by ApplicationWindow.
It is recommended to use ApplicationWindow instead
- See also
- ApplicationWindow
It's usually used as a root QML component for the application. It provides support for a central page stack, side drawers, and basic support for the Android back button.
Setting a width and height property on the ApplicationWindow will set its initial size, but it won't set it as an automatically binding. to resize programmatically the ApplicationWindow they need to be assigned again in an imperative fashion
Example usage:
Definition at line 69 of file AbstractApplicationWindow.qml.
Property Documentation
◆ contextDrawer
|
read |
This property holds the drawer for context-dependent actions.
The drawer that will be opened by sliding from the right screen edge or by dragging the ActionButton to the left.
- Note
- It is recommended to use the ContextDrawer type here.
The contents of the context drawer should depend from what page is loaded in the main pageStack
Example usage:
Definition at line 146 of file AbstractApplicationWindow.qml.
◆ controlsVisible
|
read |
This property sets whether the standard chrome of the app is visible.
These are the action button, the drawer handles, and the application header.
default: true
Definition at line 86 of file AbstractApplicationWindow.qml.
◆ globalDrawer
|
read |
This property holds the drawer for global actions.
This drawer can be opened by sliding from the left screen edge or by dragging the ActionButton to the right.
- Note
- It is recommended to use the GlobalDrawer here.
Definition at line 96 of file AbstractApplicationWindow.qml.
◆ overlay
|
read |
Effectively the same as T.Overlay.overlay.
- Remarks
- This property is read-only
Definition at line 151 of file AbstractApplicationWindow.qml.
◆ pageStack
|
read |
This property holds the stack used to allocate the pages and to manage the transitions between them.
Put a container here, such as QtQuick.Controls.StackView.
Definition at line 78 of file AbstractApplicationWindow.qml.
◆ quitAction
|
read |
This property holds a standard action that will quit the application when triggered.
Its properties have the following values:
- Since
- 5.76
- Remarks
- This property is read-only
Definition at line 167 of file AbstractApplicationWindow.qml.
◆ wideScreen
|
read |
This property tells whether the application is in "widescreen" mode.
This is enabled on desktops or horizontal tablets.
- Note
- Different styles can have their own logic for deciding this.
Definition at line 104 of file AbstractApplicationWindow.qml.
Member Function Documentation
◆ applicationWindow()
void AbstractApplicationWindow::applicationWindow | ( | ) |
This function returns application window's object anywhere in the application.
- Returns
- a pointer to this application window can be used anywhere in the application.
◆ hidePassiveNotification()
void AbstractApplicationWindow::hidePassiveNotification | ( | index | = 0 | ) |
This function hides the passive notification at specified index, if any is shown.
- Parameters
-
index Index of the notification to hide. Default is 0 (oldest notification).
◆ showPassiveNotification()
void AbstractApplicationWindow::showPassiveNotification | ( | message | , |
timeout | , | ||
actionText | , | ||
callBack | ) |
This function shows a little passive notification at the bottom of the app window lasting for few seconds, with an optional action button.
- Parameters
-
message The text message to be shown to the user. timeout How long to show the message: possible values: "short", "long" or the number of milliseconds actionText Text in the action button, if any. callBack A JavaScript function that will be executed when the user clicks the button.
The documentation for this class was generated from the following file:
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 18 2024 12:16:21 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.