Window
#include <bb/cascades/Window>
Provides access to native window properties and state.
The Window for the application is accessible through the Application::mainWindow property.
BlackBerry 10.0.0
Inheritance
| bb::cascades::BaseObject | ||
| bb::cascades::Window | ||
QML properties
| handle | : QVariant [read-only] |
| groupId | : QString [read-only] |
| state | : bb::cascades::WindowState::Type [read-only] |
| screenIdleMode | : bb::cascades::ScreenIdleMode::Type |
| objectName | : QString |
| parent | : QObject [read-only] |
QML signals
Properties Index
| QVariant | handle [read-only] |
| QString | groupId [read-only] |
| bb::cascades::WindowState::Type | state [read-only] |
| bb::cascades::ScreenIdleMode::Type | screenIdleMode |
| QString | objectName |
| QObject | parent [read-only] |
Public Functions Index
| virtual | ~Window () |
| screen_window_t | handle () const |
| QString | groupId () const |
| bb::cascades::WindowState::Type | state () const |
| bb::cascades::ScreenIdleMode::Type | screenIdleMode () const |
| void | setObjectName (const QString &name) |
| virtual Q_INVOKABLE QString | toDebugString () const |
Protected Functions Index
Only has inherited protected functions
| BaseObject (QObject *parent=0) |
Public Slots Index
| void | setScreenIdleMode (bb::cascades::ScreenIdleMode::Type newScreenIdleMode) |
Signals Index
| void | posted () |
| void | stateChanged (bb::cascades::WindowState::Type newState) |
| void | screenIdleModeChanged (bb::cascades::ScreenIdleMode::Type newScreenIdleMode) |
| void | creationCompleted () |
| void | objectNameChanged (const QString &objectName) |
Properties
QVariant
Property specifying the window handle for this window.
The value of this property can be safely converted to screen_window_t type.
BlackBerry 10.0.0
bb::cascades::WindowState::Type
Property indicating the state of the window.
A stateChanged() signal is emitted when the value of this property changes.
In addition a posted() signal is emitted when window changes its state to WindowState::Posted.
The default value is WindowState::Created.
BlackBerry 10.0.0
bb::cascades::ScreenIdleMode::Type
Property indicating the idle behavior of the screen when this window is displayed.
The window may allow either the normal idle behavior with ScreenIdleMode::Normal, or it can prevent idle behavior with ScreenIdleMode::KeepAwake.
The default value is ScreenIdleMode::Normal.
BlackBerry 10.0.0
QString
This property is overridden from QObject.
As the objectName property is overridden from the QObject class, this signal will not be emitted if setObjectName() function is called directly on QObject.
The default value of this property is QString::null.
QObject::objectName().
BlackBerry 10.0.0
QObject
A read-only property that represents this object's parent.
The parent of an object is specified using QObject::setParent(QObject*). The purpose of the property is to expose the object's parent to QML.
This property is read-only to prevent modifications from QML, where typically the parent is declaratively set. In C++ code, the parent can be explicitly set using QObject::setParent(QObject*), or implicitly set by adding it to a visual container.
The default value of this property is 0.
BlackBerry 10.0.0
Public Functions
virtual
Destructor.
Does not affect the represented native window.
BlackBerry 10.0.0
screen_window_t
Returns the window handle for this window.
A window handle (can be casted to screen_window_t type)
BlackBerry 10.0.0
QString
Returns the window group for this window.
A string representing window group
BlackBerry 10.0.0
bb::cascades::WindowState::Type
Returns the state of the window.
The state of the window
BlackBerry 10.0.0
bb::cascades::ScreenIdleMode::Type
Returns the current mode the window is using to control the idle behavior of the screen.
Typically, this is to leave the behavior unchanged with ScreenIdleMode::Normal.
The value of the current idle mode behavior. The returned value will be either ScreenIdle Mode::Normal, ScreenIdleMode::KeepAwake., or ScreenIdleMode::KeepAwake.
BlackBerry 10.0.0
void 
Sets the objectName property.
| Parameters | |
|---|---|
| name |
The new name for the object. |
BlackBerry 10.0.0
virtual Q_INVOKABLE QString 
Returns a debug string representing this object.
A debug string for the object.
BlackBerry 10.0.0
Protected Functions
(Only has inherited protected functions)
Constructs an instance of BaseObject's subclass.
| Parameters | |
|---|---|
| parent |
An optional parent, defaults to 0. |
BlackBerry 10.0.0
Public Slots
void
Controls the idle behavior of the screen when this window is displayed.
Typically the idle behavior is to fade the display, but this may also include other behaviors like locking the device.
| Parameters | |
|---|---|
| newScreenIdleMode |
The idle behavior to use when this window is displayed. Must be one of ScreenIdleMode::Normal, or ScreenIdleMode::KeepAwake. |
BlackBerry 10.0.0
Signals
void
Emitted when the window state becomes WindowState::Posted.
After this signal is emitted it is safe to use Window's groupId and handle with the APIs which require the window to be posted (such as for use with Cards).
BlackBerry 10.0.0
void
Emitted when the state of the window changes.
Due to a work around for a Qt Core issue with accessing enums from QML the argument of this signal doesn't follow naming convention for signals in which the signal arguments are typically named to match the associated property's name. Use the object's property to access current property value instead of the signal argument to avoid runtime errors (i.e. use state instead of newState).
| Parameters | |
|---|---|
| newState |
the new state of the window |
BlackBerry 10.0.0
void
Emitted when the idle mode behavior is changed.
Due to a work around for a Qt Core issue with accessing enums from QML the argument of this signal doesn't follow naming convention for signals in which the signal arguments are typically named to match the associated property's name. Use the object's property to access current property value instead of the signal argument to avoid runtime errors (i.e. use screenIdleMode instead of newScreenIdleMode).
| Parameters | |
|---|---|
| newScreenIdleMode |
The new idle behavior for the screen when this window is displayed. |
BlackBerry 10.0.0
void 
This signal is emitted only when this object is instantiated as a result of loading a QML document and creating the root node, or when an object is being constructed using its builder class.
This signal is emitted only when this object is instantiated as a result of loading a QML document and creating the root node (only after the root component that caused this instantiation has completed construction), or when the object is being constructed from its builder class. This signal is emitted to indicate that the construction and initialization of the object has been completed, the properties are initialized, and any QML binding values have been assigned to the object.
This signal is not emitted when the object is constructed from C++ using the constructor. If the object is constructed using its builder class, the signal is emitted when the the builder class returns the fully constructed object.
This signal can be used when there is an activity that needs to be performed, such as a property state integrity verification after the object is instantiated from a QML document or a builder, but before control is returned to the application.
BlackBerry 10.0.0
void 
This signal is emitted when the objectName property is changed.
BlackBerry 10.0.0