2025-09-18 15:50:18 +08:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
<ui version="4.0">
|
|
|
|
|
|
<class>alarmEventMainDialog</class>
|
|
|
|
|
|
<widget class="QDialog" name="alarmEventMainDialog">
|
|
|
|
|
|
<property name="geometry">
|
|
|
|
|
|
<rect>
|
|
|
|
|
|
<x>0</x>
|
|
|
|
|
|
<y>0</y>
|
2025-10-17 18:15:06 +08:00
|
|
|
|
<width>1563</width>
|
|
|
|
|
|
<height>904</height>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</rect>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="windowTitle">
|
|
|
|
|
|
<string>Dialog</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="styleSheet">
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<string notr="true">QWidget #contentWidget
|
2025-09-18 15:50:18 +08:00
|
|
|
|
{
|
2025-09-19 17:45:52 +08:00
|
|
|
|
border:1px solid rgb(76,88,105);
|
|
|
|
|
|
background-color: rgb(33, 39, 46);
|
2025-09-18 15:50:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QPushButton
|
|
|
|
|
|
{
|
|
|
|
|
|
color: rgb(250, 250, 250);
|
|
|
|
|
|
font: 700 10pt "微软雅黑";
|
|
|
|
|
|
border:1px solid rgb(67,160,249);
|
|
|
|
|
|
border-radius:2px;
|
|
|
|
|
|
background-color:rgb(24,32,38);
|
|
|
|
|
|
}
|
|
|
|
|
|
QPushButton:hover
|
|
|
|
|
|
{
|
|
|
|
|
|
background-color:rgb(8,11,13);
|
|
|
|
|
|
}
|
|
|
|
|
|
QPushButton:pressed
|
|
|
|
|
|
{
|
|
|
|
|
|
background-color:rgb(24,32,38);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QLabel
|
|
|
|
|
|
{
|
|
|
|
|
|
font: 12pt "黑体";
|
|
|
|
|
|
color: rgb(250, 250, 250);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
QLineEdit
|
|
|
|
|
|
{
|
|
|
|
|
|
font: 12pt "黑体";
|
|
|
|
|
|
color: rgb(250, 250, 250);
|
|
|
|
|
|
padding-left:10px;
|
|
|
|
|
|
border:1px solid rgb(200,200,200);
|
|
|
|
|
|
background-color: rgb(24, 32, 38);
|
|
|
|
|
|
}
|
|
|
|
|
|
QLineEdit:focus
|
|
|
|
|
|
{
|
|
|
|
|
|
border:1px solid rgb(67,160,249);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-17 10:13:02 +08:00
|
|
|
|
QDateTimeEdit
|
|
|
|
|
|
{
|
|
|
|
|
|
font: 12pt "黑体";
|
|
|
|
|
|
color: rgb(250, 250, 250);
|
|
|
|
|
|
background-color: rgb(24, 32, 38);
|
|
|
|
|
|
border:1px solid rgb(200,200,200);
|
2025-11-18 14:26:29 +08:00
|
|
|
|
padding-right:25px; /*给按钮留出空间,否则自定义样式时比如border会干扰按钮的点击*/
|
2025-11-17 10:13:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
QDateTimeEdit:focus
|
|
|
|
|
|
{
|
|
|
|
|
|
border:1px solid rgb(67,160,249);
|
|
|
|
|
|
}
|
|
|
|
|
|
QDateTimeEdit::up-button
|
|
|
|
|
|
{
|
|
|
|
|
|
border: 0px;
|
|
|
|
|
|
margin:2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
QDateTimeEdit::up-button:hover
|
|
|
|
|
|
{
|
|
|
|
|
|
background-color: rgb(54, 62, 74);
|
|
|
|
|
|
}
|
|
|
|
|
|
QDateTimeEdit::up-arrow
|
|
|
|
|
|
{
|
|
|
|
|
|
margin-top:5px;
|
|
|
|
|
|
width:14px;
|
|
|
|
|
|
image: url(:/images/up-arrow.png);
|
|
|
|
|
|
}
|
|
|
|
|
|
QDateTimeEdit::down-button
|
|
|
|
|
|
{
|
|
|
|
|
|
border: 0px;
|
|
|
|
|
|
margin:2px;
|
|
|
|
|
|
}
|
|
|
|
|
|
QDateTimeEdit::down-button:hover
|
|
|
|
|
|
{
|
|
|
|
|
|
background-color: rgb(54, 62, 74);
|
|
|
|
|
|
}
|
|
|
|
|
|
QDateTimeEdit::down-arrow
|
|
|
|
|
|
{
|
|
|
|
|
|
width:14px;
|
|
|
|
|
|
image: url(:/images/down-arrow.png);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-18 15:50:18 +08:00
|
|
|
|
QComboBox
|
|
|
|
|
|
{
|
|
|
|
|
|
font: 12pt "黑体";
|
|
|
|
|
|
color: rgb(250, 250, 250);
|
|
|
|
|
|
padding-left:10px;
|
|
|
|
|
|
background-color: rgb(54, 62, 74);
|
|
|
|
|
|
border: 0px;
|
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
|
}
|
|
|
|
|
|
QComboBox:hover
|
|
|
|
|
|
{
|
|
|
|
|
|
background-color: rgb(72, 83, 99);
|
|
|
|
|
|
}
|
|
|
|
|
|
QComboBox::drop-down
|
|
|
|
|
|
{
|
|
|
|
|
|
border:0px;
|
|
|
|
|
|
}
|
|
|
|
|
|
QComboBox::down-arrow
|
|
|
|
|
|
{
|
|
|
|
|
|
margin-right:10px;
|
|
|
|
|
|
width:14px;
|
|
|
|
|
|
border-image: url(:/images/down-arrow.png);
|
|
|
|
|
|
}
|
|
|
|
|
|
QComboBox QAbstractItemView
|
|
|
|
|
|
{
|
2025-11-25 14:37:17 +08:00
|
|
|
|
font: 11pt "黑体";
|
|
|
|
|
|
color: rgb(230, 230, 230);
|
|
|
|
|
|
background-color:rgb(35,35,35);
|
2025-09-18 15:50:18 +08:00
|
|
|
|
outline: 0px; /*去除选中虚线框 */
|
|
|
|
|
|
border:0px;
|
2025-11-25 14:37:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
QComboBox QAbstractItemView::item
|
|
|
|
|
|
{
|
|
|
|
|
|
padding-top: 2px;
|
|
|
|
|
|
padding-bottom:2px;
|
2025-09-18 15:50:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
QComboBox QAbstractItemView::item:hover
|
|
|
|
|
|
{
|
2025-11-25 14:37:17 +08:00
|
|
|
|
padding-top: 2px;
|
|
|
|
|
|
padding-bottom:2px;
|
2025-09-18 15:50:18 +08:00
|
|
|
|
background-color: rgb(43, 102, 158);
|
|
|
|
|
|
}
|
|
|
|
|
|
QComboBox QAbstractItemView::item:selected
|
|
|
|
|
|
{
|
|
|
|
|
|
background-color: rgba(43, 102, 158, 80);
|
|
|
|
|
|
}</string>
|
|
|
|
|
|
</property>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<layout class="QHBoxLayout" name="hLayout_main">
|
2025-09-18 15:50:18 +08:00
|
|
|
|
<property name="spacing">
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<number>0</number>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
<property name="leftMargin">
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<number>0</number>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
<property name="topMargin">
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<number>0</number>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
<property name="rightMargin">
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<number>0</number>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
<property name="bottomMargin">
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<number>0</number>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
<item>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<widget class="QWidget" name="contentWidget" native="true">
|
|
|
|
|
|
<layout class="QHBoxLayout" name="hLayout_content">
|
|
|
|
|
|
<property name="spacing">
|
|
|
|
|
|
<number>5</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="leftMargin">
|
|
|
|
|
|
<number>30</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="topMargin">
|
|
|
|
|
|
<number>7</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="rightMargin">
|
|
|
|
|
|
<number>7</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="bottomMargin">
|
|
|
|
|
|
<number>7</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<layout class="QVBoxLayout" name="vLayout_central">
|
|
|
|
|
|
<property name="spacing">
|
|
|
|
|
|
<number>15</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="bottomMargin">
|
|
|
|
|
|
<number>0</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<widget class="QWidget" name="topPanel" native="true">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>0</width>
|
|
|
|
|
|
<height>70</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16777215</width>
|
|
|
|
|
|
<height>70</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true">QWidget #topPanel
|
2025-09-18 15:50:18 +08:00
|
|
|
|
{
|
|
|
|
|
|
border:1px solid rgb(67,160,249);
|
|
|
|
|
|
border-left:0px;
|
|
|
|
|
|
border-top:0px;
|
|
|
|
|
|
border-right:0px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
|
|
|
|
|
<property name="topMargin">
|
|
|
|
|
|
<number>15</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="rightMargin">
|
|
|
|
|
|
<number>0</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<widget class="QLabel" name="label_WindowlTitle">
|
|
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true">color: rgb(250, 250, 250);
|
2025-09-18 15:50:18 +08:00
|
|
|
|
font: 700 18pt "微软雅黑";
|
|
|
|
|
|
</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
2025-11-25 11:54:16 +08:00
|
|
|
|
<string>历史事件</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<widget class="QWidget" name="tobBtnsWidget" native="true">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>261</width>
|
|
|
|
|
|
<height>0</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>261</width>
|
|
|
|
|
|
<height>16777215</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<widget class="QPushButton" name="btnConfirmAll">
|
|
|
|
|
|
<property name="geometry">
|
|
|
|
|
|
<rect>
|
2025-12-02 18:37:57 +08:00
|
|
|
|
<x>150</x>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<y>10</y>
|
|
|
|
|
|
<width>101</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</rect>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true">QPushButton
|
|
|
|
|
|
{
|
|
|
|
|
|
icon-size:20px;
|
|
|
|
|
|
icon: url(:/images/icon_checked.png);
|
|
|
|
|
|
}</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string>全部确认</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
<widget class="QPushButton" name="btnSetting">
|
|
|
|
|
|
<property name="geometry">
|
|
|
|
|
|
<rect>
|
2025-12-02 18:37:57 +08:00
|
|
|
|
<x>1170</x>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<y>10</y>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</rect>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true">QPushButton
|
|
|
|
|
|
{
|
|
|
|
|
|
icon-size:20px;
|
|
|
|
|
|
icon: url(:/images/icon_configuration.png);
|
|
|
|
|
|
}</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string>配置</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</layout>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<widget class="QWidget" name="dataFilteringPanel" native="true">
|
2025-09-18 15:50:18 +08:00
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<width>0</width>
|
|
|
|
|
|
<height>81</height>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<width>16777215</width>
|
|
|
|
|
|
<height>81</height>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true">QWidget #dataFilteringPanel
|
2025-09-18 15:50:18 +08:00
|
|
|
|
{
|
2025-09-19 17:45:52 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_2" stretch="1,1,1,1">
|
|
|
|
|
|
<property name="spacing">
|
|
|
|
|
|
<number>60</number>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</property>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<property name="leftMargin">
|
|
|
|
|
|
<number>8</number>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</property>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<property name="topMargin">
|
|
|
|
|
|
<number>0</number>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</property>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<property name="rightMargin">
|
|
|
|
|
|
<number>8</number>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</property>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<property name="bottomMargin">
|
|
|
|
|
|
<number>0</number>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</property>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<item>
|
|
|
|
|
|
<layout class="QGridLayout" name="gridLayout">
|
|
|
|
|
|
<property name="horizontalSpacing">
|
|
|
|
|
|
<number>3</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="verticalSpacing">
|
|
|
|
|
|
<number>10</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<item row="0" column="0">
|
|
|
|
|
|
<widget class="QLabel" name="label_stationName">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string>厂站名称:</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item row="0" column="1">
|
|
|
|
|
|
<widget class="QComboBox" name="conboBox_stationName">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>0</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16777215</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<property name="text">
|
2025-12-01 09:55:07 +08:00
|
|
|
|
<string>所有厂站</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item row="1" column="0">
|
|
|
|
|
|
<widget class="QLabel" name="label_bayName">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string>间隔名称:</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item row="1" column="1">
|
|
|
|
|
|
<widget class="QComboBox" name="conboBox_bayName">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>0</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16777215</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<property name="text">
|
2025-12-01 09:55:07 +08:00
|
|
|
|
<string>所有间隔</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</layout>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<layout class="QGridLayout" name="gridLayout_2">
|
|
|
|
|
|
<property name="horizontalSpacing">
|
|
|
|
|
|
<number>3</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="verticalSpacing">
|
|
|
|
|
|
<number>10</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<item row="0" column="0">
|
|
|
|
|
|
<widget class="QLabel" name="label_eventType">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string>告警类型:</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item row="0" column="1">
|
|
|
|
|
|
<widget class="QComboBox" name="conboBox_eventType">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>0</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16777215</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<property name="text">
|
2025-12-01 09:55:07 +08:00
|
|
|
|
<string>全部</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item row="1" column="0">
|
|
|
|
|
|
<widget class="QLabel" name="label_eventLevel">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string>告警等级:</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item row="1" column="1">
|
|
|
|
|
|
<widget class="QComboBox" name="conboBox_eventLevel">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>0</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16777215</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<property name="text">
|
2025-12-01 09:55:07 +08:00
|
|
|
|
<string>全部</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</layout>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<layout class="QGridLayout" name="gridLayout_3">
|
|
|
|
|
|
<property name="horizontalSpacing">
|
|
|
|
|
|
<number>3</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="verticalSpacing">
|
|
|
|
|
|
<number>10</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<item row="0" column="0">
|
|
|
|
|
|
<widget class="QLabel" name="label_confirmStatus">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string>确认状态:</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item row="0" column="1">
|
|
|
|
|
|
<widget class="QComboBox" name="conboBox_confirmStatus">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>0</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16777215</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<property name="text">
|
2025-12-01 09:55:07 +08:00
|
|
|
|
<string>全部</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
</item>
|
2025-11-25 11:54:16 +08:00
|
|
|
|
<item>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string>未确认</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string>已确认</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</item>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item row="1" column="0">
|
|
|
|
|
|
<widget class="QLabel" name="label_timePeriod_3">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string>告警信息:</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item row="1" column="1">
|
2025-10-17 18:15:06 +08:00
|
|
|
|
<widget class="QLineEdit" name="lineEdit_content">
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>0</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16777215</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</layout>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<layout class="QGridLayout" name="gridLayout_4">
|
|
|
|
|
|
<property name="horizontalSpacing">
|
|
|
|
|
|
<number>3</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="verticalSpacing">
|
|
|
|
|
|
<number>10</number>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<item row="0" column="0">
|
|
|
|
|
|
<widget class="QLabel" name="label_beginTime">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>81</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string>最早时间:</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
2025-11-17 10:13:02 +08:00
|
|
|
|
<item row="1" column="0">
|
|
|
|
|
|
<widget class="QLabel" name="label_endTime">
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
2025-11-17 10:13:02 +08:00
|
|
|
|
<width>81</width>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
2025-11-17 10:13:02 +08:00
|
|
|
|
<width>81</width>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
2025-11-17 10:13:02 +08:00
|
|
|
|
<string>最后时间:</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
2025-11-17 10:13:02 +08:00
|
|
|
|
<item row="0" column="1">
|
|
|
|
|
|
<widget class="QDateTimeEdit" name="beginTime">
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
2025-11-17 10:13:02 +08:00
|
|
|
|
<width>0</width>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
2025-11-17 10:13:02 +08:00
|
|
|
|
<width>16777215</width>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
2025-11-17 10:13:02 +08:00
|
|
|
|
<property name="displayFormat">
|
2025-12-01 09:55:07 +08:00
|
|
|
|
<string>yyyy/MM/dd hh:mm:ss</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item row="1" column="1">
|
2025-11-17 10:13:02 +08:00
|
|
|
|
<widget class="QDateTimeEdit" name="endTime">
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>0</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16777215</width>
|
|
|
|
|
|
<height>31</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
2025-11-17 10:13:02 +08:00
|
|
|
|
<property name="displayFormat">
|
2025-12-01 09:55:07 +08:00
|
|
|
|
<string>yyyy/MM/dd hh:mm:ss</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</layout>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</layout>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<item>
|
2025-11-17 10:13:02 +08:00
|
|
|
|
<widget class="QWidget" name="tableWidget" native="true">
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true">QWidget #tableView
|
2025-09-18 15:50:18 +08:00
|
|
|
|
{
|
2025-09-19 17:45:52 +08:00
|
|
|
|
background-color: rgba(54, 62, 74,90);
|
|
|
|
|
|
}
|
2025-09-18 15:50:18 +08:00
|
|
|
|
|
2025-09-19 17:45:52 +08:00
|
|
|
|
QHeaderView
|
|
|
|
|
|
{
|
|
|
|
|
|
background-color: rgb(11, 26, 33);
|
|
|
|
|
|
}
|
|
|
|
|
|
QHeaderView::section
|
|
|
|
|
|
{
|
2025-09-24 12:10:51 +08:00
|
|
|
|
font: 700 12pt "黑体";
|
2025-09-19 17:45:52 +08:00
|
|
|
|
color: rgb(250, 250, 250);
|
|
|
|
|
|
background-color:transparent;
|
|
|
|
|
|
border:0px;
|
|
|
|
|
|
border-right: 1px solid rgb(60,60,60);
|
|
|
|
|
|
}
|
|
|
|
|
|
QHeaderView::section:horizontal:last
|
|
|
|
|
|
{
|
|
|
|
|
|
border-right: 0px;
|
2025-09-18 15:50:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-19 17:45:52 +08:00
|
|
|
|
QTableView
|
|
|
|
|
|
{
|
|
|
|
|
|
outline:0px;
|
2025-09-24 12:10:51 +08:00
|
|
|
|
border:0px;
|
2025-09-19 17:45:52 +08:00
|
|
|
|
background-color: transparent;
|
2025-09-24 12:10:51 +08:00
|
|
|
|
font: 11pt "黑体";
|
2025-09-19 17:45:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
QTableView::item
|
|
|
|
|
|
{
|
|
|
|
|
|
color: rgb(250, 250, 250);
|
|
|
|
|
|
background-color:transparent;
|
|
|
|
|
|
}
|
|
|
|
|
|
QTableView::item:hover
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
QTableView::item:selected
|
|
|
|
|
|
{
|
|
|
|
|
|
}</string>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</property>
|
2025-11-17 10:13:02 +08:00
|
|
|
|
<layout class="QVBoxLayout" name="tableLayout">
|
2025-09-24 12:10:51 +08:00
|
|
|
|
<property name="topMargin">
|
|
|
|
|
|
<number>15</number>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
2025-09-24 12:10:51 +08:00
|
|
|
|
</layout>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</widget>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</item>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<item>
|
|
|
|
|
|
<widget class="QWidget" name="bottomPanel" native="true">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>0</width>
|
|
|
|
|
|
<height>26</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16777215</width>
|
|
|
|
|
|
<height>26</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true">QPushButton
|
2025-09-18 15:50:18 +08:00
|
|
|
|
{
|
|
|
|
|
|
border:1px solid rgb(100,100,100);
|
|
|
|
|
|
}
|
|
|
|
|
|
QPushButton:hover
|
|
|
|
|
|
{
|
|
|
|
|
|
border:1px solid rgb(67,160,249);
|
|
|
|
|
|
}
|
|
|
|
|
|
QPushButton:pressed
|
|
|
|
|
|
{
|
|
|
|
|
|
border:1px solid rgb(100,100,100);
|
|
|
|
|
|
}</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
<widget class="QPushButton" name="btnFirstPage">
|
|
|
|
|
|
<property name="enabled">
|
|
|
|
|
|
<bool>true</bool>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="geometry">
|
|
|
|
|
|
<rect>
|
|
|
|
|
|
<x>0</x>
|
|
|
|
|
|
<y>0</y>
|
|
|
|
|
|
<width>21</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</rect>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>21</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>21</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="toolTip">
|
|
|
|
|
|
<string>第一页</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true"/>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string/>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="icon">
|
|
|
|
|
|
<iconset resource="../resource/PowerMaster.qrc">
|
|
|
|
|
|
<normaloff>:/images/icon_first.png</normaloff>:/images/icon_first.png</iconset>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="iconSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16</width>
|
|
|
|
|
|
<height>16</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
<widget class="QLabel" name="recordInfo">
|
|
|
|
|
|
<property name="geometry">
|
|
|
|
|
|
<rect>
|
|
|
|
|
|
<x>170</x>
|
|
|
|
|
|
<y>0</y>
|
|
|
|
|
|
<width>131</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</rect>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="styleSheet">
|
2025-09-24 12:10:51 +08:00
|
|
|
|
<string notr="true">font: 10pt "黑体";</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
2025-11-18 14:26:29 +08:00
|
|
|
|
<string>共0条记录</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
<property name="alignment">
|
|
|
|
|
|
<set>Qt::AlignmentFlag::AlignLeading|Qt::AlignmentFlag::AlignLeft|Qt::AlignmentFlag::AlignVCenter</set>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
<widget class="QPushButton" name="btnPreviousPage">
|
|
|
|
|
|
<property name="enabled">
|
|
|
|
|
|
<bool>true</bool>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="geometry">
|
|
|
|
|
|
<rect>
|
|
|
|
|
|
<x>30</x>
|
|
|
|
|
|
<y>0</y>
|
|
|
|
|
|
<width>21</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</rect>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>21</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>21</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="toolTip">
|
|
|
|
|
|
<string>第一页</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true"/>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string/>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="icon">
|
|
|
|
|
|
<iconset resource="../resource/PowerMaster.qrc">
|
|
|
|
|
|
<normaloff>:/images/icon_previous.png</normaloff>:/images/icon_previous.png</iconset>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="iconSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16</width>
|
|
|
|
|
|
<height>16</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
<widget class="QPushButton" name="btnNextPage">
|
|
|
|
|
|
<property name="enabled">
|
|
|
|
|
|
<bool>true</bool>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="geometry">
|
|
|
|
|
|
<rect>
|
|
|
|
|
|
<x>105</x>
|
|
|
|
|
|
<y>0</y>
|
|
|
|
|
|
<width>21</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</rect>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>21</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>21</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="toolTip">
|
|
|
|
|
|
<string>第一页</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true"/>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string/>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="icon">
|
|
|
|
|
|
<iconset resource="../resource/PowerMaster.qrc">
|
|
|
|
|
|
<normaloff>:/images/icon_next.png</normaloff>:/images/icon_next.png</iconset>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="iconSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16</width>
|
|
|
|
|
|
<height>16</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
<widget class="QPushButton" name="btnLastPage">
|
|
|
|
|
|
<property name="enabled">
|
|
|
|
|
|
<bool>true</bool>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="geometry">
|
|
|
|
|
|
<rect>
|
|
|
|
|
|
<x>135</x>
|
|
|
|
|
|
<y>0</y>
|
|
|
|
|
|
<width>21</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</rect>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>21</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>21</width>
|
|
|
|
|
|
<height>21</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="toolTip">
|
|
|
|
|
|
<string>第一页</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true"/>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string/>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="icon">
|
|
|
|
|
|
<iconset resource="../resource/PowerMaster.qrc">
|
|
|
|
|
|
<normaloff>:/images/icon_last.png</normaloff>:/images/icon_last.png</iconset>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="iconSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>16</width>
|
|
|
|
|
|
<height>16</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
2025-11-18 14:26:29 +08:00
|
|
|
|
<widget class="QLineEdit" name="lineEditPage">
|
2025-09-19 17:45:52 +08:00
|
|
|
|
<property name="geometry">
|
|
|
|
|
|
<rect>
|
|
|
|
|
|
<x>60</x>
|
|
|
|
|
|
<y>0</y>
|
|
|
|
|
|
<width>36</width>
|
|
|
|
|
|
<height>20</height>
|
|
|
|
|
|
</rect>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true">font: 11pt "黑体";
|
2025-09-18 15:50:18 +08:00
|
|
|
|
border:0px;
|
|
|
|
|
|
padding:0px;</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string>1</string>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="alignment">
|
|
|
|
|
|
<set>Qt::AlignmentFlag::AlignCenter</set>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</layout>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<layout class="QVBoxLayout" name="vLayout_close">
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<widget class="QPushButton" name="btnClose">
|
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>24</width>
|
|
|
|
|
|
<height>24</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="maximumSize">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>24</width>
|
|
|
|
|
|
<height>24</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
|
<string notr="true">QPushButton
|
2025-09-18 15:50:18 +08:00
|
|
|
|
{
|
|
|
|
|
|
background-color:transparent;
|
|
|
|
|
|
border-image: url(:/images/btn_close_default.png);
|
|
|
|
|
|
}
|
|
|
|
|
|
QPushButton:hover
|
|
|
|
|
|
{
|
|
|
|
|
|
border-image: url(:/images/btn_close_hover.png);
|
|
|
|
|
|
}
|
|
|
|
|
|
QPushButton:pressed
|
|
|
|
|
|
{
|
|
|
|
|
|
border-image: url(:/images/btn_close_default.png);
|
|
|
|
|
|
}</string>
|
2025-09-19 17:45:52 +08:00
|
|
|
|
</property>
|
|
|
|
|
|
<property name="text">
|
|
|
|
|
|
<string/>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="flat">
|
|
|
|
|
|
<bool>true</bool>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
<item>
|
|
|
|
|
|
<spacer name="verticalSpacer">
|
|
|
|
|
|
<property name="orientation">
|
|
|
|
|
|
<enum>Qt::Orientation::Vertical</enum>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
<property name="sizeHint" stdset="0">
|
|
|
|
|
|
<size>
|
|
|
|
|
|
<width>20</width>
|
|
|
|
|
|
<height>40</height>
|
|
|
|
|
|
</size>
|
|
|
|
|
|
</property>
|
|
|
|
|
|
</spacer>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</layout>
|
|
|
|
|
|
</item>
|
|
|
|
|
|
</layout>
|
|
|
|
|
|
</widget>
|
2025-09-18 15:50:18 +08:00
|
|
|
|
</item>
|
|
|
|
|
|
</layout>
|
|
|
|
|
|
</widget>
|
|
|
|
|
|
<resources>
|
|
|
|
|
|
<include location="../resource/PowerMaster.qrc"/>
|
|
|
|
|
|
</resources>
|
|
|
|
|
|
<connections/>
|
|
|
|
|
|
</ui>
|