VisionScore/win_venv/main.py

174 lines
5.4 KiB
Python
Raw Normal View History

2020-12-14 14:28:42 +01:00
#import tkinter as tk
import sys
import os
2020-12-21 22:42:37 +01:00
import shutil
2020-12-21 17:40:37 +01:00
from datetime import datetime
2020-12-21 22:42:37 +01:00
import time
2020-12-14 15:38:18 +01:00
from PyQt5 import QtCore
2020-12-21 17:40:37 +01:00
from PyQt5.QtWidgets import *
2020-12-14 15:38:18 +01:00
from PyQt5.QtGui import QIcon, QPixmap
2020-12-21 17:40:37 +01:00
from PyQt5.QtCore import *
2020-12-14 15:38:18 +01:00
2020-12-21 17:40:37 +01:00
scriptPath = os.path.dirname(os.path.realpath(__file__))
inputFilePath = scriptPath + '\\files\\input'
outputFilePath = scriptPath + '\\files\\output'
LIB_RAW = 0
LIB_VIS = 1
2020-12-14 14:28:42 +01:00
2020-12-21 17:40:37 +01:00
def files(path):
for file in os.listdir(path):
if os.path.isfile(os.path.join(path, file)):
yield file
2021-01-04 12:23:17 +01:00
class deletePopup(QMessageBox):
def __init__(self, parent=None):
super(deletePopup,self).__init__(parent)
self.setText("Are you sure you want to delete the file?")
self.setIcon(self.Warning)
self.setWindowTitle("Confirm deletion")
self.setStandardButtons(self.Yes | self.No)
2021-01-04 12:23:17 +01:00
2020-12-21 22:42:37 +01:00
def save_input(oldpath):
# make timestampt the filename, so it wouln't overwrite
timestamp = str(int(time.time()))
filename = timestamp + '.' + oldpath.split('.')[-1]
newpath = filePath + '\\' + filename
shutil.copy(oldpath, newpath)
2020-12-21 23:10:17 +01:00
return newpath
2020-12-21 22:42:37 +01:00
2020-12-21 17:40:37 +01:00
class LibraryTableButtons(QWidget):
def __init__(self, file, parent=None):
2020-12-21 17:40:37 +01:00
super(LibraryTableButtons,self).__init__(parent)
def viewFile():
os.startfile(file)
2021-01-04 12:22:19 +01:00
def deleteFile():
2021-01-04 12:23:17 +01:00
self.exPopup = deletePopup()
# self.exPopup.setGeometry(100, 200, 100, 100)
ret = self.exPopup.exec()
if ret == self.exPopup.Yes:
os.remove(file)
2021-01-04 12:22:19 +01:00
layout = QHBoxLayout()
2020-12-21 17:40:37 +01:00
layout.setContentsMargins(0,0,0,0)
layout.setSpacing(0)
view_btn = QPushButton('View')
view_btn.clicked.connect(viewFile)
layout.addWidget(view_btn)
2021-01-04 12:22:19 +01:00
delete_btn = QPushButton('Delete')
delete_btn.clicked.connect(deleteFile)
layout.addWidget(delete_btn)
2020-12-21 17:40:37 +01:00
self.setLayout(layout)
2020-12-21 21:39:56 +01:00
2020-12-21 17:40:37 +01:00
class LibraryTable(QTableWidget):
2020-12-21 21:39:56 +01:00
def __init__(self, type, parent=None):
2020-12-21 17:40:37 +01:00
QTableWidget.__init__(self)
self.setColumnCount(3)
if type == LIB_RAW:
self.setHorizontalHeaderLabels(['Upload date', 'Filename', 'Options'])
filePath = inputFilePath
else:
self.setHorizontalHeaderLabels(['Creation date', 'Filename', 'Options'])
filePath = outputFilePath
2020-12-21 17:40:37 +01:00
self.horizontalHeader().setSectionResizeMode(0, QHeaderView.ResizeToContents)
self.horizontalHeader().setSectionResizeMode(1, QHeaderView.Stretch)
self.horizontalHeader().setSectionResizeMode(2, QHeaderView.ResizeToContents)
dates = []
names = []
for index, file in enumerate(files(filePath)):
dates.append(QTableWidgetItem(str(datetime.fromtimestamp(os.path.getmtime(filePath + '/' + file)))))
names.append(QTableWidgetItem(str(file)))
self.setRowCount(len(dates))
for index, date in enumerate(dates):
self.setItem(index,0,date)
self.setItem(index,1,names[index])
self.setCellWidget(index,2,LibraryTableButtons(filePath + '\\' + names[index].text()))
2020-12-21 17:40:37 +01:00
2020-12-14 14:28:42 +01:00
2020-12-21 21:39:56 +01:00
class MainWindow(QMainWindow):
2020-12-21 17:40:37 +01:00
2020-12-21 21:39:56 +01:00
def __init__(self):
super().__init__()
self.initUI()
2020-12-21 17:40:37 +01:00
# Show raw uploaded files
def showInputLibrary(self):
libTable = LibraryTable(LIB_RAW)
self.setCentralWidget(libTable)
# Show visualisations
def showVisualisationsLibrary(self):
libTable = LibraryTable(LIB_VIS)
2020-12-21 21:39:56 +01:00
self.setCentralWidget(libTable)
2020-12-21 22:42:37 +01:00
def showUploadFile(self):
dialog = QFileDialog(self)
dialog.setFileMode(QFileDialog.AnyFile)
dialog.setFilter(QDir.Files)
if dialog.exec_():
file_path = dialog.selectedFiles()[0] # ['C:/Users/agatha/Desktop/SYI/VisionScore/win_venv/requirements.txt']
save_input(file_path)
2020-12-21 21:39:56 +01:00
def initUI(self):
self.setGeometry(0, 0, 600, 400)
self.setWindowTitle('VisionScore')
scriptDir = os.path.dirname(os.path.realpath(__file__))
self.setWindowIcon(QIcon(scriptDir + os.path.sep + 'static/v_logo.jpg'))
# Toolbar
menuBar = self.menuBar()
homeMenu = QMenu("&Home", self)
menuBar.addMenu(homeMenu)
2020-12-21 22:42:37 +01:00
# Upload file
uploadAct = QAction('&Upload new file', self)
uploadAct.triggered.connect(self.showUploadFile)
homeMenu.addAction(uploadAct)
2020-12-21 21:39:56 +01:00
#Library menu
libraryMenu = QMenu("&Library", self)
menuBar.addMenu(libraryMenu)
#Input files
inputAct = QAction('&Input files', self)
inputAct.triggered.connect(self.showInputLibrary)
libraryMenu.addAction(inputAct)
#Visualisations
visAct = QAction('&Visualisations', self)
visAct.triggered.connect(self.showVisualisationsLibrary)
libraryMenu.addAction(visAct)
2020-12-21 21:39:56 +01:00
# Exit app
exitAct = QAction('&Exit', self)
exitAct.setShortcut('Ctrl+Q')
exitAct.setStatusTip('Exit')
exitAct.triggered.connect(qApp.quit)
homeMenu.addAction(exitAct)
helpMenu = menuBar.addMenu("&Help")
self.show()
def main():
app = QApplication(sys.argv)
w = MainWindow()
2020-12-14 14:28:42 +01:00
sys.exit(app.exec_())
2020-12-21 21:39:56 +01:00
2020-12-14 14:28:42 +01:00
if __name__ == '__main__':
main()