31 lines
754 B
QML
31 lines
754 B
QML
import QtQuick 2.5
|
|
import QtQuick.Controls 2.1
|
|
import QtQuick.Layouts 1.1
|
|
import Nymea 1.0
|
|
import "../components"
|
|
import "../customviews"
|
|
|
|
DevicePageBase {
|
|
id: root
|
|
|
|
ColumnLayout {
|
|
id: contentColumn
|
|
anchors.fill: parent
|
|
spacing: app.margins
|
|
|
|
ExtendedVolumeController {
|
|
Layout.fillWidth: true
|
|
device: root.device
|
|
deviceClass: root.deviceClass
|
|
// visible: deviceClass.interfaces.indexOf("extendedvolumecontroller") >= 0
|
|
}
|
|
|
|
MediaControllerView {
|
|
Layout.fillWidth: true
|
|
device: root.device
|
|
deviceClass: root.deviceClass
|
|
visible: root.deviceClass.interfaces.indexOf("mediacontroller") >= 0
|
|
}
|
|
}
|
|
}
|