added the view after uploading the file
This commit is contained in:
parent
98c1768d4f
commit
a4b04c7c8f
@ -23,7 +23,7 @@ def files(path):
|
|||||||
yield file
|
yield file
|
||||||
|
|
||||||
def save_input(oldpath):
|
def save_input(oldpath):
|
||||||
# make timestampt the filename, so it wouln't overwrite
|
# add timestampt the filename, so it wouln't overwrite
|
||||||
timestamp = str(int(time.time()))
|
timestamp = str(int(time.time()))
|
||||||
filename = timestamp + '.' + oldpath.split('.')[-1]
|
filename = timestamp + '.' + oldpath.split('.')[-1]
|
||||||
newpath = inputFilePath + '\\' + filename
|
newpath = inputFilePath + '\\' + filename
|
||||||
@ -71,13 +71,29 @@ class LibraryTableButtons(QWidget):
|
|||||||
|
|
||||||
class LibraryTable(QTableWidget):
|
class LibraryTable(QTableWidget):
|
||||||
|
|
||||||
def __init__(self, type, parent=None):
|
def __init__(self, type, singleFilePath = None, parent = None):
|
||||||
QTableWidget.__init__(self)
|
QTableWidget.__init__(self)
|
||||||
self.fillTable(type)
|
self.fillTable(type, singleFilePath)
|
||||||
|
|
||||||
def fillTable(self, type):
|
def fillTable(self, type, singleFilePath = None):
|
||||||
self.setColumnCount(3)
|
self.setColumnCount(3)
|
||||||
|
|
||||||
|
if singleFilePath != None:
|
||||||
|
self.setRowCount(1)
|
||||||
|
|
||||||
|
self.setHorizontalHeaderLabels(['Upload date', 'Filename', 'Options'])
|
||||||
|
filePath = inputFilePath
|
||||||
|
|
||||||
|
self.horizontalHeader().setSectionResizeMode(0, QHeaderView.Stretch)
|
||||||
|
self.horizontalHeader().setSectionResizeMode(1, QHeaderView.Stretch)
|
||||||
|
self.horizontalHeader().setSectionResizeMode(2, QHeaderView.ResizeToContents)
|
||||||
|
|
||||||
|
self.setItem(0,0,QTableWidgetItem(str(datetime.fromtimestamp(os.path.getmtime(singleFilePath)))))
|
||||||
|
self.setItem(0,1,QTableWidgetItem(str(os.path.basename(singleFilePath))))
|
||||||
|
self.setCellWidget(0,2,LibraryTableButtons(singleFilePath, self, type))
|
||||||
|
|
||||||
|
|
||||||
|
else:
|
||||||
if type == LIB_RAW:
|
if type == LIB_RAW:
|
||||||
self.setHorizontalHeaderLabels(['Upload date', 'Filename', 'Options'])
|
self.setHorizontalHeaderLabels(['Upload date', 'Filename', 'Options'])
|
||||||
filePath = inputFilePath
|
filePath = inputFilePath
|
||||||
@ -170,7 +186,9 @@ class MainWindow(QMainWindow):
|
|||||||
dialog.setFilter(QDir.Files)
|
dialog.setFilter(QDir.Files)
|
||||||
if dialog.exec_():
|
if dialog.exec_():
|
||||||
file_path = dialog.selectedFiles()[0] # ['C:/Users/agatha/Desktop/SYI/VisionScore/win_venv/requirements.txt']
|
file_path = dialog.selectedFiles()[0] # ['C:/Users/agatha/Desktop/SYI/VisionScore/win_venv/requirements.txt']
|
||||||
save_input(file_path)
|
newPath = save_input(file_path)
|
||||||
|
singleFileTable = LibraryTable(LIB_RAW, newPath)
|
||||||
|
self.setCentralWidget(singleFileTable)
|
||||||
|
|
||||||
def initUI(self):
|
def initUI(self):
|
||||||
self.setGeometry(0, 0, 600, 400)
|
self.setGeometry(0, 0, 600, 400)
|
||||||
|
Loading…
Reference in New Issue
Block a user