Helpviewer/HelpClearPrivateDataDialog.py

Mon, 18 Jan 2010 18:02:08 +0000

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 18 Jan 2010 18:02:08 +0000
changeset 79
ad8f102f45cf
parent 13
1af94a91f439
child 96
9624a110667d
permissions
-rw-r--r--

Fixed a type, regenerated the .ts-files and updated German and Spanish translations.

# -*- coding: utf-8 -*-

# Copyright (c) 2009 - 2010 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing a dialog to select which private data to clear.
"""

from PyQt4.QtGui import QDialog
from PyQt4.QtCore import pyqtSlot, qVersion

from .Ui_HelpClearPrivateDataDialog import Ui_HelpClearPrivateDataDialog

class HelpClearPrivateDataDialog(QDialog, Ui_HelpClearPrivateDataDialog):
    """
    Class implementing a dialog to select which private data to clear.
    """
    def __init__(self, parent = None):
        """
        Constructor
        
        @param parent reference to the parent widget (QWidget)
        """
        QDialog.__init__(self, parent)
        self.setupUi(self)
    
    def getData(self):
        """
        Public method to get the data from the dialog.
        
        @return tuple of flags indicating which data to clear (browsing history,
            search history, favicons, disk cache, cookies, passwords) (list of boolean)
        """
        return (self.historyCheckBox.isChecked(), 
                self.searchCheckBox.isChecked(), 
                self.iconsCheckBox.isChecked(), 
                self.cacheCheckBox.isChecked(), 
                self.cookiesCheckBox.isChecked(), 
                self.passwordsCheckBox.isChecked())

eric ide

mercurial