22 lines
414 B
QML
22 lines
414 B
QML
import Qt 4.7
|
|
import QtDesktop 0.1
|
|
|
|
Item {
|
|
id: main
|
|
state: initialViewMode
|
|
|
|
ScrollArea {
|
|
id: scrollArea
|
|
anchors.fill: parent
|
|
frame: false
|
|
|
|
contentHeight: sensorList.height
|
|
contentWidth: sensorList.width
|
|
|
|
SensorList {
|
|
id: sensorList
|
|
property int calculatedWidth: main.width-scrollArea.verticalScrollBar.width
|
|
width: (calculatedWidth < minimumWidth ? minimumWidth : calculatedWidth)
|
|
}
|
|
}
|
|
}
|