ApplicationWindow QML Type

Provides a root window for applications More...

Import Statement: import quey.ui 0.1
Inherits:

ApplicationWindow

Inherited By:

ApplicationWindow

Detailed Description

It is recommended to use either ApplicationWindow or ApplicationView as root component for any Quey UI based application.

ApplicationWindow provides layer components neccessary to display popups like Dialog or Menu. Those layers have a z value of 25. Please keep the z values of your items under this value unless you want those items to be displayed above popups.

import QtQuick 2.4
import quey.ui 0.1

ApplicationWindow {
    width: Units.dp(640)
    height: Units.dp(480)

    Button {
        anchors.centerIn: parent
        text: "Hello World"
    }
}

Also see ApplicationView.