64 lines
1.4 KiB
QML
64 lines
1.4 KiB
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
import qs.modules.nexus.common
|
|
import qs.modules.nexus.pages
|
|
import qs.modules.nexus.pages.bluetooth
|
|
import qs.modules.nexus.pages.wallandstyle
|
|
|
|
QtObject {
|
|
id: root
|
|
|
|
readonly property list<Component> pageComps: [
|
|
// Appearance
|
|
Component {
|
|
// Wallpaper & style
|
|
StackPage {
|
|
Component {
|
|
WallpaperAndStyle {}
|
|
}
|
|
Component {
|
|
WallpaperSelect {}
|
|
}
|
|
Component {
|
|
WallpaperCategory {}
|
|
}
|
|
Component {
|
|
ColourSelect {}
|
|
}
|
|
}
|
|
},
|
|
|
|
// Connectivity
|
|
Component {
|
|
// Network
|
|
StackPage {
|
|
Component {
|
|
NetworkPage {}
|
|
}
|
|
}
|
|
},
|
|
Component {
|
|
// Bluetooth
|
|
StackPage {
|
|
Component {
|
|
BluetoothPage {}
|
|
}
|
|
Component {
|
|
BtDeviceInfo {}
|
|
}
|
|
Component {
|
|
BluetoothPairing {}
|
|
}
|
|
}
|
|
},
|
|
Component {
|
|
// Audio
|
|
StackPage {
|
|
Component {
|
|
AudioPage {}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|