added popup confirmation
This commit is contained in:
parent
f75fb1f333
commit
36d5a30be0
@ -15,6 +15,11 @@ def files(path):
|
||||
if os.path.isfile(os.path.join(path, file)):
|
||||
yield file
|
||||
|
||||
class deletePopup(QMessageBox):
|
||||
def __init__(self, parent=None):
|
||||
super(deletePopup,self).__init__(parent)
|
||||
self.question(self,'', "Are you sure you want to delete the file?", self.Yes | self.No)
|
||||
|
||||
class LibraryTableButtons(QWidget):
|
||||
def __init__(self, filename, parent=None):
|
||||
super(LibraryTableButtons,self).__init__(parent)
|
||||
@ -23,6 +28,10 @@ class LibraryTableButtons(QWidget):
|
||||
os.startfile(filePath + '\\' + filename)
|
||||
|
||||
def deleteFile():
|
||||
self.exPopup = deletePopup()
|
||||
self.exPopup.setGeometry(100, 200, 100, 100)
|
||||
# self.exPopup.show()
|
||||
if self.exPopup.Yes:
|
||||
os.remove(filePath + '\\' + filename)
|
||||
|
||||
layout = QHBoxLayout()
|
||||
|
Loading…
Reference in New Issue
Block a user