mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 07:49:02 +00:00
e9a97afdf8
--HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%402
26 lines
1.0 KiB
Python
26 lines
1.0 KiB
Python
#!/usr/bin/env python
|
|
# Unit Name: main_window
|
|
# Created By: Virgil Dupras
|
|
# Created On: 2009-05-23
|
|
# $Id$
|
|
# Copyright 2009 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
from PyQt4.QtCore import SIGNAL
|
|
from PyQt4.QtGui import QMessageBox, QAction
|
|
|
|
from base.main_window import MainWindow as MainWindowBase
|
|
|
|
class MainWindow(MainWindowBase):
|
|
def _setupUi(self):
|
|
MainWindowBase._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._confirm(title, msg, QMessageBox.No):
|
|
self.app.scanner.match_factory.cached_blocks.clear()
|
|
QMessageBox.information(self, title, "Picture cache cleared.")
|
|
|