mirror of
https://github.com/LC044/WeChatMsg
synced 2024-11-12 20:21:21 +08:00
修复了Webengine横向小的问题
This commit is contained in:
parent
6f903a7eff
commit
87f35e73f5
@ -16,6 +16,8 @@ class Ui_Form(object):
|
||||
Form.setObjectName("Form")
|
||||
Form.resize(878, 720)
|
||||
self.horizontalLayout = QtWidgets.QHBoxLayout(Form)
|
||||
self.horizontalLayout.setContentsMargins(0, 0, 0, 0)
|
||||
self.horizontalLayout.setSpacing(0)
|
||||
self.horizontalLayout.setObjectName("horizontalLayout")
|
||||
self.scrollArea_2 = QtWidgets.QScrollArea(Form)
|
||||
self.scrollArea_2.setEnabled(True)
|
||||
@ -51,7 +53,8 @@ class Ui_Form(object):
|
||||
self.frame_2.setFrameShadow(QtWidgets.QFrame.Raised)
|
||||
self.frame_2.setObjectName("frame_2")
|
||||
self.verticalLayout = QtWidgets.QVBoxLayout(self.frame_2)
|
||||
self.verticalLayout.setContentsMargins(0, 5, 0, 0)
|
||||
self.verticalLayout.setContentsMargins(0, 0, 0, 0)
|
||||
self.verticalLayout.setSpacing(0)
|
||||
self.verticalLayout.setObjectName("verticalLayout")
|
||||
self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
|
||||
self.horizontalLayout_3.setObjectName("horizontalLayout_3")
|
||||
@ -112,11 +115,12 @@ class Ui_Form(object):
|
||||
self.btn_sendMsg_2.setMouseTracking(False)
|
||||
self.btn_sendMsg_2.setAutoFillBackground(False)
|
||||
self.btn_sendMsg_2.setStyleSheet("QPushButton {\n"
|
||||
"background-color:rgb(233,233,233);\n"
|
||||
"padding: 10px;\n"
|
||||
"color:rgb(5,180,104);}\n"
|
||||
"QPushButton:hover{\n"
|
||||
"background-color:rgb(198,198,198)}")
|
||||
" background-color:rgb(233,233,233);\n"
|
||||
" padding: 10px;\n"
|
||||
" color:rgb(5,180,104);}\n"
|
||||
" QPushButton:hover{\n"
|
||||
" background-color:rgb(198,198,198)}\n"
|
||||
" ")
|
||||
self.btn_sendMsg_2.setIconSize(QtCore.QSize(40, 40))
|
||||
self.btn_sendMsg_2.setCheckable(False)
|
||||
self.btn_sendMsg_2.setAutoDefault(True)
|
||||
@ -146,5 +150,6 @@ class Ui_Form(object):
|
||||
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
|
||||
"p, li { white-space: pre-wrap; }\n"
|
||||
"</style></head><body style=\" font-family:\'SimSun\'; font-size:15pt; font-weight:400; font-style:normal;\">\n"
|
||||
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p></body></html>"))
|
||||
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"> </p>\n"
|
||||
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"> </p></body></html>"))
|
||||
self.btn_sendMsg_2.setText(_translate("Form", "发送"))
|
||||
|
@ -14,6 +14,21 @@
|
||||
<string>Form</string>
|
||||
</property>
|
||||
<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>
|
||||
<widget class="QScrollArea" name="scrollArea_2">
|
||||
<property name="enabled">
|
||||
@ -117,11 +132,14 @@
|
||||
<enum>QFrame::Raised</enum>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout" stretch="2,2,60,2,2,1">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="leftMargin">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="topMargin">
|
||||
<number>5</number>
|
||||
<number>0</number>
|
||||
</property>
|
||||
<property name="rightMargin">
|
||||
<number>0</number>
|
||||
@ -212,9 +230,10 @@
|
||||
p, li { white-space: pre-wrap; }
|
||||
</style></head><body style=" font-family:'SimSun';
|
||||
font-size:15pt; font-weight:400; font-style:normal;">
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px;
|
||||
margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br
|
||||
/></p></body></html>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px;
|
||||
margin-right:0px; -qt-block-indent:0; text-indent:0px;"> </p>
|
||||
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px;
|
||||
margin-right:0px; -qt-block-indent:0; text-indent:0px;"> </p></body></html>
|
||||
</string>
|
||||
</property>
|
||||
<property name="overwriteMode">
|
||||
|
@ -50,22 +50,33 @@ class AnalysisController(QWidget):
|
||||
|
||||
def initUI(self):
|
||||
self.label.setVisible(False)
|
||||
self.setStyleSheet('''QWidget{background-color:rgb(244, 244, 244);}''')
|
||||
self.setStyleSheet('''QWidget{background-color:rgb(240, 240, 240);}''')
|
||||
|
||||
main_box = QVBoxLayout(self)
|
||||
main_box.setContentsMargins(0, 0, 0, 0)
|
||||
main_box.setSpacing(0)
|
||||
|
||||
self.browser1 = QWebEngineView()
|
||||
self.browser1.load(QUrl('file:///data/聊天统计/title.html'))
|
||||
self.browser1.setMinimumSize(810, 60)
|
||||
self.browser1.setStyleSheet('''QWidget{background-color:rgb(240, 240, 240);}''')
|
||||
self.browser2 = QWebEngineView()
|
||||
self.browser2.load(QUrl('file:///data/聊天统计/wordcloud.html'))
|
||||
self.browser2.setStyleSheet('''QWidget{background-color:rgb(240, 240, 240);}''')
|
||||
# self.browser2.setMinimumWidth(810)
|
||||
self.browser2.setMinimumSize(810, 810)
|
||||
self.browser3 = QWebEngineView()
|
||||
self.browser3.load(QUrl('file:///data/聊天统计/time.html'))
|
||||
# self.browser3.resize(800, 600)
|
||||
self.browser3.setMaximumSize(810, 100)
|
||||
self.browser3.adjustSize()
|
||||
self.browser4 = QWebEngineView()
|
||||
self.browser4.load(QUrl('http://www.baidu.com'))
|
||||
# self.browser4.resize(800, 600)
|
||||
self.browser4.resize(800, 600)
|
||||
self.browser5 = QWebEngineView()
|
||||
self.browser5.load(QUrl('file:///data/聊天统计/chat_session.html'))
|
||||
# self.browser5.adjustSize()
|
||||
|
||||
# self.browser5.resize(800, 600)
|
||||
self.browser6 = QWebEngineView()
|
||||
self.browser6.load(QUrl('file:///data/聊天统计/sports.html'))
|
||||
self.browser7 = QWebEngineView()
|
||||
@ -80,95 +91,34 @@ class AnalysisController(QWidget):
|
||||
# self.browser10.
|
||||
main_box.addWidget(self.browser1)
|
||||
|
||||
self.scrollArea = QScrollArea(self)
|
||||
self.scrollArea = QScrollArea()
|
||||
self.scrollArea.setEnabled(True)
|
||||
self.scrollArea.adjustSize()
|
||||
self.scrollArea.setWidgetResizable(False)
|
||||
|
||||
scrollAreaContent = QWidget(self.scrollArea)
|
||||
Vlayout2 = QVBoxLayout(scrollAreaContent)
|
||||
scrollAreaContent.setStyleSheet('''QWidget{background-color:rgb(240, 240, 240);}''')
|
||||
|
||||
# splitter2 = QSplitter(Qt.Vertical)
|
||||
# splitter2.addWidget(self.browser2)
|
||||
# # splitter2.resize(800, 600)
|
||||
# Vlayout2.addWidget(splitter2)
|
||||
#
|
||||
# splitter3 = QSplitter(Qt.Vertical)
|
||||
# splitter3.addWidget(self.browser3)
|
||||
# Vlayout2.addWidget(splitter3)
|
||||
#
|
||||
# splitter4 = QSplitter(Qt.Vertical)
|
||||
# splitter4.addWidget(self.browser4)
|
||||
# Vlayout2.addWidget(splitter4)
|
||||
#
|
||||
# splitter5 = QSplitter(Qt.Vertical)
|
||||
# splitter5.addWidget(self.browser6)
|
||||
# Vlayout2.addWidget(splitter5)
|
||||
Vlayout2 = QVBoxLayout()
|
||||
Vlayout2.setContentsMargins(0, 0, 0, 0)
|
||||
Vlayout2.setSpacing(0)
|
||||
|
||||
# Vlayout2.addWidget(self.browser3, stretch=1)
|
||||
# Vlayout2.addWidget(self.browser6, stretch=2)
|
||||
# Vlayout2.addWidget(self.browser5, stretch=3)
|
||||
# Vlayout2.addWidget(self.browser7, stretch=4)
|
||||
# Vlayout2.addWidget(self.browser8, stretch=5)
|
||||
# Vlayout2.addWidget(self.browser9, stretch=6)
|
||||
Vlayout2.addWidget(self.browser10, stretch=7)
|
||||
Vlayout2.addWidget(self.browser3)
|
||||
Vlayout2.addWidget(self.browser2)
|
||||
|
||||
# Vlayout2.setStretch(0, 1)
|
||||
# Vlayout2.setStretch(1, 10)
|
||||
Vlayout2.addWidget(self.browser8)
|
||||
Vlayout2.addWidget(self.browser6)
|
||||
Vlayout2.addWidget(self.browser5)
|
||||
Vlayout2.addWidget(self.browser7)
|
||||
|
||||
Vlayout2.addWidget(self.browser9)
|
||||
Vlayout2.addWidget(self.browser10)
|
||||
scrollAreaContent.setLayout(Vlayout2)
|
||||
# self.scrollArea.setWidget(scrollAreaContent)
|
||||
self.scrollArea.setWidget(self.browser9)
|
||||
main_box.addWidget(self.browser10)
|
||||
|
||||
self.scrollArea.setWidget(scrollAreaContent)
|
||||
main_box.addWidget(self.scrollArea)
|
||||
main_box.setStretch(0, 1)
|
||||
main_box.setStretch(1, 10)
|
||||
'''
|
||||
splitter1 = QSplitter(Qt.Vertical)
|
||||
splitter2 = QSplitter(Qt.Horizontal)
|
||||
splitter3 = QSplitter(Qt.Horizontal)
|
||||
splitter4 = QSplitter(Qt.Vertical)
|
||||
splitter5 = QSplitter(Qt.Horizontal)
|
||||
splitter6 = QSplitter(Qt.Vertical)
|
||||
splitter7 = QSplitter(Qt.Vertical)
|
||||
splitter8 = QSplitter(Qt.Vertical)
|
||||
splitter9 = QSplitter(Qt.Vertical)
|
||||
|
||||
splitter1.addWidget(self.browser1)
|
||||
splitter1.addWidget(splitter2)
|
||||
splitter1.setSizes([1, 13])
|
||||
|
||||
splitter2.addWidget(splitter6)
|
||||
splitter2.addWidget(splitter3)
|
||||
splitter2.setSizes([1, 3])
|
||||
|
||||
splitter3.addWidget(splitter4)
|
||||
splitter3.addWidget(splitter8)
|
||||
splitter3.setSizes([2, 1])
|
||||
|
||||
splitter4.addWidget(splitter5)
|
||||
splitter4.addWidget(self.browser2)
|
||||
splitter4.setSizes([2, 13])
|
||||
|
||||
splitter5.addWidget(self.browser3)
|
||||
# splitter5.addWidget(self.browser4)
|
||||
|
||||
splitter6.addWidget(self.browser5)
|
||||
splitter6.addWidget(splitter7)
|
||||
splitter6.setSizes([1, 2])
|
||||
|
||||
splitter7.addWidget(self.browser6)
|
||||
splitter7.addWidget(self.browser7)
|
||||
|
||||
splitter8.addWidget(self.browser8)
|
||||
splitter8.addWidget(splitter9)
|
||||
splitter8.setSizes([1, 2])
|
||||
|
||||
splitter9.addWidget(self.browser9)
|
||||
splitter9.addWidget(self.browser10)
|
||||
'''
|
||||
# main_box.addWidget(splitter1)
|
||||
self.setLayout(main_box)
|
||||
# self.setLayout(Vlayout1)
|
||||
|
||||
def setBackground(self):
|
||||
palette = QPalette()
|
||||
|
@ -32,10 +32,10 @@ Type = {
|
||||
'436207665': '发红包',
|
||||
'49': '分享链接'
|
||||
}
|
||||
charts_width = 1000
|
||||
charts_height = 500
|
||||
wordcloud_width = 1000
|
||||
wordcloud_height = 500
|
||||
charts_width = 800
|
||||
charts_height = 450
|
||||
wordcloud_width = 780
|
||||
wordcloud_height = 780
|
||||
|
||||
|
||||
def send_recv_rate(username):
|
||||
@ -44,7 +44,11 @@ def send_recv_rate(username):
|
||||
total_num = send_num + recv_num
|
||||
print(send_num, recv_num)
|
||||
c = (
|
||||
Pie(init_opts=opts.InitOpts(width=f"{charts_width}px", height=f"{charts_height}px"))
|
||||
Pie(init_opts=opts.InitOpts(
|
||||
bg_color='rgb(240,240,240)',
|
||||
width=f"{charts_width}px",
|
||||
height=f"{charts_height}px")
|
||||
)
|
||||
.add(
|
||||
"",
|
||||
[
|
||||
|
@ -75,7 +75,7 @@ class ContactController(QWidget, Ui_Dialog):
|
||||
self.lay0 = QVBoxLayout()
|
||||
# self.widget.setLayout(self.lay0)
|
||||
# self.widget.setStyleSheet('''QWidget{background-color:rgb(255, 255, 255);}''')
|
||||
self.stackedWidget.setStyleSheet('''QWidget{background-color:rgb(255, 255, 255);}''')
|
||||
self.stackedWidget.setStyleSheet('''QWidget{background-color:rgb(240, 240, 240);}''')
|
||||
self.frame = QtWidgets.QFrame()
|
||||
self.frame.setObjectName("frame")
|
||||
self.userinfo = userinfoUi.Ui_Frame() # 联系人信息界面
|
||||
|
@ -18,13 +18,20 @@ class Ui_Frame(object):
|
||||
Frame.setCursor(QtGui.QCursor(QtCore.Qt.IBeamCursor))
|
||||
Frame.setMouseTracking(True)
|
||||
Frame.setTabletTracking(True)
|
||||
self.layoutWidget = QtWidgets.QWidget(Frame)
|
||||
self.layoutWidget.setGeometry(QtCore.QRect(210, 100, 429, 82))
|
||||
self.layoutWidget.setObjectName("layoutWidget")
|
||||
self.gridLayout = QtWidgets.QGridLayout(self.layoutWidget)
|
||||
self.gridLayout.setContentsMargins(0, 0, 0, 0)
|
||||
self.horizontalLayout_3 = QtWidgets.QHBoxLayout(Frame)
|
||||
self.horizontalLayout_3.setObjectName("horizontalLayout_3")
|
||||
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
|
||||
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
|
||||
spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
||||
self.horizontalLayout_2.addItem(spacerItem)
|
||||
self.verticalLayout = QtWidgets.QVBoxLayout()
|
||||
self.verticalLayout.setObjectName("verticalLayout")
|
||||
spacerItem1 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
||||
self.verticalLayout.addItem(spacerItem1)
|
||||
self.gridLayout = QtWidgets.QGridLayout()
|
||||
self.gridLayout.setHorizontalSpacing(6)
|
||||
self.gridLayout.setObjectName("gridLayout")
|
||||
self.l_avatar = QtWidgets.QLabel(self.layoutWidget)
|
||||
self.l_avatar = QtWidgets.QLabel(Frame)
|
||||
self.l_avatar.setMinimumSize(QtCore.QSize(80, 80))
|
||||
self.l_avatar.setMaximumSize(QtCore.QSize(80, 80))
|
||||
self.l_avatar.setText("")
|
||||
@ -32,25 +39,33 @@ class Ui_Frame(object):
|
||||
self.l_avatar.setScaledContents(True)
|
||||
self.l_avatar.setObjectName("l_avatar")
|
||||
self.gridLayout.addWidget(self.l_avatar, 0, 0, 3, 1)
|
||||
self.l_remark = QtWidgets.QLabel(self.layoutWidget)
|
||||
self.l_remark = QtWidgets.QLabel(Frame)
|
||||
self.l_remark.setMinimumSize(QtCore.QSize(0, 30))
|
||||
self.l_remark.setMaximumSize(QtCore.QSize(16777215, 30))
|
||||
font = QtGui.QFont()
|
||||
font.setPointSize(15)
|
||||
self.l_remark.setFont(font)
|
||||
self.l_remark.setObjectName("l_remark")
|
||||
self.gridLayout.addWidget(self.l_remark, 0, 1, 1, 1)
|
||||
self.l_nickname = QtWidgets.QLabel(self.layoutWidget)
|
||||
self.l_nickname = QtWidgets.QLabel(Frame)
|
||||
self.l_nickname.setMinimumSize(QtCore.QSize(0, 30))
|
||||
self.l_nickname.setMaximumSize(QtCore.QSize(16777215, 30))
|
||||
self.l_nickname.setObjectName("l_nickname")
|
||||
self.gridLayout.addWidget(self.l_nickname, 1, 1, 1, 1)
|
||||
self.l_username = QtWidgets.QLabel(self.layoutWidget)
|
||||
self.l_username = QtWidgets.QLabel(Frame)
|
||||
self.l_username.setMinimumSize(QtCore.QSize(0, 20))
|
||||
self.l_username.setMaximumSize(QtCore.QSize(16777215, 20))
|
||||
self.l_username.setObjectName("l_username")
|
||||
self.gridLayout.addWidget(self.l_username, 2, 1, 1, 1)
|
||||
self.horizontalLayoutWidget = QtWidgets.QWidget(Frame)
|
||||
self.horizontalLayoutWidget.setGeometry(QtCore.QRect(210, 210, 429, 71))
|
||||
self.horizontalLayoutWidget.setObjectName("horizontalLayoutWidget")
|
||||
self.horizontalLayout = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget)
|
||||
self.horizontalLayout.setContentsMargins(0, 0, 0, 0)
|
||||
self.gridLayout.setRowStretch(0, 1)
|
||||
self.gridLayout.setRowStretch(1, 1)
|
||||
self.gridLayout.setRowStretch(2, 1)
|
||||
self.verticalLayout.addLayout(self.gridLayout)
|
||||
spacerItem2 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
||||
self.verticalLayout.addItem(spacerItem2)
|
||||
self.horizontalLayout = QtWidgets.QHBoxLayout()
|
||||
self.horizontalLayout.setObjectName("horizontalLayout")
|
||||
self.label = QtWidgets.QLabel(self.horizontalLayoutWidget)
|
||||
self.label = QtWidgets.QLabel(Frame)
|
||||
self.label.setMinimumSize(QtCore.QSize(80, 0))
|
||||
self.label.setMaximumSize(QtCore.QSize(80, 16777215))
|
||||
font = QtGui.QFont()
|
||||
@ -58,7 +73,7 @@ class Ui_Frame(object):
|
||||
self.label.setFont(font)
|
||||
self.label.setObjectName("label")
|
||||
self.horizontalLayout.addWidget(self.label)
|
||||
self.lineEdit = QtWidgets.QLineEdit(self.horizontalLayoutWidget)
|
||||
self.lineEdit = QtWidgets.QLineEdit(Frame)
|
||||
self.lineEdit.setMinimumSize(QtCore.QSize(0, 25))
|
||||
self.lineEdit.setMaximumSize(QtCore.QSize(16777215, 25))
|
||||
font = QtGui.QFont()
|
||||
@ -69,22 +84,29 @@ class Ui_Frame(object):
|
||||
self.lineEdit.setStyleSheet("background:transparent;border-width:0;border-style:outset")
|
||||
self.lineEdit.setObjectName("lineEdit")
|
||||
self.horizontalLayout.addWidget(self.lineEdit)
|
||||
self.horizontalLayoutWidget_2 = QtWidgets.QWidget(Frame)
|
||||
self.horizontalLayoutWidget_2.setGeometry(QtCore.QRect(210, 350, 431, 80))
|
||||
self.horizontalLayoutWidget_2.setObjectName("horizontalLayoutWidget_2")
|
||||
self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.horizontalLayoutWidget_2)
|
||||
self.horizontalLayout_2.setContentsMargins(0, 0, 0, 0)
|
||||
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
|
||||
self.btn_outbut = QtWidgets.QPushButton(self.horizontalLayoutWidget_2)
|
||||
self.btn_outbut.setObjectName("btn_outbut")
|
||||
self.horizontalLayout_2.addWidget(self.btn_outbut)
|
||||
self.btn_analysis = QtWidgets.QPushButton(self.horizontalLayoutWidget_2)
|
||||
self.btn_analysis.setObjectName("btn_analysis")
|
||||
self.horizontalLayout_2.addWidget(self.btn_analysis)
|
||||
self.verticalLayout.addLayout(self.horizontalLayout)
|
||||
spacerItem3 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
||||
self.verticalLayout.addItem(spacerItem3)
|
||||
self.progressBar = QtWidgets.QProgressBar(Frame)
|
||||
self.progressBar.setGeometry(QtCore.QRect(210, 480, 451, 23))
|
||||
self.progressBar.setProperty("value", 24)
|
||||
self.progressBar.setObjectName("progressBar")
|
||||
self.verticalLayout.addWidget(self.progressBar)
|
||||
spacerItem4 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
|
||||
self.verticalLayout.addItem(spacerItem4)
|
||||
self.verticalLayout.setStretch(0, 2)
|
||||
self.verticalLayout.setStretch(1, 3)
|
||||
self.verticalLayout.setStretch(2, 4)
|
||||
self.verticalLayout.setStretch(3, 1)
|
||||
self.verticalLayout.setStretch(4, 4)
|
||||
self.verticalLayout.setStretch(5, 1)
|
||||
self.verticalLayout.setStretch(6, 2)
|
||||
self.horizontalLayout_2.addLayout(self.verticalLayout)
|
||||
spacerItem5 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
|
||||
self.horizontalLayout_2.addItem(spacerItem5)
|
||||
self.horizontalLayout_2.setStretch(0, 1)
|
||||
self.horizontalLayout_2.setStretch(1, 2)
|
||||
self.horizontalLayout_2.setStretch(2, 1)
|
||||
self.horizontalLayout_3.addLayout(self.horizontalLayout_2)
|
||||
|
||||
self.retranslateUi(Frame)
|
||||
QtCore.QMetaObject.connectSlotsByName(Frame)
|
||||
@ -97,5 +119,3 @@ class Ui_Frame(object):
|
||||
self.l_username.setText(_translate("Frame", "账号:TextLabel"))
|
||||
self.label.setText(_translate("Frame", "备注名"))
|
||||
self.lineEdit.setText(_translate("Frame", "曹雨萱"))
|
||||
self.btn_outbut.setText(_translate("Frame", "导出聊天记录"))
|
||||
self.btn_analysis.setText(_translate("Frame", "聊天统计"))
|
||||
|
@ -1,199 +1,280 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>Frame</class>
|
||||
<widget class="QFrame" name="Frame">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>800</width>
|
||||
<height>720</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="cursor">
|
||||
<cursorShape>IBeamCursor</cursorShape>
|
||||
</property>
|
||||
<property name="mouseTracking">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="tabletTracking">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Frame</string>
|
||||
</property>
|
||||
<widget class="QWidget" name="layoutWidget">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>210</x>
|
||||
<y>100</y>
|
||||
<width>429</width>
|
||||
<height>82</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="0" column="0" rowspan="3">
|
||||
<widget class="QLabel" name="l_avatar">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>80</width>
|
||||
<height>80</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>80</width>
|
||||
<height>80</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="pixmap">
|
||||
<pixmap>../../../a_img/be0fa6c0c4707fb5f7b37b660de826d3.jpg</pixmap>
|
||||
</property>
|
||||
<property name="scaledContents">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QLabel" name="l_remark">
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>15</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>曹雨萱</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QLabel" name="l_nickname">
|
||||
<property name="text">
|
||||
<string>昵称:997</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLabel" name="l_username">
|
||||
<property name="text">
|
||||
<string>账号:TextLabel</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="horizontalLayoutWidget">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>210</x>
|
||||
<y>210</y>
|
||||
<width>429</width>
|
||||
<height>71</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>80</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>80</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>15</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>备注名</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLineEdit" name="lineEdit">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>15</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
<property name="cursor">
|
||||
<cursorShape>ArrowCursor</cursorShape>
|
||||
</property>
|
||||
<property name="autoFillBackground">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">background:transparent;border-width:0;border-style:outset</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>曹雨萱</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="horizontalLayoutWidget_2">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>210</x>
|
||||
<y>350</y>
|
||||
<width>431</width>
|
||||
<height>80</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<item>
|
||||
<widget class="QPushButton" name="btn_outbut">
|
||||
<property name="text">
|
||||
<string>导出聊天记录</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="btn_analysis">
|
||||
<property name="text">
|
||||
<string>聊天统计</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QProgressBar" name="progressBar">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>210</x>
|
||||
<y>480</y>
|
||||
<width>451</width>
|
||||
<height>23</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="value">
|
||||
<number>24</number>
|
||||
</property>
|
||||
</widget>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
<class>Frame</class>
|
||||
<widget class="QFrame" name="Frame">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>800</width>
|
||||
<height>720</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="cursor">
|
||||
<cursorShape>IBeamCursor</cursorShape>
|
||||
</property>
|
||||
<property name="mouseTracking">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="tabletTracking">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Frame</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2" stretch="1,2,1">
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QVBoxLayout" name="verticalLayout" stretch="2,3,4,1,4,1,2">
|
||||
<item>
|
||||
<spacer name="verticalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QGridLayout" name="gridLayout" rowstretch="1,1,1">
|
||||
<property name="horizontalSpacing">
|
||||
<number>6</number>
|
||||
</property>
|
||||
<item row="0" column="0" rowspan="3">
|
||||
<widget class="QLabel" name="l_avatar">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>80</width>
|
||||
<height>80</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>80</width>
|
||||
<height>80</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="pixmap">
|
||||
<pixmap>../../../a_img/be0fa6c0c4707fb5f7b37b660de826d3.jpg</pixmap>
|
||||
</property>
|
||||
<property name="scaledContents">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QLabel" name="l_remark">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>30</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<height>30</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>15</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>曹雨萱</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QLabel" name="l_nickname">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>30</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<height>30</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>昵称:997</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="1">
|
||||
<widget class="QLabel" name="l_username">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>账号:TextLabel</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</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>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>80</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>80</width>
|
||||
<height>16777215</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>15</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>备注名</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLineEdit" name="lineEdit">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>0</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="maximumSize">
|
||||
<size>
|
||||
<width>16777215</width>
|
||||
<height>25</height>
|
||||
</size>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>15</pointsize>
|
||||
</font>
|
||||
</property>
|
||||
<property name="cursor">
|
||||
<cursorShape>ArrowCursor</cursorShape>
|
||||
</property>
|
||||
<property name="autoFillBackground">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">
|
||||
background:transparent;border-width:0;border-style:outset
|
||||
</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>曹雨萱</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</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>
|
||||
<item>
|
||||
<widget class="QProgressBar" name="progressBar">
|
||||
<property name="value">
|
||||
<number>24</number>
|
||||
</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>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
Loading…
Reference in New Issue
Block a user