You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.6 KiB
49 lines
1.6 KiB
import QtQuick 2.3 |
|
import QtQuick.Controls 1.2 |
|
import QtQuick.Layouts 1.2 |
|
import QtQuick.Dialogs 1.2 |
|
|
|
import QGroundControl 1.0 |
|
import QGroundControl.ScreenTools 1.0 |
|
import QGroundControl.Controls 1.0 |
|
import QGroundControl.FactControls 1.0 |
|
import QGroundControl.Palette 1.0 |
|
|
|
// Toolbar for Plan View |
|
Rectangle { |
|
id: _root |
|
color: qgcPal.globalTheme === QGCPalette.Light ? Qt.rgba(1,1,1,0.8) : Qt.rgba(0,0,0,0.75) |
|
anchors.fill: parent |
|
/// Bottom single pixel divider |
|
Rectangle { |
|
anchors.left: parent.left |
|
anchors.right: parent.right |
|
anchors.bottom: parent.bottom |
|
height: 1 |
|
color: "black" |
|
visible: qgcPal.globalTheme === QGCPalette.Light |
|
} |
|
RowLayout { |
|
anchors.bottomMargin: 1 |
|
anchors.rightMargin: ScreenTools.defaultFontPixelWidth / 2 |
|
anchors.fill: parent |
|
spacing: ScreenTools.defaultFontPixelWidth * 2 |
|
QGCToolBarButton { |
|
id: settingsButton |
|
Layout.fillHeight: true |
|
icon.source: "/qmlimages/PaperPlane.svg" |
|
logo: true |
|
checked: false |
|
onClicked: { |
|
checked = false |
|
mainWindow.showFlyView() |
|
} |
|
} |
|
Loader { |
|
source: "PlanToolBarIndicators.qml" |
|
Layout.fillWidth: true |
|
Layout.fillHeight: true |
|
} |
|
} |
|
} |
|
|
|
|