-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/g4ixt/QtTinySA
- Loading branch information
Showing
11 changed files
with
972 additions
and
654 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Form implementation generated from reading ui file 'filebrowse.ui' | ||
# | ||
# Created by: PyQt5 UI code generator 5.15.10 | ||
# | ||
# 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, QtGui, QtWidgets | ||
|
||
|
||
class Ui_Filebrowse(object): | ||
def setupUi(self, Filebrowse): | ||
Filebrowse.setObjectName("Filebrowse") | ||
Filebrowse.resize(818, 405) | ||
self.listWidget = QtWidgets.QListWidget(Filebrowse) | ||
self.listWidget.setGeometry(QtCore.QRect(10, 20, 301, 311)) | ||
self.listWidget.setObjectName("listWidget") | ||
self.download = QtWidgets.QPushButton(Filebrowse) | ||
self.download.setGeometry(QtCore.QRect(10, 350, 80, 26)) | ||
self.download.setObjectName("download") | ||
self.picture = QtWidgets.QLabel(Filebrowse) | ||
self.picture.setGeometry(QtCore.QRect(320, 20, 481, 321)) | ||
self.picture.setText("") | ||
self.picture.setScaledContents(False) | ||
self.picture.setObjectName("picture") | ||
self.downloadBar = QtWidgets.QProgressBar(Filebrowse) | ||
self.downloadBar.setGeometry(QtCore.QRect(100, 350, 211, 26)) | ||
self.downloadBar.setProperty("value", 0) | ||
self.downloadBar.setObjectName("downloadBar") | ||
self.downloadInfo = QtWidgets.QLabel(Filebrowse) | ||
self.downloadInfo.setGeometry(QtCore.QRect(10, 380, 791, 20)) | ||
self.downloadInfo.setText("") | ||
self.downloadInfo.setObjectName("downloadInfo") | ||
|
||
self.retranslateUi(Filebrowse) | ||
QtCore.QMetaObject.connectSlotsByName(Filebrowse) | ||
|
||
def retranslateUi(self, Filebrowse): | ||
_translate = QtCore.QCoreApplication.translate | ||
Filebrowse.setWindowTitle(_translate("Filebrowse", "File List")) | ||
self.download.setText(_translate("Filebrowse", "Save")) |
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
Binary file not shown.
Oops, something went wrong.