1
0
Fork 0
flightgear/utils/fgqcanvas/qml/mainMenu.qml
James Turner 2403e95559 FGCanvas tweaks
Enable daemon mode for hands-off operation. Add auto-reconnect
feature for daemon mode, will keep trying to connect to the configured
FGFS instance.
2018-06-26 23:24:02 +01:00

80 lines
1.7 KiB
QML

import QtQuick 2.0
import FlightGear 1.0 as FG
Rectangle {
property bool uiVisible: true
width: 1024
height: 768
color: "black"
property double __uiOpacity: uiVisible ? 1.0 : 0.0
property bool __uiVisible: true
Behavior on __uiOpacity {
SequentialAnimation {
ScriptAction { script: if (uiVisible) __uiVisible = true; }
NumberAnimation { duration: 250 }
ScriptAction { script: if (!uiVisible) __uiVisible = false; }
}
}
Image {
opacity: __uiOpacity * 0.5
source: "qrc:///images/checkerboard"
fillMode: Image.Tile
anchors.fill: parent
visible: __uiVisible
}
MouseArea {
anchors.fill: parent
onClicked: {
uiVisible = !uiVisible;
}
hoverEnabled: uiVisible
onMouseXChanged: idleTimer.restart()
onMouseYChanged: idleTimer.restart()
}
Timer {
id: idleTimer
interval: 1000 * 10
onTriggered: { uiVisible = false; }
}
Repeater {
model: _application.activeCanvases
delegate: CanvasFrame {
id: display
canvas: modelData
showUi: __uiVisible
}
}
VerticalTabPanel {
anchors.fill: parent
tabs: [browsePanel, configPanel, snapshotsPanel]
titles: ["Connect", "Load / Save", "Snapshots"]
visible: __uiVisible
opacity: __uiOpacity
}
Component {
id: browsePanel
BrowsePanel { }
}
Component {
id: configPanel
LoadSavePanel { }
}
Component {
id: snapshotsPanel
SnapshotsPanel { }
}
}