2009-06-01 09:55:11 +00:00
|
|
|
# Created By: Virgil Dupras
|
|
|
|
# Created On: 2009-05-23
|
2011-04-12 08:04:01 +00:00
|
|
|
# Copyright 2011 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
#
|
2010-09-30 10:17:41 +00:00
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
2009-08-05 08:59:46 +00:00
|
|
|
# which should be included with this package. The terms are also available at
|
2010-09-30 10:17:41 +00:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
2009-06-01 09:55:11 +00:00
|
|
|
|
|
|
|
from PyQt4.QtCore import SIGNAL
|
|
|
|
from PyQt4.QtGui import QMessageBox, QAction
|
|
|
|
|
2011-01-21 12:57:54 +00:00
|
|
|
from hscommon.trans import tr, trmsg
|
2011-01-15 15:29:35 +00:00
|
|
|
from ..base.result_window import ResultWindow as ResultWindowBase
|
2009-06-01 09:55:11 +00:00
|
|
|
|
2011-01-15 15:29:35 +00:00
|
|
|
class ResultWindow(ResultWindowBase):
|
2009-06-01 09:55:11 +00:00
|
|
|
def _setupUi(self):
|
2011-01-15 15:29:35 +00:00
|
|
|
ResultWindowBase._setupUi(self)
|
2011-01-21 12:57:54 +00:00
|
|
|
self.actionClearPictureCache = QAction(tr("Clear Picture Cache"), self)
|
2009-06-01 09:55:11 +00:00
|
|
|
self.menuFile.insertAction(self.actionClearIgnoreList, self.actionClearPictureCache)
|
|
|
|
self.connect(self.actionClearPictureCache, SIGNAL("triggered()"), self.clearPictureCacheTriggered)
|
|
|
|
|
|
|
|
def clearPictureCacheTriggered(self):
|
2011-01-21 12:57:54 +00:00
|
|
|
title = tr("Clear Picture Cache")
|
|
|
|
msg = trmsg("ClearPictureCacheConfirmMsg")
|
2011-01-15 15:29:35 +00:00
|
|
|
if self.app.confirm(title, msg, QMessageBox.No):
|
2010-01-14 15:14:26 +00:00
|
|
|
self.app.scanner.clear_picture_cache()
|
2011-01-21 12:57:54 +00:00
|
|
|
QMessageBox.information(self, title, trmsg("PictureCacheClearedMsg"))
|
2009-06-01 09:55:11 +00:00
|
|
|
|