mirror of
https://github.com/LC044/WeChatMsg
synced 2025-04-19 02:08:05 +08:00
9409 lines
411 KiB
XML
9409 lines
411 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<ui version="4.0">
|
||
<class>MainWindow</class>
|
||
<widget class="QMainWindow" name="MainWindow">
|
||
<property name="geometry">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>2021</width>
|
||
<height>1121</height>
|
||
</rect>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>1000</width>
|
||
<height>850</height>
|
||
</size>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string>MainWindow</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true">
|
||
#centralwidget{
|
||
background-color: rgb(244, 244, 244);
|
||
}
|
||
#leftMenuSubContainer{
|
||
background-color: rgb(50, 50, 50);
|
||
}
|
||
#leftMenuSubContainer QPushButton{
|
||
text-align: left;
|
||
padding: 5px 10px;
|
||
border-top-left-radius: 10px;
|
||
border-bottom-left-radius: 10px;
|
||
}
|
||
#centerMenuContainer{
|
||
background-color: rgb(193, 193, 193);
|
||
}
|
||
#frame_4{
|
||
background-color: rgb(156, 156, 156);
|
||
border-radius: 10px;
|
||
}
|
||
#frame_10, #frame_11, #frame_12, #frame_13{
|
||
background-color: rgb(177, 177, 177);
|
||
border-radius: 10px;
|
||
}
|
||
#frame_18{
|
||
background-color: rgb(197, 197, 197);
|
||
border-radius: 10px;
|
||
}
|
||
#popupNotificationsSubContainer{
|
||
background-color: rgb(208, 208, 208);
|
||
border-radius: 10px;
|
||
}
|
||
#headerContainer, #footerContainer{
|
||
background-color: rgb(227, 227, 227);
|
||
}
|
||
QPushButton {
|
||
/* 基本按钮样式 */
|
||
border: 2px solid transparent; /* 为了避免悬浮时大小变化,预先设置透明边框 */
|
||
border-radius: 5px; /* 设置圆角边框 */
|
||
padding: 5px; /* 设置内边距,确保内容与边框有足够间距 */
|
||
margin: 0px; /* 初始边距设置为0,可以根据布局需要调整 */
|
||
}
|
||
|
||
QPushButton:hover {
|
||
/* 鼠标悬浮时的样式 */
|
||
background-color: #A3C1DA;
|
||
color: white;
|
||
border: 1px solid #8C8C8C; /* 设置边框颜色 */
|
||
border-radius: 10px; /* 增加圆角大小以强调效果 */
|
||
padding: 4px; /* 微调内边距,为边框增大留出空间 */
|
||
margin: -1px; /* 通过负边距使按钮整体略微扩大,以容纳更大的边框 */
|
||
}
|
||
QPlainTextEdit {
|
||
border: 2px solid #ababab;
|
||
border-radius: 10px;
|
||
padding: 5px;
|
||
background-color: #F0F0F0;
|
||
color: #333333;
|
||
}
|
||
QPlainTextEdit:focus {
|
||
border: 2px solid #5678EF;
|
||
}
|
||
QLineEdit {
|
||
border: 2px solid #ababab;
|
||
border-radius: 10px;
|
||
padding: 5px;
|
||
background-color: #F0F0F0;
|
||
color: #333333;
|
||
}
|
||
QLineEdit:focus {
|
||
border: 2px solid #5678EF;
|
||
}
|
||
QProgressBar {
|
||
border: 2px solid grey;
|
||
border-radius: 5px;
|
||
background-color: #F0F0F0;
|
||
}
|
||
QProgressBar::chunk {
|
||
background-color: #ababab;
|
||
width: 20px; /* 设置填充块的宽度,可根据需要调整 */
|
||
margin: 2px;
|
||
border-radius: 4px; /* 小于QProgressBar的border-radius以确保圆角效果 */
|
||
}
|
||
QCheckBox {
|
||
spacing: 5px;
|
||
}
|
||
|
||
QCheckBox::indicator {
|
||
width: 20px;
|
||
height: 20px;
|
||
}
|
||
|
||
QCheckBox::indicator:unchecked {
|
||
border: 2px solid #BEBEBE;
|
||
background-color: #F0F0F0;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
QCheckBox::indicator:checked {
|
||
border: 2px solid #5B9BD5;
|
||
background-color: #5B9BD5;
|
||
border-radius: 3px;
|
||
}
|
||
|
||
QCheckBox::indicator:unchecked:hover,
|
||
QCheckBox::indicator:checked:hover {
|
||
border: 2px solid #1E90FF;
|
||
}
|
||
|
||
QComboBox {
|
||
border: 2px solid #BEBEBE;
|
||
border-radius: 5px;
|
||
padding: 1px 18px 1px 3px;
|
||
min-width: 6em;
|
||
background-color: #FFFFFF;
|
||
}
|
||
|
||
QComboBox:editable {
|
||
background-color: #FFFFFF;
|
||
}
|
||
|
||
QComboBox:!editable, QComboBox::drop-down:editable {
|
||
background-color: #FFFFFF;
|
||
}
|
||
|
||
/* 当下拉框显示时的边框和背景颜色 */
|
||
QComboBox::drop-down {
|
||
subcontrol-origin: padding;
|
||
subcontrol-position: top right;
|
||
width: 15px;
|
||
border-left-width: 1px;
|
||
border-left-color: darkgray;
|
||
border-left-style: solid;
|
||
border-top-right-radius: 3px;
|
||
border-bottom-right-radius: 3px;
|
||
}
|
||
|
||
/* 下拉菜单样式 */
|
||
QComboBox QAbstractItemView {
|
||
border: 2px solid darkgray;
|
||
selection-background-color: #6a6ea9;
|
||
background-color: #FFFFFF;
|
||
border-radius: 5px;
|
||
}
|
||
</string>
|
||
</property>
|
||
<widget class="QWidget" name="centralwidget">
|
||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||
<property name="spacing">
|
||
<number>0</number>
|
||
</property>
|
||
<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>
|
||
<item alignment="Qt::AlignLeft">
|
||
<widget class="QCustomSlideMenu" name="leftMenuContainer" native="true">
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>150</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<layout class="QVBoxLayout" name="verticalLayout">
|
||
<property name="spacing">
|
||
<number>0</number>
|
||
</property>
|
||
<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>
|
||
<item>
|
||
<widget class="QWidget" name="leftMenuSubContainer" native="true">
|
||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||
<property name="spacing">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="leftMargin">
|
||
<number>5</number>
|
||
</property>
|
||
<property name="topMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="rightMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="bottomMargin">
|
||
<number>0</number>
|
||
</property>
|
||
<item alignment="Qt::AlignTop">
|
||
<widget class="QFrame" name="frame">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||
<property name="spacing">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="leftMargin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="topMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="rightMargin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="bottomMargin">
|
||
<number>0</number>
|
||
</property>
|
||
<item>
|
||
<widget class="QPushButton" name="menuBtn">
|
||
<property name="toolTip">
|
||
<string>菜单</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true">color: #aaa;</string>
|
||
</property>
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/iconsw/icons/align-justify-white.svg</normaloff>:/iconsw/icons/align-justify-white.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item alignment="Qt::AlignTop">
|
||
<widget class="QFrame" name="frame_2">
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QVBoxLayout" name="verticalLayout_4">
|
||
<property name="spacing">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="leftMargin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="topMargin">
|
||
<number>10</number>
|
||
</property>
|
||
<property name="rightMargin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="bottomMargin">
|
||
<number>10</number>
|
||
</property>
|
||
<item>
|
||
<widget class="QPushButton" name="toolBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>解密</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true">color: #aaa;</string>
|
||
</property>
|
||
<property name="text">
|
||
<string>工具</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/iconsw/icons/codepen-white.svg</normaloff>:/iconsw/icons/codepen-white.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="msgBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>聊天</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true">color: #aaa;</string>
|
||
</property>
|
||
<property name="text">
|
||
<string>聊天</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/iconsw/icons/message-square-white.svg</normaloff>:/iconsw/icons/message-square-white.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="friendBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>好友</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true">color: #aaa;</string>
|
||
</property>
|
||
<property name="text">
|
||
<string>好友</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/iconsw/icons/users-white.svg</normaloff>:/iconsw/icons/users-white.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="userBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>我的</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true">color: #aaa;</string>
|
||
</property>
|
||
<property name="text">
|
||
<string>我的</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/iconsw/icons/user-white.svg</normaloff>:/iconsw/icons/user-white.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</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 alignment="Qt::AlignBottom">
|
||
<widget class="QFrame" name="frame_3">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QVBoxLayout" name="verticalLayout_5">
|
||
<property name="spacing">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="leftMargin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="topMargin">
|
||
<number>10</number>
|
||
</property>
|
||
<property name="rightMargin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="bottomMargin">
|
||
<number>10</number>
|
||
</property>
|
||
<item>
|
||
<widget class="QPushButton" name="aboutBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>关于</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true">color: #aaa;</string>
|
||
</property>
|
||
<property name="text">
|
||
<string>关于</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/iconsw/icons/info-white.svg</normaloff>:/iconsw/icons/info-white.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="settingBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>设置</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true">color: #aaa;</string>
|
||
</property>
|
||
<property name="text">
|
||
<string>设置</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/iconsw/icons/settings-white.svg</normaloff>:/iconsw/icons/settings-white.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="helpBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>帮助</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true">color: #aaa;</string>
|
||
</property>
|
||
<property name="text">
|
||
<string>帮助</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/iconsw/icons/help-circle-white.svg</normaloff>:/iconsw/icons/help-circle-white.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QCustomSlideMenu" name="centerMenuContainer" native="true">
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>200</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||
<property name="spacing">
|
||
<number>0</number>
|
||
</property>
|
||
<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>
|
||
<item alignment="Qt::AlignRight">
|
||
<widget class="QWidget" name="centerMenuSubContainer" native="true">
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>200</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<layout class="QVBoxLayout" name="verticalLayout_6">
|
||
<property name="spacing">
|
||
<number>5</number>
|
||
</property>
|
||
<property name="leftMargin">
|
||
<number>5</number>
|
||
</property>
|
||
<property name="topMargin">
|
||
<number>5</number>
|
||
</property>
|
||
<property name="rightMargin">
|
||
<number>5</number>
|
||
</property>
|
||
<property name="bottomMargin">
|
||
<number>5</number>
|
||
</property>
|
||
<item>
|
||
<widget class="QFrame" name="frame_4">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||
<property name="spacing">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="leftMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="topMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="rightMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="bottomMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<item alignment="Qt::AlignLeft">
|
||
<widget class="QPushButton" name="closeCenterMenuBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>收回子菜单</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/x-circle.svg</normaloff>:/icons/icons/x-circle.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QCustomQStackedWidget" name="centerMenuPages">
|
||
<property name="currentIndex">
|
||
<number>1</number>
|
||
</property>
|
||
<widget class="QWidget" name="toolPage">
|
||
<layout class="QVBoxLayout" name="verticalLayout_10">
|
||
<property name="spacing">
|
||
<number>6</number>
|
||
</property>
|
||
<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>
|
||
<item alignment="Qt::AlignTop">
|
||
<widget class="QFrame" name="frame_10">
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>60</height>
|
||
</size>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QVBoxLayout" name="verticalLayout_18" stretch="0">
|
||
<property name="spacing">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="leftMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="topMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="rightMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="bottomMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<item alignment="Qt::AlignLeft">
|
||
<widget class="QPushButton" name="decryptBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="text">
|
||
<string>自动解密</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/key.svg</normaloff>:/icons/icons/key.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item alignment="Qt::AlignTop">
|
||
<widget class="QFrame" name="frame_11">
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>60</height>
|
||
</size>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_13">
|
||
<property name="spacing">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="leftMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="topMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="rightMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="bottomMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<item alignment="Qt::AlignLeft">
|
||
<widget class="QPushButton" name="decryptBtn2">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>手动解密</string>
|
||
</property>
|
||
<property name="text">
|
||
<string>手动解密</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/crosshair.svg</normaloff>:/icons/icons/crosshair.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item alignment="Qt::AlignTop">
|
||
<widget class="QFrame" name="frame_12">
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>60</height>
|
||
</size>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_14">
|
||
<property name="spacing">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="leftMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="topMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="rightMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="bottomMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<item alignment="Qt::AlignLeft">
|
||
<widget class="QPushButton" name="dataBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="text">
|
||
<string>聊天数据管理</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/message-circle.svg</normaloff>:/icons/icons/message-circle.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<spacer name="verticalSpacer_3">
|
||
<property name="orientation">
|
||
<enum>Qt::Vertical</enum>
|
||
</property>
|
||
<property name="sizeHint" stdset="0">
|
||
<size>
|
||
<width>20</width>
|
||
<height>40</height>
|
||
</size>
|
||
</property>
|
||
</spacer>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
<widget class="QWidget" name="msgPage"/>
|
||
<widget class="QWidget" name="friendPage"/>
|
||
<widget class="QWidget" name="userPage">
|
||
<widget class="QFrame" name="frame_13">
|
||
<property name="geometry">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>20</y>
|
||
<width>191</width>
|
||
<height>42</height>
|
||
</rect>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_15">
|
||
<item>
|
||
<widget class="QLabel" name="label_10">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>我的年度聊天报告</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</widget>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QWidget" name="mainBodyContainer" native="true">
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<layout class="QVBoxLayout" name="verticalLayout_7">
|
||
<property name="spacing">
|
||
<number>0</number>
|
||
</property>
|
||
<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>
|
||
<item alignment="Qt::AlignTop">
|
||
<widget class="QWidget" name="headerContainer" native="true">
|
||
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||
<property name="spacing">
|
||
<number>5</number>
|
||
</property>
|
||
<property name="leftMargin">
|
||
<number>5</number>
|
||
</property>
|
||
<property name="topMargin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="rightMargin">
|
||
<number>2</number>
|
||
</property>
|
||
<property name="bottomMargin">
|
||
<number>0</number>
|
||
</property>
|
||
<item alignment="Qt::AlignLeft">
|
||
<widget class="QFrame" name="frame_5">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_6">
|
||
<property name="topMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="bottomMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<item>
|
||
<widget class="QPushButton" name="getInfoBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>获取信息</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/target.svg</normaloff>:/icons/icons/target.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="dbDirBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>设置微信路径</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/folder-plus.svg</normaloff>:/icons/icons/folder-plus.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="startDecryptBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>开始自动解密(完成后需重启程序)</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/play-circle.svg</normaloff>:/icons/icons/play-circle.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="startDecryptBiasBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>开始手动解密</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/play-circle.svg</normaloff>:/icons/icons/play-circle.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="statisticBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>统计信息</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/database.svg</normaloff>:/icons/icons/database.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="moodBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>情感分析(暂不可用)</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/heart.svg</normaloff>:/icons/icons/heart.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="userReportBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>年</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>生成年度报告</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/file-text.svg</normaloff>:/icons/icons/file-text.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="reportBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string/>
|
||
</property>
|
||
<property name="text">
|
||
<string>生成我的年度报告</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/file-text.svg</normaloff>:/icons/icons/file-text.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="exportFriendBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>导出所有联系人</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/user-check.svg</normaloff>:/icons/icons/user-check.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="exportAllBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>导出所有聊天记录</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/external-link.svg</normaloff>:/icons/icons/external-link.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="exportBatchBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>解密</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>批量导出</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/package.svg</normaloff>:/icons/icons/package.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="stopWordBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>解密</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>设置停用词</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/eye-off.svg</normaloff>:/icons/icons/eye-off.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="newWordBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>新增自定义词</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/plus-square.svg</normaloff>:/icons/icons/plus-square.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item alignment="Qt::AlignRight">
|
||
<widget class="QFrame" name="frame_7">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||
<property name="topMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="rightMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<property name="bottomMargin">
|
||
<number>3</number>
|
||
</property>
|
||
<item>
|
||
<widget class="QPushButton" name="minimizeBtn">
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/minus.svg</normaloff>:/icons/icons/minus.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="restoreBtn">
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/square.svg</normaloff>:/icons/icons/square.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="closeBtn">
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/x.svg</normaloff>:/icons/icons/x.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QWidget" name="mainBodyContent" native="true">
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Expanding">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<layout class="QVBoxLayout" name="verticalLayout_8">
|
||
<property name="spacing">
|
||
<number>0</number>
|
||
</property>
|
||
<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>
|
||
<item>
|
||
<widget class="QWidget" name="mainContentsContainer" native="true">
|
||
<layout class="QVBoxLayout" name="verticalLayout_11">
|
||
<item>
|
||
<widget class="QCustomQStackedWidget" name="mainContentsPages">
|
||
<property name="currentIndex">
|
||
<number>0</number>
|
||
</property>
|
||
<widget class="QWidget" name="decryptMainPage">
|
||
<layout class="QHBoxLayout" name="horizontalLayout_19">
|
||
<item>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_11">
|
||
<property name="spacing">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="sizeConstraint">
|
||
<enum>QLayout::SetDefaultConstraint</enum>
|
||
</property>
|
||
<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>
|
||
<item>
|
||
<spacer>
|
||
<property name="orientation">
|
||
<enum>Qt::Horizontal</enum>
|
||
</property>
|
||
<property name="sizeType">
|
||
<enum>QSizePolicy::Fixed</enum>
|
||
</property>
|
||
<property name="sizeHint" stdset="0">
|
||
<size>
|
||
<width>40</width>
|
||
<height>20</height>
|
||
</size>
|
||
</property>
|
||
</spacer>
|
||
</item>
|
||
<item>
|
||
<layout class="QVBoxLayout" name="verticalLayout_12">
|
||
<property name="spacing">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="sizeConstraint">
|
||
<enum>QLayout::SetDefaultConstraint</enum>
|
||
</property>
|
||
<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>
|
||
<item>
|
||
<widget class="QLabel" name="label_4">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>80</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>20</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>1595</width>
|
||
<height>80</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string>解密数据库</string>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="alignment">
|
||
<set>Qt::AlignCenter</set>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QLabel" name="label_11">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>60</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>1595</width>
|
||
<height>60</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string>以下内容为自动获取,如获取失败请手动填写</string>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="alignment">
|
||
<set>Qt::AlignCenter</set>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<layout class="QGridLayout" name="gridLayout_2">
|
||
<property name="sizeConstraint">
|
||
<enum>QLayout::SetDefaultConstraint</enum>
|
||
</property>
|
||
<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>6</number>
|
||
</property>
|
||
<item row="0" column="0" rowspan="2">
|
||
<layout class="QGridLayout" name="gridLayout">
|
||
<property name="sizeConstraint">
|
||
<enum>QLayout::SetDefaultConstraint</enum>
|
||
</property>
|
||
<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>6</number>
|
||
</property>
|
||
<item row="2" column="1">
|
||
<widget class="QLabel" name="label_phone">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>1322</width>
|
||
<height>26</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="1" column="0">
|
||
<widget class="QLabel" name="label_12">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>64</width>
|
||
<height>27</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string>版本</string>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="4" column="1">
|
||
<widget class="QLineEdit" name="lineEdit">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>51</red>
|
||
<green>51</green>
|
||
<blue>51</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>51</red>
|
||
<green>51</green>
|
||
<blue>51</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>51</red>
|
||
<green>51</green>
|
||
<blue>51</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>51</red>
|
||
<green>51</green>
|
||
<blue>51</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>51</red>
|
||
<green>51</green>
|
||
<blue>51</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>51</red>
|
||
<green>51</green>
|
||
<blue>51</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>51</red>
|
||
<green>51</green>
|
||
<blue>51</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>51</red>
|
||
<green>51</green>
|
||
<blue>51</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>51</red>
|
||
<green>51</green>
|
||
<blue>51</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>IBeamCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::StrongFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true">background:transparent;
|
||
|
||
border-radius:5px;
|
||
border-top: 0px solid #b2e281;
|
||
border-bottom: 2px solid black;
|
||
border-right: 0px solid #b2e281;
|
||
border-left: 0px solid #b2e281;
|
||
|
||
|
||
border-style:outset
|
||
</string>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="inputMask">
|
||
<string/>
|
||
</property>
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="maxLength">
|
||
<number>32767</number>
|
||
</property>
|
||
<property name="frame">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="echoMode">
|
||
<enum>QLineEdit::Normal</enum>
|
||
</property>
|
||
<property name="cursorPosition">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="modified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="dragEnabled">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="readOnly">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="placeholderText">
|
||
<string/>
|
||
</property>
|
||
<property name="cursorMoveStyle">
|
||
<enum>Qt::LogicalMoveStyle</enum>
|
||
</property>
|
||
<property name="clearButtonEnabled">
|
||
<bool>false</bool>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="3" column="0">
|
||
<widget class="QLabel" name="label_6">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>64</width>
|
||
<height>28</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string>微信昵称</string>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="5" column="0">
|
||
<widget class="QLabel" name="label_13">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>64</width>
|
||
<height>27</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string>密钥</string>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="5" column="1">
|
||
<widget class="QLabel" name="label_key">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>400</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>400</width>
|
||
<height>27</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="0" column="0">
|
||
<widget class="QLabel" name="label_2">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>64</width>
|
||
<height>27</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string>PID</string>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="2" column="0">
|
||
<widget class="QLabel" name="label_14">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>64</width>
|
||
<height>26</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string>手机号</string>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="0" column="1">
|
||
<widget class="QLabel" name="label_pid">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>1322</width>
|
||
<height>27</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="3" column="1">
|
||
<widget class="QLabel" name="label_name">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>1322</width>
|
||
<height>28</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="4" column="0">
|
||
<widget class="QLabel" name="label_15">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>64</width>
|
||
<height>31</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string>wxid</string>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="1" column="1">
|
||
<widget class="QLabel" name="label_version">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>1322</width>
|
||
<height>27</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="6" column="0">
|
||
<widget class="QLabel" name="label_17">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>64</width>
|
||
<height>27</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string>微信路径</string>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="6" column="1">
|
||
<widget class="QLabel" name="label_db_dir">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>400</width>
|
||
<height>300</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>400</width>
|
||
<height>27</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
<item row="1" column="1">
|
||
<widget class="QCheckBox" name="setPathCheckBox">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::StrongFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="text">
|
||
<string>微信路径是否设置</string>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>16</width>
|
||
<height>16</height>
|
||
</size>
|
||
</property>
|
||
<property name="shortcut">
|
||
<string/>
|
||
</property>
|
||
<property name="checkable">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="checked">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="autoRepeat">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="autoExclusive">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="autoRepeatDelay">
|
||
<number>300</number>
|
||
</property>
|
||
<property name="autoRepeatInterval">
|
||
<number>100</number>
|
||
</property>
|
||
<property name="down">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tristate">
|
||
<bool>false</bool>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="0" column="1">
|
||
<widget class="QCheckBox" name="getInfoCheckBox">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::StrongFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="text">
|
||
<string>信息是否获取</string>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>16</width>
|
||
<height>16</height>
|
||
</size>
|
||
</property>
|
||
<property name="shortcut">
|
||
<string/>
|
||
</property>
|
||
<property name="checkable">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="checked">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="autoRepeat">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="autoExclusive">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="autoRepeatDelay">
|
||
<number>300</number>
|
||
</property>
|
||
<property name="autoRepeatInterval">
|
||
<number>100</number>
|
||
</property>
|
||
<property name="down">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tristate">
|
||
<bool>false</bool>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
<item>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_18">
|
||
<property name="spacing">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="sizeConstraint">
|
||
<enum>QLayout::SetDefaultConstraint</enum>
|
||
</property>
|
||
<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>
|
||
<item>
|
||
<widget class="QLabel" name="label_ready">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="0">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::NoFrame</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Plain</enum>
|
||
</property>
|
||
<property name="lineWidth">
|
||
<number>1</number>
|
||
</property>
|
||
<property name="midLineWidth">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="frameRect">
|
||
<rect>
|
||
<x>0</x>
|
||
<y>0</y>
|
||
<width>48</width>
|
||
<height>334</height>
|
||
</rect>
|
||
</property>
|
||
<property name="text">
|
||
<string>未就绪</string>
|
||
</property>
|
||
<property name="textFormat">
|
||
<enum>Qt::AutoText</enum>
|
||
</property>
|
||
<property name="scaledContents">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="margin">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="indent">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="openExternalLinks">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textInteractionFlags">
|
||
<set>Qt::LinksAccessibleByMouse</set>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QProgressBar" name="progressBar">
|
||
<property name="enabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Expanding" vsizetype="Fixed">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>16777215</height>
|
||
</size>
|
||
</property>
|
||
<property name="sizeIncrement">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="baseSize">
|
||
<size>
|
||
<width>0</width>
|
||
<height>0</height>
|
||
</size>
|
||
</property>
|
||
<property name="palette">
|
||
<palette>
|
||
<active>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>240</red>
|
||
<green>240</green>
|
||
<blue>240</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>240</red>
|
||
<green>240</green>
|
||
<blue>240</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>240</red>
|
||
<green>240</green>
|
||
<blue>240</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</active>
|
||
<inactive>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>240</red>
|
||
<green>240</green>
|
||
<blue>240</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>240</red>
|
||
<green>240</green>
|
||
<blue>240</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>240</red>
|
||
<green>240</green>
|
||
<blue>240</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</inactive>
|
||
<disabled>
|
||
<colorrole role="WindowText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Button">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>240</red>
|
||
<green>240</green>
|
||
<blue>240</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Text">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="ButtonText">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>0</red>
|
||
<green>0</green>
|
||
<blue>0</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Base">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>240</red>
|
||
<green>240</green>
|
||
<blue>240</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
<colorrole role="Window">
|
||
<brush brushstyle="SolidPattern">
|
||
<color alpha="255">
|
||
<red>240</red>
|
||
<green>240</green>
|
||
<blue>240</blue>
|
||
</color>
|
||
</brush>
|
||
</colorrole>
|
||
</disabled>
|
||
</palette>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="cursor">
|
||
<cursorShape>ArrowCursor</cursorShape>
|
||
</property>
|
||
<property name="mouseTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="tabletTracking">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="focusPolicy">
|
||
<enum>Qt::NoFocus</enum>
|
||
</property>
|
||
<property name="contextMenuPolicy">
|
||
<enum>Qt::DefaultContextMenu</enum>
|
||
</property>
|
||
<property name="updatesEnabled">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="visible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="acceptDrops">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="windowTitle">
|
||
<string/>
|
||
</property>
|
||
<property name="windowIconText">
|
||
<string/>
|
||
</property>
|
||
<property name="windowOpacity">
|
||
<double>1.000000000000000</double>
|
||
</property>
|
||
<property name="windowModified">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string/>
|
||
</property>
|
||
<property name="toolTipDuration">
|
||
<number>-1</number>
|
||
</property>
|
||
<property name="statusTip">
|
||
<string/>
|
||
</property>
|
||
<property name="whatsThis">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleName">
|
||
<string/>
|
||
</property>
|
||
<property name="accessibleDescription">
|
||
<string/>
|
||
</property>
|
||
<property name="layoutDirection">
|
||
<enum>Qt::LeftToRight</enum>
|
||
</property>
|
||
<property name="autoFillBackground">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="locale">
|
||
<locale language="Chinese" country="China"/>
|
||
</property>
|
||
<property name="windowFilePath">
|
||
<string/>
|
||
</property>
|
||
<property name="inputMethodHints">
|
||
<set>Qt::ImhNone</set>
|
||
</property>
|
||
<property name="minimum">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="maximum">
|
||
<number>100</number>
|
||
</property>
|
||
<property name="value">
|
||
<number>0</number>
|
||
</property>
|
||
<property name="alignment">
|
||
<set>Qt::AlignLeading</set>
|
||
</property>
|
||
<property name="textVisible">
|
||
<bool>true</bool>
|
||
</property>
|
||
<property name="orientation">
|
||
<enum>Qt::Horizontal</enum>
|
||
</property>
|
||
<property name="invertedAppearance">
|
||
<bool>false</bool>
|
||
</property>
|
||
<property name="textDirection">
|
||
<enum>QProgressBar::TopToBottom</enum>
|
||
</property>
|
||
<property name="format">
|
||
<string>%p%</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
<item>
|
||
<spacer>
|
||
<property name="orientation">
|
||
<enum>Qt::Horizontal</enum>
|
||
</property>
|
||
<property name="sizeType">
|
||
<enum>QSizePolicy::Fixed</enum>
|
||
</property>
|
||
<property name="sizeHint" stdset="0">
|
||
<size>
|
||
<width>40</width>
|
||
<height>20</height>
|
||
</size>
|
||
</property>
|
||
</spacer>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
<widget class="QWidget" name="decryptMainPage2">
|
||
<layout class="QHBoxLayout" name="horizontalLayout_21">
|
||
<item>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_20">
|
||
<item>
|
||
<layout class="QVBoxLayout" name="verticalLayout_14">
|
||
<property name="spacing">
|
||
<number>6</number>
|
||
</property>
|
||
<property name="sizeConstraint">
|
||
<enum>QLayout::SetDefaultConstraint</enum>
|
||
</property>
|
||
<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>
|
||
<item>
|
||
<widget class="QLabel" name="label_3">
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>60</height>
|
||
</size>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>为避免输入错误,以下信息请从微信中复制</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<layout class="QGridLayout" name="gridLayout_3">
|
||
<property name="sizeConstraint">
|
||
<enum>QLayout::SetDefaultConstraint</enum>
|
||
</property>
|
||
<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>6</number>
|
||
</property>
|
||
<item row="0" column="0" rowspan="2">
|
||
<layout class="QGridLayout" name="gridLayout_4">
|
||
<property name="sizeConstraint">
|
||
<enum>QLayout::SetDefaultConstraint</enum>
|
||
</property>
|
||
<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>6</number>
|
||
</property>
|
||
<item row="0" column="2">
|
||
<widget class="QLineEdit" name="lineEdit_tel">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="placeholderText">
|
||
<string>请输入微信绑定的手机号</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="2" column="2">
|
||
<widget class="QLineEdit" name="lineEdit_wx_name">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="placeholderText">
|
||
<string>请输入您的微信昵称</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="1" column="2">
|
||
<widget class="QLineEdit" name="lineEdit_wx_alias">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="placeholderText">
|
||
<string>请输入您的微信号</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="0" column="0">
|
||
<widget class="QLabel" name="label_18">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>手机号</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="1" column="0">
|
||
<widget class="QLabel" name="label_19">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>微信号</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="2" column="0">
|
||
<widget class="QLabel" name="label_21">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>微信昵称</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="0" column="3">
|
||
<spacer name="horizontalSpacer_4">
|
||
<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="1" column="3">
|
||
<spacer name="horizontalSpacer_5">
|
||
<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="2" column="3">
|
||
<spacer name="horizontalSpacer_6">
|
||
<property name="orientation">
|
||
<enum>Qt::Horizontal</enum>
|
||
</property>
|
||
<property name="sizeHint" stdset="0">
|
||
<size>
|
||
<width>40</width>
|
||
<height>20</height>
|
||
</size>
|
||
</property>
|
||
</spacer>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
<widget class="QWidget" name="dataMainPage">
|
||
<layout class="QHBoxLayout" name="horizontalLayout_17">
|
||
<item>
|
||
<layout class="QGridLayout" name="gridLayout_7" columnstretch="1,5,1,2,1">
|
||
<item row="0" column="0">
|
||
<widget class="QLabel" name="label_20">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>为减少卡顿请尽量不要超过十个</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="1" column="0">
|
||
<layout class="QVBoxLayout" name="verticalLayout_15" stretch="1,1,1,1,1,1,1,1,1,1,1,25">
|
||
<item alignment="Qt::AlignTop">
|
||
<widget class="QLabel" name="label_22">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>导出格式</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QCheckBox" name="checkBox_txt">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>TXT</string>
|
||
</property>
|
||
<property name="checked">
|
||
<bool>true</bool>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QCheckBox" name="checkBox_csv">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>CSV</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QCheckBox" name="checkBox_html">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>HTML</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QCheckBox" name="checkBox_word">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>Docx</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<spacer name="verticalSpacer_2">
|
||
<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>
|
||
<widget class="QLabel" name="label">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>导出范围</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QComboBox" name="comboBox_time">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<item>
|
||
<property name="text">
|
||
<string>全部时间</string>
|
||
</property>
|
||
</item>
|
||
<item>
|
||
<property name="text">
|
||
<string>最近三个月</string>
|
||
</property>
|
||
</item>
|
||
<item>
|
||
<property name="text">
|
||
<string>自定义时间</string>
|
||
</property>
|
||
</item>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QComboBox" name="comboBox_type">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<item>
|
||
<property name="text">
|
||
<string>全部聊天记录</string>
|
||
</property>
|
||
</item>
|
||
<item>
|
||
<property name="text">
|
||
<string>不含图片/视频/文件</string>
|
||
</property>
|
||
</item>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<spacer name="verticalSpacer_5">
|
||
<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>
|
||
<widget class="QLabel" name="label_23">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>消息类型</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<layout class="QVBoxLayout" name="messageTypeVerticalLayout"/>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
<item row="0" column="1" alignment="Qt::AlignLeft">
|
||
<widget class="QPushButton" name="btn_select_all">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>全选</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/check-square.svg</normaloff>:/icons/icons/check-square.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="2" column="4">
|
||
<widget class="QLabel" name="label_time">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="2" column="3">
|
||
<widget class="QLabel" name="label_process">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="2" column="0" colspan="3">
|
||
<widget class="QProgressBar" name="exportProgressBar">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="value">
|
||
<number>0</number>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="1" column="1" colspan="4">
|
||
<widget class="QListWidget" name="listWidget">
|
||
<property name="styleSheet">
|
||
<string notr="true">background-color: transparent;</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
<widget class="QWidget" name="msgMainPage"/>
|
||
<widget class="QWidget" name="friendMainPage"/>
|
||
<widget class="QWidget" name="aboutMainPage">
|
||
<layout class="QHBoxLayout" name="horizontalLayout_22">
|
||
<item>
|
||
<layout class="QVBoxLayout" name="verticalLayout_16">
|
||
<item>
|
||
<widget class="QFrame" name="frame_9">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QVBoxLayout" name="verticalLayout_19">
|
||
<item>
|
||
<widget class="QLabel" name="label_5">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>关于我们</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QLabel" name="aboutText">
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>关于我们的信息</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<spacer name="verticalSpacer_4">
|
||
<property name="orientation">
|
||
<enum>Qt::Vertical</enum>
|
||
</property>
|
||
<property name="sizeHint" stdset="0">
|
||
<size>
|
||
<width>20</width>
|
||
<height>40</height>
|
||
</size>
|
||
</property>
|
||
</spacer>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
<widget class="QWidget" name="settingMainPage">
|
||
<layout class="QHBoxLayout" name="horizontalLayout_23">
|
||
<item>
|
||
<widget class="QFrame" name="frame_20">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QVBoxLayout" name="verticalLayout_13">
|
||
<item>
|
||
<layout class="QGridLayout" name="gridLayout_5">
|
||
<item row="1" column="0">
|
||
<widget class="QPlainTextEdit" name="stopWordTextEdit">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="plainText">
|
||
<string>文本框里输入年度报告词云停用词,每个词之间用空格隔开</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="3" column="0">
|
||
<widget class="QPlainTextEdit" name="newWordTextEdit">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="plainText">
|
||
<string>文本框里输入年度报告词云自定义词,每个词之间用空格隔开</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="0" column="0">
|
||
<widget class="QLabel" name="label_7">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>文本框里输入年度报告词云停用词,每个词之间用空格隔开</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item row="2" column="0">
|
||
<widget class="QLabel" name="label_8">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>文本框里输入年度报告词云自定义词,每个词之间用空格隔开</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
<widget class="QWidget" name="helpMainPage">
|
||
<layout class="QHBoxLayout" name="horizontalLayout_24">
|
||
<item alignment="Qt::AlignTop">
|
||
<widget class="QFrame" name="frame_21">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_26">
|
||
<item>
|
||
<widget class="QPushButton" name="questionBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>解密</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>常见问题解答</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/book.svg</normaloff>:/icons/icons/book.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="friendQuestionBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>解密</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>好友相关</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/users.svg</normaloff>:/icons/icons/users.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="msgQuestionBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>解密</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>聊天相关</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/message-square.svg</normaloff>:/icons/icons/message-square.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="toolQuestionBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>解密</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>解密相关</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/codepen.svg</normaloff>:/icons/icons/codepen.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
<widget class="QWidget" name="reportMainPage">
|
||
<layout class="QHBoxLayout" name="horizontalLayout_25">
|
||
<item>
|
||
<widget class="QFrame" name="frame_14">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QVBoxLayout" name="verticalLayout_17">
|
||
<item>
|
||
<widget class="QLabel" name="label_16">
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>16777215</width>
|
||
<height>60</height>
|
||
</size>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>报告生成进度</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item alignment="Qt::AlignTop">
|
||
<widget class="QLabel" name="reportProgress">
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>未开始生成</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QWidget" name="popupNotificationsContainerWrapper" native="true">
|
||
<layout class="QVBoxLayout" name="verticalLayout_20">
|
||
<item>
|
||
<widget class="QCustomSlideMenu" name="popupNotificationsContainer" native="true">
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_7">
|
||
<item>
|
||
<widget class="QWidget" name="popupNotificationsSubContainer" native="true">
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<layout class="QVBoxLayout" name="verticalLayout_9">
|
||
<item>
|
||
<widget class="QLabel" name="notificationType">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>通知</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QFrame" name="frame_6">
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_8">
|
||
<item>
|
||
<widget class="QLabel" name="notificationContent">
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="MinimumExpanding" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>通知内容</string>
|
||
</property>
|
||
<property name="alignment">
|
||
<set>Qt::AlignCenter</set>
|
||
</property>
|
||
<property name="wordWrap">
|
||
<bool>true</bool>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item alignment="Qt::AlignBottom">
|
||
<widget class="QPushButton" name="closeNotificationBtn">
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/x-octagon.svg</normaloff>:/icons/icons/x-octagon.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item alignment="Qt::AlignBottom">
|
||
<widget class="QWidget" name="footerContainer" native="true">
|
||
<layout class="QHBoxLayout" name="horizontalLayout_9">
|
||
<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>
|
||
<item alignment="Qt::AlignLeft">
|
||
<widget class="QFrame" name="frame_8">
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
<layout class="QHBoxLayout" name="horizontalLayout_10">
|
||
<item alignment="Qt::AlignLeft">
|
||
<widget class="QPushButton" name="iconBtn">
|
||
<property name="text">
|
||
<string/>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/logo3.0.ico</normaloff>:/icons/logo3.0.ico</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QLabel" name="versionText">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>留痕-Vx.x.x</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<spacer name="horizontalSpacer">
|
||
<property name="orientation">
|
||
<enum>Qt::Horizontal</enum>
|
||
</property>
|
||
<property name="sizeHint" stdset="0">
|
||
<size>
|
||
<width>20</width>
|
||
<height>20</height>
|
||
</size>
|
||
</property>
|
||
</spacer>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="updateBtn">
|
||
<property name="sizePolicy">
|
||
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
||
<horstretch>0</horstretch>
|
||
<verstretch>0</verstretch>
|
||
</sizepolicy>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="toolTip">
|
||
<string>解密</string>
|
||
</property>
|
||
<property name="styleSheet">
|
||
<string notr="true"/>
|
||
</property>
|
||
<property name="text">
|
||
<string>检查更新</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/arrow-up-circle.svg</normaloff>:/icons/icons/arrow-up-circle.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<spacer name="horizontalSpacer_2">
|
||
<property name="orientation">
|
||
<enum>Qt::Horizontal</enum>
|
||
</property>
|
||
<property name="sizeHint" stdset="0">
|
||
<size>
|
||
<width>20</width>
|
||
<height>20</height>
|
||
</size>
|
||
</property>
|
||
</spacer>
|
||
</item>
|
||
<item>
|
||
<widget class="QPushButton" name="sendErrorBtn">
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
<weight>75</weight>
|
||
<bold>true</bold>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>发送错误报告</string>
|
||
</property>
|
||
<property name="icon">
|
||
<iconset resource="../../../QT/PyQTDemo/resources.qrc">
|
||
<normaloff>:/icons/icons/send.svg</normaloff>:/icons/icons/send.svg</iconset>
|
||
</property>
|
||
<property name="iconSize">
|
||
<size>
|
||
<width>24</width>
|
||
<height>24</height>
|
||
</size>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QLabel" name="myavatar">
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>30</width>
|
||
<height>30</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>30</width>
|
||
<height>30</height>
|
||
</size>
|
||
</property>
|
||
<property name="font">
|
||
<font>
|
||
<family>微软雅黑</family>
|
||
<pointsize>12</pointsize>
|
||
</font>
|
||
</property>
|
||
<property name="text">
|
||
<string>头像</string>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
<item>
|
||
<widget class="QFrame" name="sizeGrip">
|
||
<property name="minimumSize">
|
||
<size>
|
||
<width>30</width>
|
||
<height>30</height>
|
||
</size>
|
||
</property>
|
||
<property name="maximumSize">
|
||
<size>
|
||
<width>30</width>
|
||
<height>30</height>
|
||
</size>
|
||
</property>
|
||
<property name="frameShape">
|
||
<enum>QFrame::StyledPanel</enum>
|
||
</property>
|
||
<property name="frameShadow">
|
||
<enum>QFrame::Raised</enum>
|
||
</property>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</item>
|
||
</layout>
|
||
</widget>
|
||
</widget>
|
||
<customwidgets>
|
||
<customwidget>
|
||
<class>QCustomSlideMenu</class>
|
||
<extends>QWidget</extends>
|
||
<header location="global">Custom_Widgets.QCustomSlideMenu.h</header>
|
||
<container>1</container>
|
||
</customwidget>
|
||
<customwidget>
|
||
<class>QCustomQStackedWidget</class>
|
||
<extends>QStackedWidget</extends>
|
||
<header location="global">Custom_Widgets.QCustomQStackedWidget.h</header>
|
||
<container>1</container>
|
||
</customwidget>
|
||
</customwidgets>
|
||
<resources>
|
||
<include location="../../../QT/PyQTDemo/resources.qrc"/>
|
||
</resources>
|
||
<connections/>
|
||
</ui>
|