mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-02-28 14:51:39 +00:00
The directories dialog is now the main window. There's probably many glitches left to fix due to that change, but the basic functionalities are there.
--HG-- rename : qt/base/main_window.py => qt/base/result_window.py rename : qt/pe/main_window.py => qt/pe/result_window.py
This commit is contained in:
27
qt/pe/result_window.py
Normal file
27
qt/pe/result_window.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Created By: Virgil Dupras
|
||||
# Created On: 2009-05-23
|
||||
# Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
||||
#
|
||||
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
||||
# which should be included with this package. The terms are also available at
|
||||
# http://www.hardcoded.net/licenses/bsd_license
|
||||
|
||||
from PyQt4.QtCore import SIGNAL
|
||||
from PyQt4.QtGui import QMessageBox, QAction
|
||||
|
||||
from ..base.result_window import ResultWindow as ResultWindowBase
|
||||
|
||||
class ResultWindow(ResultWindowBase):
|
||||
def _setupUi(self):
|
||||
ResultWindowBase._setupUi(self)
|
||||
self.actionClearPictureCache = QAction("Clear Picture Cache", self)
|
||||
self.menuFile.insertAction(self.actionClearIgnoreList, self.actionClearPictureCache)
|
||||
self.connect(self.actionClearPictureCache, SIGNAL("triggered()"), self.clearPictureCacheTriggered)
|
||||
|
||||
def clearPictureCacheTriggered(self):
|
||||
title = "Clear Picture Cache"
|
||||
msg = "Do you really want to remove all your cached picture analysis?"
|
||||
if self.app.confirm(title, msg, QMessageBox.No):
|
||||
self.app.scanner.clear_picture_cache()
|
||||
QMessageBox.information(self, title, "Picture cache cleared.")
|
||||
|
||||
Reference in New Issue
Block a user