-
Notifications
You must be signed in to change notification settings - Fork 129
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
18 changed files
with
643 additions
and
131 deletions.
There are no files selected for viewing
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,72 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
################################################################################ | ||
## Form generated from reading UI file 'ui_local_eps.ui' | ||
## | ||
## Created by: Qt User Interface Compiler version 6.2.4 | ||
## | ||
## WARNING! All changes made in this file will be lost when recompiling UI file! | ||
################################################################################ | ||
|
||
from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale, | ||
QMetaObject, QObject, QPoint, QRect, | ||
QSize, QTime, QUrl, Qt) | ||
from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor, | ||
QFont, QFontDatabase, QGradient, QIcon, | ||
QImage, QKeySequence, QLinearGradient, QPainter, | ||
QPalette, QPixmap, QRadialGradient, QTransform) | ||
from PySide6.QtWidgets import (QApplication, QGridLayout, QHBoxLayout, QLabel, | ||
QListWidgetItem, QRadioButton, QSizePolicy, QSpacerItem, | ||
QWidget) | ||
|
||
from component.list.comic_list_widget import ComicListWidget | ||
|
||
class Ui_LocalEps(object): | ||
def setupUi(self, LocalEps): | ||
if not LocalEps.objectName(): | ||
LocalEps.setObjectName(u"LocalEps") | ||
LocalEps.resize(646, 391) | ||
self.gridLayout_2 = QGridLayout(LocalEps) | ||
self.gridLayout_2.setObjectName(u"gridLayout_2") | ||
self.gridLayout_3 = QGridLayout() | ||
self.gridLayout_3.setObjectName(u"gridLayout_3") | ||
self.bookList = ComicListWidget(LocalEps) | ||
self.bookList.setObjectName(u"bookList") | ||
self.bookList.setStyleSheet(u"") | ||
|
||
self.gridLayout_3.addWidget(self.bookList, 0, 0, 1, 1) | ||
|
||
|
||
self.gridLayout_2.addLayout(self.gridLayout_3, 4, 0, 1, 1) | ||
|
||
self.name = QLabel(LocalEps) | ||
self.name.setObjectName(u"name") | ||
|
||
self.gridLayout_2.addWidget(self.name, 0, 0, 1, 1) | ||
|
||
self.horizontalLayout = QHBoxLayout() | ||
self.horizontalLayout.setObjectName(u"horizontalLayout") | ||
self.showWaifu2x = QRadioButton(LocalEps) | ||
self.showWaifu2x.setObjectName(u"showWaifu2x") | ||
|
||
self.horizontalLayout.addWidget(self.showWaifu2x) | ||
|
||
self.horizontalSpacer = QSpacerItem(40, 20, QSizePolicy.Expanding, QSizePolicy.Minimum) | ||
|
||
self.horizontalLayout.addItem(self.horizontalSpacer) | ||
|
||
|
||
self.gridLayout_2.addLayout(self.horizontalLayout, 2, 0, 1, 1) | ||
|
||
|
||
self.retranslateUi(LocalEps) | ||
|
||
QMetaObject.connectSlotsByName(LocalEps) | ||
# setupUi | ||
|
||
def retranslateUi(self, LocalEps): | ||
LocalEps.setWindowTitle(QCoreApplication.translate("LocalEps", u"\u672c\u5730\u6f2b\u753b\u7ae0\u8282", None)) | ||
self.name.setText("") | ||
self.showWaifu2x.setText(QCoreApplication.translate("LocalEps", u"\u53ea\u663e\u793aWaifu2x", None)) | ||
# retranslateUi | ||
|
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
Oops, something went wrong.