Files
EJM_Display/Pages/P10_IntelligentPage.ui

280 lines
6.8 KiB
Plaintext
Raw Normal View History

2025-08-20 23:06:28 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>P10_IntelligentPage</class>
<widget class="QWidget" name="P10_IntelligentPage">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1024</width>
<height>576</height>
</rect>
</property>
2025-09-15 22:28:43 +08:00
<property name="minimumSize">
<size>
<width>1024</width>
<height>576</height>
</size>
</property>
2025-08-20 23:06:28 +08:00
<property name="windowTitle">
<string>Form</string>
</property>
2025-09-15 22:28:43 +08:00
<widget class="QScrollArea" name="scrollArea">
2025-08-20 23:06:28 +08:00
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
2025-09-15 22:28:43 +08:00
<width>900</width>
<height>576</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">border-image: url(:/Frames/Frames/Main.png);</string>
</property>
<property name="widgetResizable">
<bool>true</bool>
</property>
<widget class="QWidget" name="scrollAreaWidgetContents">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>900</width>
<height>576</height>
</rect>
</property>
<widget class="QLabel" name="videoLabel">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>891</width>
<height>561</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>788</width>
<height>500</height>
</size>
</property>
<property name="styleSheet">
<string notr="true">font: 87 38pt &quot;思源黑体 Heavy&quot;;
color: rgb(0, 255, 255);</string>
</property>
<property name="text">
<string/>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</widget>
</widget>
<widget class="QPushButton" name="But_Atlas_1">
<property name="geometry">
<rect>
<x>910</x>
<y>30</y>
<width>101</width>
<height>40</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">
QPushButton{
/*常态状态下的按钮样式*/
border-image: url(:/Button/Button/button_Blue.png);
font: 87 14pt &quot;思源黑体 Heavy&quot;;
color: rgb(0, 255, 255);
}
QPushButton:hover {
/*鼠标悬浮在按钮上时,设置样式*/
border-image: url(:/Button/Button/button_Green.png);
}
/*点击按钮时,设置样式*/
QPushButton:pressed {
/*设置点击按钮时按钮的样式*/
border-image: url(:/Button/Button/button_qing.png);
}
</string>
</property>
<property name="text">
<string>实物图</string>
</property>
</widget>
<widget class="QPushButton" name="But_Magnify">
<property name="geometry">
<rect>
<x>940</x>
<y>160</y>
<width>41</width>
<height>40</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">
QPushButton{
/*常态状态下的按钮样式*/
border-image: url(:/Icos/Icos/icon_magnify1.png);
font: 87 14pt &quot;思源黑体 Heavy&quot;;
color: rgb(0, 255, 255);
}
QPushButton:hover {
/*鼠标悬浮在按钮上时,设置样式*/
border-image: url(:/Icos/Icos/icon_magnify2.png);
}
/*点击按钮时,设置样式*/
QPushButton:pressed {
/*设置点击按钮时按钮的样式*/
border-image: url(:/Icos/Icos/icon_magnify2.png);
}</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="But_Atlas_2">
<property name="geometry">
<rect>
<x>910</x>
<y>80</y>
<width>101</width>
<height>40</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">
QPushButton{
/*常态状态下的按钮样式*/
border-image: url(:/Button/Button/button_Blue.png);
font: 87 14pt &quot;思源黑体 Heavy&quot;;
color: rgb(0, 255, 255);
}
QPushButton:hover {
/*鼠标悬浮在按钮上时,设置样式*/
border-image: url(:/Button/Button/button_Green.png);
}
/*点击按钮时,设置样式*/
QPushButton:pressed {
/*设置点击按钮时按钮的样式*/
border-image: url(:/Button/Button/button_qing.png);
}
</string>
</property>
<property name="text">
<string>热量图</string>
</property>
</widget>
<widget class="QPushButton" name="But_Reduce">
<property name="geometry">
<rect>
<x>940</x>
<y>290</y>
<width>41</width>
<height>40</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">
QPushButton{
/*常态状态下的按钮样式*/
border-image: url(:/Icos/Icos/icon_reduce1.png);
font: 87 14pt &quot;思源黑体 Heavy&quot;;
color: rgb(0, 255, 255);
}
QPushButton:hover {
/*鼠标悬浮在按钮上时,设置样式*/
border-image: url(:/Icos/Icos/icon_reduce2.png);
}
/*点击按钮时,设置样式*/
QPushButton:pressed {
/*设置点击按钮时按钮的样式*/
border-image: url(:/Icos/Icos/icon_reduce2.png);
}</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="Label_Zoom">
<property name="geometry">
<rect>
<x>900</x>
<y>220</y>
<width>120</width>
<height>40</height>
2025-08-20 23:06:28 +08:00
</rect>
</property>
<property name="styleSheet">
2025-09-15 22:28:43 +08:00
<string notr="true">color: rgb(0, 255, 255);
font: 87 22pt &quot;思源黑体 Heavy&quot;;</string>
2025-08-20 23:06:28 +08:00
</property>
<property name="text">
2025-09-15 22:28:43 +08:00
<string>100 %</string>
2025-08-20 23:06:28 +08:00
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
2025-09-15 22:28:43 +08:00
<widget class="QPushButton" name="But_Atlas_3">
<property name="geometry">
<rect>
<x>910</x>
<y>360</y>
<width>101</width>
<height>40</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">
QPushButton{
/*常态状态下的按钮样式*/
border-image: url(:/Button/Button/button_Blue.png);
font: 87 14pt &quot;思源黑体 Heavy&quot;;
color: rgb(0, 255, 255);
}
QPushButton:hover {
/*鼠标悬浮在按钮上时,设置样式*/
border-image: url(:/Button/Button/button_Green.png);
}
/*点击按钮时,设置样式*/
QPushButton:pressed {
/*设置点击按钮时按钮的样式*/
border-image: url(:/Button/Button/button_qing.png);
}
</string>
</property>
<property name="text">
<string>暂停</string>
</property>
</widget>
2025-09-28 17:14:34 +08:00
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>1024</width>
<height>576</height>
</rect>
</property>
<property name="styleSheet">
<string notr="true">border-image: url(:/Frames/Frames/Main.png);</string>
</property>
<property name="text">
<string/>
</property>
</widget>
<zorder>label</zorder>
<zorder>scrollArea</zorder>
<zorder>But_Atlas_1</zorder>
<zorder>But_Magnify</zorder>
<zorder>But_Atlas_2</zorder>
<zorder>But_Reduce</zorder>
<zorder>Label_Zoom</zorder>
<zorder>But_Atlas_3</zorder>
2025-08-20 23:06:28 +08:00
</widget>
<resources/>
<connections/>
</ui>