VIS-48 #10

Merged
s416067 merged 4 commits from VIS-48 into master 2021-01-25 16:26:56 +01:00
Showing only changes of commit 5e24b10198 - Show all commits

View File

@ -53,10 +53,19 @@ class LibraryTableButtons(QWidget):
if ret == self.exPopup.Yes:
os.remove(file)
table.fillTable(type)
def analyzeFile():
# todo: run script detect.py --source ../files/input/file.mp4
pass
layout = QHBoxLayout()
layout.setContentsMargins(0,0,0,0)
layout.setSpacing(0)
if type == LIB_RAW:
analyze_btn = QPushButton('Analyze')
analyze_btn.clicked.connect(analyzeFile)
layout.addWidget(analyze_btn)
view_btn = QPushButton('View')
view_btn.clicked.connect(viewFile)