2017-10-13 15:48:24 +00:00
|
|
|
import QtQuick 2.2
|
|
|
|
import FlightGear.Launcher 1.0 as FG
|
2017-12-05 20:53:47 +00:00
|
|
|
import "."
|
2017-10-13 15:48:24 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: root
|
2017-12-05 20:53:47 +00:00
|
|
|
height: visible ? contentBox.height + (Style.margin * 2) : 0
|
2017-10-13 15:48:24 +00:00
|
|
|
z: 100
|
|
|
|
|
|
|
|
property alias contents: contentBox.children
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: contentBox
|
|
|
|
width: parent.width
|
2017-12-05 20:53:47 +00:00
|
|
|
height: Style.strutSize
|
|
|
|
y: Style.margin
|
2017-10-13 15:48:24 +00:00
|
|
|
color: "white"
|
|
|
|
border.width: 1
|
2017-12-05 20:53:47 +00:00
|
|
|
border.color: Style.minorFrameColor
|
2017-10-13 15:48:24 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|