mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-12-14 21:23:52 +01:00
439 lines
13 KiB
Plaintext
439 lines
13 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<ui version="4.0">
|
||
|
<class>OPMap_MapOverlayWidget</class>
|
||
|
<widget class="QWidget" name="OPMap_MapOverlayWidget">
|
||
|
<property name="geometry">
|
||
|
<rect>
|
||
|
<x>0</x>
|
||
|
<y>0</y>
|
||
|
<width>287</width>
|
||
|
<height>299</height>
|
||
|
</rect>
|
||
|
</property>
|
||
|
<property name="sizePolicy">
|
||
|
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||
|
<horstretch>0</horstretch>
|
||
|
<verstretch>0</verstretch>
|
||
|
</sizepolicy>
|
||
|
</property>
|
||
|
<property name="windowTitle">
|
||
|
<string/>
|
||
|
</property>
|
||
|
<property name="autoFillBackground">
|
||
|
<bool>false</bool>
|
||
|
</property>
|
||
|
<property name="styleSheet">
|
||
|
<string notr="true">/*background-color: rgba(0, 0, 0, 0);*/
|
||
|
background-color: transparent;
|
||
|
|
||
|
QFrame {
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(110, 110, 110, 255), stop:1 rgba(71, 71, 71, 255));
|
||
|
color: rgba(255, 255, 255, 70);
|
||
|
}
|
||
|
|
||
|
QLabel { /* all label types */
|
||
|
/* background-color: rgba(255, 255, 255, 0); */
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(64, 64, 64, 255), stop:1 rgba(128, 128, 128, 255));
|
||
|
color: rgb(255, 255, 255);
|
||
|
}
|
||
|
|
||
|
QToolButton { /* all types of tool button */
|
||
|
background-color: rgba(255, 255, 255, 0);
|
||
|
color: rgb(255, 255, 255);
|
||
|
/*border-style: none;*/
|
||
|
border: 0px;
|
||
|
}
|
||
|
QToolButton:hover {
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(255, 160, 0, 255), stop:1 rgba(160, 100, 0, 255));
|
||
|
color: rgb(255, 255, 255);
|
||
|
}
|
||
|
QToolButton:pressed {
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(48, 48, 48, 255), stop:1 rgba(120, 120, 120, 255));
|
||
|
color: rgb(255, 255, 255);
|
||
|
}
|
||
|
|
||
|
QToolButton:checked {
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(48, 48, 48, 255), stop:1 rgba(120, 120, 120, 255));
|
||
|
color: rgb(255, 255, 255);
|
||
|
}
|
||
|
|
||
|
QSlider::groove:horizontal {
|
||
|
border: none;
|
||
|
height: 4px;
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(48, 48, 48, 255), stop:1 rgba(80, 80, 80, 255));
|
||
|
margin: 2px 0;
|
||
|
}
|
||
|
QSlider::handle:horizontal {
|
||
|
border: 1px solid #5c5c5c;
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(255, 255, 255, 255), stop:1 rgba(128, 128, 128, 255));
|
||
|
width: 24px;
|
||
|
margin: -2px 0;
|
||
|
border-radius: 3px;
|
||
|
}
|
||
|
|
||
|
QComboBox {
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(48, 48, 48, 255), stop:1 rgba(120, 120, 120, 255));
|
||
|
color: rgb(255, 255, 255);
|
||
|
}
|
||
|
QComboBox:hover {
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(48, 48, 48, 255), stop:1 rgba(120, 120, 120, 255));
|
||
|
background-color: rgb(197, 138, 0);
|
||
|
}
|
||
|
QComboBox::down-arrow {
|
||
|
image: url(:/opmap/images/combobox_down_arrow.png);
|
||
|
}
|
||
|
QComboBox:drop-down {
|
||
|
subcontrol-origin: padding;
|
||
|
subcontrol-position: top right;
|
||
|
border-left-style: none;
|
||
|
border-top-right-radius: 1px;
|
||
|
border-bottom-right-radius: 1px;
|
||
|
}
|
||
|
|
||
|
QToolTip {
|
||
|
background-color: white;
|
||
|
color: black;
|
||
|
border: 1px solid black;
|
||
|
padding: 5px;
|
||
|
border-radius: 2px;
|
||
|
/* opacity: 170; */
|
||
|
}
|
||
|
</string>
|
||
|
</property>
|
||
|
<layout class="QVBoxLayout" name="verticalLayout">
|
||
|
<property name="spacing">
|
||
|
<number>0</number>
|
||
|
</property>
|
||
|
<property name="leftMargin">
|
||
|
<number>0</number>
|
||
|
</property>
|
||
|
<property name="rightMargin">
|
||
|
<number>0</number>
|
||
|
</property>
|
||
|
<item>
|
||
|
<layout class="QGridLayout" name="gridLayout">
|
||
|
<property name="rightMargin">
|
||
|
<number>10</number>
|
||
|
</property>
|
||
|
<item row="0" column="3" rowspan="2">
|
||
|
<widget class="QSlider" name="verticalSlider">
|
||
|
<property name="sizePolicy">
|
||
|
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||
|
<horstretch>0</horstretch>
|
||
|
<verstretch>0</verstretch>
|
||
|
</sizepolicy>
|
||
|
</property>
|
||
|
<property name="minimumSize">
|
||
|
<size>
|
||
|
<width>0</width>
|
||
|
<height>120</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
<property name="maximumSize">
|
||
|
<size>
|
||
|
<width>16777215</width>
|
||
|
<height>120</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
<property name="styleSheet">
|
||
|
<string notr="true">QSlider::handle:vertical {
|
||
|
border: 1px solid #5c5c5c;
|
||
|
background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(128, 128, 128, 255), stop:1 rgba(255, 255, 255, 255));
|
||
|
width: 24px;
|
||
|
height: 20px;
|
||
|
margin: -2px 0;
|
||
|
border-radius: 3px;
|
||
|
}
|
||
|
|
||
|
</string>
|
||
|
</property>
|
||
|
<property name="minimum">
|
||
|
<number>2</number>
|
||
|
</property>
|
||
|
<property name="maximum">
|
||
|
<number>19</number>
|
||
|
</property>
|
||
|
<property name="pageStep">
|
||
|
<number>1</number>
|
||
|
</property>
|
||
|
<property name="tracking">
|
||
|
<bool>true</bool>
|
||
|
</property>
|
||
|
<property name="orientation">
|
||
|
<enum>Qt::Vertical</enum>
|
||
|
</property>
|
||
|
<property name="invertedAppearance">
|
||
|
<bool>false</bool>
|
||
|
</property>
|
||
|
<property name="invertedControls">
|
||
|
<bool>false</bool>
|
||
|
</property>
|
||
|
</widget>
|
||
|
</item>
|
||
|
<item row="0" column="1">
|
||
|
<widget class="QDial" name="dial">
|
||
|
<property name="sizePolicy">
|
||
|
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||
|
<horstretch>0</horstretch>
|
||
|
<verstretch>0</verstretch>
|
||
|
</sizepolicy>
|
||
|
</property>
|
||
|
<property name="minimumSize">
|
||
|
<size>
|
||
|
<width>50</width>
|
||
|
<height>50</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
<property name="maximumSize">
|
||
|
<size>
|
||
|
<width>50</width>
|
||
|
<height>50</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
<property name="maximum">
|
||
|
<number>360</number>
|
||
|
</property>
|
||
|
<property name="value">
|
||
|
<number>180</number>
|
||
|
</property>
|
||
|
<property name="wrapping">
|
||
|
<bool>true</bool>
|
||
|
</property>
|
||
|
<property name="notchTarget">
|
||
|
<double>1.000000000000000</double>
|
||
|
</property>
|
||
|
<property name="notchesVisible">
|
||
|
<bool>false</bool>
|
||
|
</property>
|
||
|
</widget>
|
||
|
</item>
|
||
|
<item row="0" column="0">
|
||
|
<spacer name="horizontalSpacer_2">
|
||
|
<property name="orientation">
|
||
|
<enum>Qt::Horizontal</enum>
|
||
|
</property>
|
||
|
<property name="sizeHint" stdset="0">
|
||
|
<size>
|
||
|
<width>40</width>
|
||
|
<height>20</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
</spacer>
|
||
|
</item>
|
||
|
<item row="0" column="2">
|
||
|
<spacer name="horizontalSpacer_4">
|
||
|
<property name="orientation">
|
||
|
<enum>Qt::Horizontal</enum>
|
||
|
</property>
|
||
|
<property name="sizeType">
|
||
|
<enum>QSizePolicy::Fixed</enum>
|
||
|
</property>
|
||
|
<property name="sizeHint" stdset="0">
|
||
|
<size>
|
||
|
<width>20</width>
|
||
|
<height>20</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
</spacer>
|
||
|
</item>
|
||
|
</layout>
|
||
|
</item>
|
||
|
<item>
|
||
|
<spacer name="verticalSpacer_2">
|
||
|
<property name="orientation">
|
||
|
<enum>Qt::Vertical</enum>
|
||
|
</property>
|
||
|
<property name="sizeType">
|
||
|
<enum>QSizePolicy::Fixed</enum>
|
||
|
</property>
|
||
|
<property name="sizeHint" stdset="0">
|
||
|
<size>
|
||
|
<width>20</width>
|
||
|
<height>40</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
</spacer>
|
||
|
</item>
|
||
|
<item>
|
||
|
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||
|
<property name="spacing">
|
||
|
<number>0</number>
|
||
|
</property>
|
||
|
<item>
|
||
|
<widget class="QToolButton" name="toolButtonLeftPanel">
|
||
|
<property name="styleSheet">
|
||
|
<string notr="true">QToolButton { /* all types of tool button */
|
||
|
background-color: rgba(255, 255, 255, 0);
|
||
|
color: rgb(255, 255, 255);
|
||
|
/*border-style: none;*/
|
||
|
border: 0px;
|
||
|
}
|
||
|
QToolButton:hover {
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(255, 160, 0, 255), stop:1 rgba(160, 100, 0, 255));
|
||
|
color: rgb(255, 255, 255);
|
||
|
}
|
||
|
QToolButton:pressed {
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(48, 48, 48, 255), stop:1 rgba(120, 120, 120, 255));
|
||
|
color: rgb(255, 255, 255);
|
||
|
}
|
||
|
|
||
|
QToolButton:checked {
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(48, 48, 48, 255), stop:1 rgba(120, 120, 120, 255));
|
||
|
color: rgb(255, 255, 255);
|
||
|
}
|
||
|
</string>
|
||
|
</property>
|
||
|
<property name="text">
|
||
|
<string/>
|
||
|
</property>
|
||
|
<property name="icon">
|
||
|
<iconset resource="opmap.qrc">
|
||
|
<normaloff>:/opmap/images/left_but.png</normaloff>:/opmap/images/left_but.png</iconset>
|
||
|
</property>
|
||
|
<property name="iconSize">
|
||
|
<size>
|
||
|
<width>17</width>
|
||
|
<height>48</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
</widget>
|
||
|
</item>
|
||
|
<item>
|
||
|
<spacer name="horizontalSpacer">
|
||
|
<property name="orientation">
|
||
|
<enum>Qt::Horizontal</enum>
|
||
|
</property>
|
||
|
<property name="sizeHint" stdset="0">
|
||
|
<size>
|
||
|
<width>40</width>
|
||
|
<height>20</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
</spacer>
|
||
|
</item>
|
||
|
<item>
|
||
|
<widget class="QToolButton" name="toolButtonRightPanel">
|
||
|
<property name="styleSheet">
|
||
|
<string notr="true">QToolButton { /* all types of tool button */
|
||
|
background-color: rgba(255, 255, 255, 0);
|
||
|
color: rgb(255, 255, 255);
|
||
|
/*border-style: none;*/
|
||
|
border: 0px;
|
||
|
}
|
||
|
QToolButton:hover {
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(255, 160, 0, 255), stop:1 rgba(160, 100, 0, 255));
|
||
|
color: rgb(255, 255, 255);
|
||
|
}
|
||
|
QToolButton:pressed {
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(48, 48, 48, 255), stop:1 rgba(120, 120, 120, 255));
|
||
|
color: rgb(255, 255, 255);
|
||
|
}
|
||
|
|
||
|
QToolButton:checked {
|
||
|
background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(48, 48, 48, 255), stop:1 rgba(120, 120, 120, 255));
|
||
|
color: rgb(255, 255, 255);
|
||
|
}
|
||
|
</string>
|
||
|
</property>
|
||
|
<property name="text">
|
||
|
<string/>
|
||
|
</property>
|
||
|
<property name="icon">
|
||
|
<iconset resource="opmap.qrc">
|
||
|
<normaloff>:/opmap/images/right_but.png</normaloff>:/opmap/images/right_but.png</iconset>
|
||
|
</property>
|
||
|
<property name="iconSize">
|
||
|
<size>
|
||
|
<width>17</width>
|
||
|
<height>48</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
</widget>
|
||
|
</item>
|
||
|
</layout>
|
||
|
</item>
|
||
|
<item>
|
||
|
<spacer name="verticalSpacer">
|
||
|
<property name="orientation">
|
||
|
<enum>Qt::Vertical</enum>
|
||
|
</property>
|
||
|
<property name="sizeHint" stdset="0">
|
||
|
<size>
|
||
|
<width>20</width>
|
||
|
<height>40</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
</spacer>
|
||
|
</item>
|
||
|
<item>
|
||
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||
|
<property name="spacing">
|
||
|
<number>20</number>
|
||
|
</property>
|
||
|
<property name="leftMargin">
|
||
|
<number>20</number>
|
||
|
</property>
|
||
|
<property name="rightMargin">
|
||
|
<number>20</number>
|
||
|
</property>
|
||
|
<item>
|
||
|
<widget class="QLabel" name="labelUAV_2">
|
||
|
<property name="styleSheet">
|
||
|
<string notr="true">QLabel { /* all label types */
|
||
|
/* background-color: rgba(0, 0, 0, 0); */
|
||
|
background-color: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, stop:0.778409 rgba(0, 0, 0, 176), stop:1 rgba(0, 0, 0, 0));
|
||
|
color: rgb(255, 255, 255);
|
||
|
|
||
|
}</string>
|
||
|
</property>
|
||
|
<property name="frameShape">
|
||
|
<enum>QFrame::NoFrame</enum>
|
||
|
</property>
|
||
|
<property name="text">
|
||
|
<string>TextLabel</string>
|
||
|
</property>
|
||
|
<property name="margin">
|
||
|
<number>8</number>
|
||
|
</property>
|
||
|
</widget>
|
||
|
</item>
|
||
|
<item>
|
||
|
<spacer name="horizontalSpacer_3">
|
||
|
<property name="orientation">
|
||
|
<enum>Qt::Horizontal</enum>
|
||
|
</property>
|
||
|
<property name="sizeHint" stdset="0">
|
||
|
<size>
|
||
|
<width>40</width>
|
||
|
<height>20</height>
|
||
|
</size>
|
||
|
</property>
|
||
|
</spacer>
|
||
|
</item>
|
||
|
<item>
|
||
|
<widget class="QLabel" name="labelMouse">
|
||
|
<property name="styleSheet">
|
||
|
<string notr="true">QLabel { /* all label types */
|
||
|
/* background-color: rgba(0, 0, 0, 0); */
|
||
|
background-color: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:0.5, fx:0.5, fy:0.5, stop:0.778409 rgba(0, 0, 0, 176), stop:1 rgba(0, 0, 0, 0));
|
||
|
color: rgb(255, 255, 255);
|
||
|
}</string>
|
||
|
</property>
|
||
|
<property name="text">
|
||
|
<string>TextLabel</string>
|
||
|
</property>
|
||
|
<property name="margin">
|
||
|
<number>8</number>
|
||
|
</property>
|
||
|
</widget>
|
||
|
</item>
|
||
|
</layout>
|
||
|
</item>
|
||
|
</layout>
|
||
|
</widget>
|
||
|
<resources>
|
||
|
<include location="opmap.qrc"/>
|
||
|
</resources>
|
||
|
<connections/>
|
||
|
</ui>
|