210 lines
4.7 KiB
XML
210 lines
4.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ui version="4.0">
|
|
<class>TimedDataCollection_ui</class>
|
|
<widget class="QDialog" name="TimedDataCollection_ui">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>1299</width>
|
|
<height>658</height>
|
|
</rect>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string>定时采集</string>
|
|
</property>
|
|
<property name="styleSheet">
|
|
<string notr="true">QWidget #contentWidget
|
|
{
|
|
background: #192770;
|
|
/*border-radius: 8px 8px 8px 8px;*/
|
|
border: 1px solid #2f6bff;
|
|
}
|
|
|
|
QLineEdit {
|
|
background-color: #3856B8;
|
|
color: #e6eeff;
|
|
border: 1px solid #2f6bff;
|
|
border-radius: 6px;
|
|
padding: 4px 8px;
|
|
min-width: 70px;
|
|
min-height: 20px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
QLabel
|
|
{
|
|
background: #243A82;
|
|
color: rgb(255, 255, 255);
|
|
border: 1px solid #2f6bff;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
QPushButton
|
|
{
|
|
/*width: 172px;
|
|
height: 56px;*/
|
|
font: 10pt "新宋体";
|
|
background-color: qlineargradient(
|
|
spread:pad,
|
|
x1:0.5, y1:0, x2:0.5, y2:1,
|
|
stop:0 #283D86,
|
|
stop:1 #0F1A40
|
|
);
|
|
color: white;
|
|
border: none;
|
|
padding: 8px 8px;
|
|
border-radius: 4px;
|
|
}
|
|
QPushButton:hover
|
|
{
|
|
background-color: qlineargradient(
|
|
spread:pad,
|
|
x1:0, y1:0, x2:1, y2:0,
|
|
stop:0 #3A4875,
|
|
stop:1 #5F6B91
|
|
);
|
|
}
|
|
/* 按下时的效果 */
|
|
QPushButton:pressed
|
|
{
|
|
background-color: qlineargradient(
|
|
spread:pad,
|
|
x1:0, y1:0, x2:1, y2:0,
|
|
stop:0 #1A254F,
|
|
stop:1 #3A466B
|
|
);
|
|
/* 可选:添加下压效果 */
|
|
padding-top: 9px;
|
|
padding-bottom: 7px;
|
|
}
|
|
</string>
|
|
</property>
|
|
<layout class="QGridLayout" name="gridLayout_2">
|
|
<property name="leftMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="topMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="rightMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="bottomMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="spacing">
|
|
<number>0</number>
|
|
</property>
|
|
<item row="0" column="0">
|
|
<widget class="QWidget" name="contentWidget" native="true">
|
|
<layout class="QGridLayout" name="gridLayout">
|
|
<item row="0" column="0" colspan="3">
|
|
<widget class="QTreeView" name="taskTreeView">
|
|
<property name="styleSheet">
|
|
<string notr="true">QTreeView
|
|
{
|
|
background-color: #121945;
|
|
border: 0px solid #444;
|
|
}
|
|
|
|
QHeaderView::section
|
|
{
|
|
background-color: #121945;
|
|
color: #ACCDFF;
|
|
|
|
padding: 6px;
|
|
}
|
|
|
|
QScrollBar:vertical {
|
|
background: #0b1440;
|
|
width: 10px;
|
|
border: 1px solid #1f2a5a;
|
|
}
|
|
|
|
QScrollBar:horizontal {
|
|
background: #0b1440;
|
|
height: 10px;
|
|
border: 1px solid #1f2a5a;
|
|
}
|
|
|
|
QScrollBar::handle:vertical,
|
|
QScrollBar::handle:horizontal {
|
|
background: #3a5bd6;
|
|
border-radius: 4px;
|
|
min-height: 20px;
|
|
min-width: 20px;
|
|
}
|
|
|
|
QScrollBar::handle:vertical:hover,
|
|
QScrollBar::handle:horizontal:hover {
|
|
background: #4f73ff;
|
|
}
|
|
</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="1" column="0">
|
|
<widget class="QLineEdit" name="taskFileSelect_lineEdit">
|
|
<property name="readOnly">
|
|
<bool>true</bool>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="1" column="1">
|
|
<widget class="QPushButton" name="taskFileSelect_btn">
|
|
<property name="text">
|
|
<string>...</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="2" column="1">
|
|
<widget class="QPushButton" name="start_btn">
|
|
<property name="text">
|
|
<string>开始调度</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="2" column="2">
|
|
<widget class="QPushButton" name="expandAll_btn">
|
|
<property name="text">
|
|
<string>展开</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="3" column="1">
|
|
<widget class="QPushButton" name="stop_btn">
|
|
<property name="text">
|
|
<string>停止调度</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="3" column="2">
|
|
<widget class="QPushButton" name="collapseAll_btn">
|
|
<property name="text">
|
|
<string>折叠</string>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
<item row="4" column="0" colspan="3">
|
|
<widget class="QLabel" name="statusLabel">
|
|
<property name="styleSheet">
|
|
<string notr="true"/>
|
|
</property>
|
|
<property name="text">
|
|
<string>任务统计</string>
|
|
</property>
|
|
<property name="alignment">
|
|
<set>Qt::AlignCenter</set>
|
|
</property>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
<resources/>
|
|
<connections/>
|
|
</ui>
|