summaryrefslogtreecommitdiffstats
path: root/kcontrol/privacy
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-03-02 20:42:18 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-03-02 20:42:18 -0600
commit9ee857cfe81d576da157a5561c72d8eede524919 (patch)
tree75f3d90b7bd2284db92343d6eeaaa8aa926a3df4 /kcontrol/privacy
parentfa8e4262f55433b54a2e97922b86ce922ccef1d8 (diff)
downloadtdebase-9ee857cfe81d576da157a5561c72d8eede524919.tar.gz
tdebase-9ee857cfe81d576da157a5561c72d8eede524919.zip
Provide kcmprivacy option to delete kpdf metadata.
This resolves bug report 1216.
Diffstat (limited to 'kcontrol/privacy')
-rw-r--r--kcontrol/privacy/kprivacymanager.cpp14
-rw-r--r--kcontrol/privacy/kprivacymanager.h1
-rw-r--r--kcontrol/privacy/privacy.cpp13
-rw-r--r--kcontrol/privacy/privacy.h1
4 files changed, 26 insertions, 3 deletions
diff --git a/kcontrol/privacy/kprivacymanager.cpp b/kcontrol/privacy/kprivacymanager.cpp
index c52c1b5c4..c1ff81338 100644
--- a/kcontrol/privacy/kprivacymanager.cpp
+++ b/kcontrol/privacy/kprivacymanager.cpp
@@ -145,7 +145,7 @@ bool KPrivacyManager::clearFavIcons()
{
TQDir favIconDir(TDEGlobal::dirs()->saveLocation( "cache", "favicons/" ));
favIconDir.setFilter( TQDir::Files );
-
+
TQStringList entries = favIconDir.entryList();
// erase all files in favicon directory
@@ -154,6 +154,18 @@ bool KPrivacyManager::clearFavIcons()
return m_error;
}
+bool KPrivacyManager::clearKPDFDocData()
+{
+ TQDir kPDFDir(TDEGlobal::dirs()->saveLocation( "data", "kpdf/" ));
+ kPDFDir.setFilter( TQDir::Files );
+
+ TQStringList entries = kPDFDir.entryList();
+
+ // erase all files in kpdf directory
+ for( TQStringList::Iterator it = entries.begin() ; it != entries.end() ; ++it)
+ if(!kPDFDir.remove(*it)) m_error = true;
+ return m_error;
+}
bool KPrivacyManager::isApplicationRegistered(const TQString &appName)
{
diff --git a/kcontrol/privacy/kprivacymanager.h b/kcontrol/privacy/kprivacymanager.h
index 11d4941fe..70d7b77cf 100644
--- a/kcontrol/privacy/kprivacymanager.h
+++ b/kcontrol/privacy/kprivacymanager.h
@@ -45,6 +45,7 @@ public:
bool clearQuickStartMenu() const;
bool clearRecentDocuments() const;
bool clearFavIcons();
+ bool clearKPDFDocData();
private:
bool isApplicationRegistered(const TQString &appName);
diff --git a/kcontrol/privacy/privacy.cpp b/kcontrol/privacy/privacy.cpp
index 535aa21cf..71fc3313b 100644
--- a/kcontrol/privacy/privacy.cpp
+++ b/kcontrol/privacy/privacy.cpp
@@ -97,7 +97,7 @@ Privacy::Privacy(TQWidget *parent, const char *name)
clearSavedClipboardContents = new TQCheckListItem(generalCLI,
i18n("Saved Clipboard Contents"),TQCheckListItem::CheckBox);
clearWebHistory = new TQCheckListItem(webbrowsingCLI,
- i18n("Web History"),TQCheckListItem::CheckBox);
+ i18n("Web and File Manager History"),TQCheckListItem::CheckBox);
clearWebCache = new TQCheckListItem(webbrowsingCLI,
i18n("Web Cache"),TQCheckListItem::CheckBox);
clearFormCompletion = new TQCheckListItem(webbrowsingCLI,
@@ -108,6 +108,8 @@ Privacy::Privacy(TQWidget *parent, const char *name)
i18n("Quick Start Menu"),TQCheckListItem::CheckBox);
clearFavIcons = new TQCheckListItem(webbrowsingCLI,
i18n("Favorite Icons"),TQCheckListItem::CheckBox);
+ clearKPDFDocData = new TQCheckListItem(generalCLI,
+ i18n("KPDF Document Data"),TQCheckListItem::CheckBox);
TQWhatsThis::add(sw, i18n("Check all cleanup actions you would like to perform. These will be executed by pressing the button below"));
TQWhatsThis::add(cleaningDialog->cleanupButton, i18n("Immediately performs the cleanup actions selected above"));
@@ -115,13 +117,14 @@ Privacy::Privacy(TQWidget *parent, const char *name)
clearThumbnails->setText(1, i18n("Clears all cached thumbnails"));
clearRunCommandHistory->setText(1, i18n("Clears the history of commands run through the Run Command tool on the desktop"));
clearAllCookies->setText(1, i18n("Clears all stored cookies set by websites"));
- clearWebHistory->setText(1, i18n("Clears the history of visited websites"));
+ clearWebHistory->setText(1, i18n("Clears the history of visited websites and file manager URLs"));
clearSavedClipboardContents->setText(1, i18n("Clears the clipboard contents stored by Klipper"));
clearWebCache->setText(1, i18n("Clears the temporary cache of websites visited"));
clearFormCompletion->setText(1, i18n("Clears values which were entered into forms on websites"));
clearRecentDocuments->setText(1, i18n("Clears the list of recently used documents from the TDE applications menu"));
clearQuickStartMenu->setText(1, i18n("Clears the entries from the list of recently started applications"));
clearFavIcons->setText(1, i18n("Clears the FavIcons cached from visited websites"));
+ clearKPDFDocData->setText(1, i18n("Clears all KPDF document data files"));
connect(sw, TQT_SIGNAL(selectionChanged()), TQT_SLOT(changed()));
@@ -136,6 +139,7 @@ Privacy::Privacy(TQWidget *parent, const char *name)
checklist.append(clearRecentDocuments);
checklist.append(clearQuickStartMenu);
checklist.append(clearFavIcons);
+ checklist.append(clearKPDFDocData);
connect(cleaningDialog->cleanupButton, TQT_SIGNAL(clicked()), TQT_SLOT(cleanup()));
connect(cleaningDialog->selectAllButton, TQT_SIGNAL(clicked()), TQT_SLOT(selectAll()));
@@ -175,6 +179,7 @@ void Privacy::load(bool useDefaults)
clearRecentDocuments->setOn(c->readBoolEntry("ClearRecentDocuments", true));
clearQuickStartMenu->setOn(c->readBoolEntry("ClearQuickStartMenu", true));
clearFavIcons->setOn(c->readBoolEntry("ClearFavIcons", true));
+ clearKPDFDocData->setOn(c->readBoolEntry("ClearKPDFDocData", true));
}
{
@@ -210,6 +215,7 @@ void Privacy::save()
c->writeEntry("ClearRecentDocuments", clearRecentDocuments->isOn());
c->writeEntry("ClearQuickStartMenu", clearQuickStartMenu->isOn());
c->writeEntry("ClearFavIcons", clearFavIcons->isOn());
+ c->writeEntry("ClearKPDFDocData", clearKPDFDocData->isOn());
}
{
@@ -293,6 +299,9 @@ void Privacy::cleanup()
if(item == clearFavIcons)
error = m_privacymanager->clearFavIcons();
+ if(item == clearKPDFDocData)
+ error = m_privacymanager->clearKPDFDocData();
+
if(error)
{
TQString errorText = i18n("Clearing of %1 failed").arg(item->text());
diff --git a/kcontrol/privacy/privacy.h b/kcontrol/privacy/privacy.h
index 18d234230..74d199dcf 100644
--- a/kcontrol/privacy/privacy.h
+++ b/kcontrol/privacy/privacy.h
@@ -66,6 +66,7 @@ private:
TQCheckListItem *clearRecentDocuments;
TQCheckListItem *clearQuickStartMenu;
TQCheckListItem *clearFavIcons;
+ TQCheckListItem *clearKPDFDocData;
//TQCheckListItem *clearFileDialogHistory;