forked from LC044/WeChatMsg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
248 additions
and
48 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Form implementation generated from reading ui file 'chatUi.ui' | ||
# | ||
# Created by: PyQt5 UI code generator 5.15.7 | ||
# | ||
# WARNING: Any manual changes made to this file will be lost when pyuic5 is | ||
# run again. Do not edit this file unless you know what you are doing. | ||
|
||
|
||
from PyQt5 import QtCore, QtWidgets | ||
|
||
|
||
class Ui_Form(object): | ||
def setupUi(self, Form): | ||
Form.setObjectName("Form") | ||
Form.resize(840, 752) | ||
Form.setStyleSheet("background: rgb(240, 240, 240);") | ||
self.horizontalLayout_2 = QtWidgets.QHBoxLayout(Form) | ||
self.horizontalLayout_2.setObjectName("horizontalLayout_2") | ||
self.verticalLayout_2 = QtWidgets.QVBoxLayout() | ||
self.verticalLayout_2.setSpacing(0) | ||
self.verticalLayout_2.setObjectName("verticalLayout_2") | ||
self.verticalLayout = QtWidgets.QVBoxLayout() | ||
self.verticalLayout.setObjectName("verticalLayout") | ||
self.horizontalLayout = QtWidgets.QHBoxLayout() | ||
self.horizontalLayout.setObjectName("horizontalLayout") | ||
self.label = QtWidgets.QLabel(Form) | ||
self.label.setText("") | ||
self.label.setObjectName("label") | ||
self.horizontalLayout.addWidget(self.label) | ||
self.lineEdit = QtWidgets.QLineEdit(Form) | ||
self.lineEdit.setMinimumSize(QtCore.QSize(200, 30)) | ||
self.lineEdit.setMaximumSize(QtCore.QSize(200, 16777215)) | ||
self.lineEdit.setStyleSheet("background:transparent;\n" | ||
" border-width:0;\n" | ||
" border-style:outset;\n" | ||
" background-color:rgb(226,226,226);\n" | ||
" ") | ||
self.lineEdit.setCursorMoveStyle(QtCore.Qt.VisualMoveStyle) | ||
self.lineEdit.setObjectName("lineEdit") | ||
self.horizontalLayout.addWidget(self.lineEdit) | ||
self.label_2 = QtWidgets.QLabel(Form) | ||
self.label_2.setText("") | ||
self.label_2.setObjectName("label_2") | ||
self.horizontalLayout.addWidget(self.label_2) | ||
self.verticalLayout.addLayout(self.horizontalLayout) | ||
self.verticalLayout_2.addLayout(self.verticalLayout) | ||
self.listWidget = QtWidgets.QListWidget(Form) | ||
self.listWidget.setMinimumSize(QtCore.QSize(250, 0)) | ||
self.listWidget.setMaximumSize(QtCore.QSize(250, 16777215)) | ||
self.listWidget.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) | ||
self.listWidget.setObjectName("listWidget") | ||
self.verticalLayout_2.addWidget(self.listWidget) | ||
self.verticalLayout_2.setStretch(1, 1) | ||
self.horizontalLayout_2.addLayout(self.verticalLayout_2) | ||
self.stackedWidget = QtWidgets.QStackedWidget(Form) | ||
self.stackedWidget.setObjectName("stackedWidget") | ||
self.horizontalLayout_2.addWidget(self.stackedWidget) | ||
self.horizontalLayout_2.setStretch(1, 1) | ||
|
||
self.retranslateUi(Form) | ||
self.stackedWidget.setCurrentIndex(-1) | ||
QtCore.QMetaObject.connectSlotsByName(Form) | ||
|
||
def retranslateUi(self, Form): | ||
_translate = QtCore.QCoreApplication.translate | ||
Form.setWindowTitle(_translate("Form", "Form")) |
Oops, something went wrong.