1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 06:37:17 +00:00

Pushed some action confirmation logic down from GUI layers to the core.

This commit is contained in:
Virgil Dupras
2012-03-10 10:58:08 -05:00
parent ef0a66f794
commit cd9f54163b
27 changed files with 1178 additions and 1329 deletions

View File

@@ -126,13 +126,7 @@ class DupeGuru(QObject):
#--- Public
def add_selected_to_ignore_list(self):
dupes = self.model.without_ref(self.model.selected_dupes)
if not dupes:
return
title = tr("Add to Ignore List")
msg = tr("All selected %d matches are going to be ignored in all subsequent scans. Continue?") % len(dupes)
if self.confirm(title, msg):
self.model.add_selected_to_ignore_list(self)
self.model.add_selected_to_ignore_list()
def copy_or_move_marked(self, copy):
opname = tr("copy") if copy else tr("move")
@@ -145,13 +139,7 @@ class DupeGuru(QObject):
self.model.copy_or_move_marked(copy, destination, recreate_path)
def remove_selected(self):
dupes = self.model.without_ref(self.model.selected_dupes)
if not dupes:
return
title = tr("Remove duplicates")
msg = tr("You are about to remove %d files from results. Continue?") % len(dupes)
if self.confirm(title, msg):
self.model.remove_selected(self)
self.model.remove_selected(self)
def askForRegCode(self):
reg = Registration(self.model)
@@ -164,12 +152,7 @@ class DupeGuru(QObject):
return answer == QMessageBox.Yes
def invokeCustomCommand(self):
cmd = self.prefs.custom_command
if cmd:
self.model.invoke_command(cmd)
else:
msg = tr("You have no custom command set up. Set it up in your preferences.")
QMessageBox.warning(self.resultWindow, tr("Custom Command"), msg)
self.model.invoke_custom_command()
def show_details(self):
self.details_dialog.show()
@@ -275,6 +258,9 @@ class DupeGuru(QObject):
window = QApplication.activeWindow()
QMessageBox.information(window, '', msg)
def ask_yes_no(self, prompt):
return self.confirm('', prompt)
def open_url(self, url):
url = QUrl(url)
QDesktopServices.openUrl(url)

View File

@@ -227,15 +227,7 @@ class ResultWindow(QMainWindow):
self.app.model.add_selected_to_ignore_list()
def clearIgnoreListTriggered(self):
title = tr("Clear Ignore List")
count = len(self.app.model.scanner.ignore_list)
if not count:
QMessageBox.information(self, title, tr("Nothing to clear."))
return
msg = tr("Do you really want to remove all %d items from the ignore list?") % count
if self.app.confirm(title, msg, QMessageBox.No):
self.app.model.scanner.ignore_list.Clear()
QMessageBox.information(self, title, tr("Ignore list cleared."))
self.app.model.clear_ignore_list()
def copyTriggered(self):
self.app.copy_or_move_marked(True)
@@ -303,13 +295,7 @@ class ResultWindow(QMainWindow):
self.app.show_preferences()
def removeMarkedTriggered(self):
count = self.app.model.results.mark_count
if not count:
return
title = tr("Remove duplicates")
msg = tr("You are about to remove %d files from results. Continue?") % count
if self.app.confirm(title, msg):
self.app.model.remove_marked()
self.app.model.remove_marked()
def removeSelectedTriggered(self):
self.app.model.remove_selected()