17 lines
464 B
QML
17 lines
464 B
QML
import QtQuick
|
|
|
|
QtObject {
|
|
id: shell
|
|
|
|
readonly property DesktopSurface desktop: DesktopSurface {}
|
|
readonly property TopBarSurface topBar: TopBarSurface {}
|
|
readonly property LauncherSurface launcher: LauncherSurface {}
|
|
|
|
readonly property Shortcut closeLauncherShortcut: Shortcut {
|
|
sequence: "Escape"
|
|
enabled: ShellState.launcherOpen
|
|
context: Qt.ApplicationShortcut
|
|
onActivated: ShellState.closeLauncher()
|
|
}
|
|
}
|