dolphin/konqueror/settings/kio/kcookiesmanagement.h
Dawit Alemayehu c5012ab5c4 - Renamed policydlg.* to kcookiespolicyselectiondlg.*
- Reformatted code to adhere to kde coding style.
- Cleaned up code.
2011-09-15 13:32:27 -04:00

94 lines
2.8 KiB
C++

/**
* kcookiesmanagement.h - Cookies manager
*
* Copyright 2000-2001 Marco Pinelli <pinmc@orion.it>
* Copyright 2000-2001 Dawit Alemayehu <adawit@kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef KCOOKIESMANAGEMENT_H
#define KCOOKIESMANAGEMENT_H
#include <QtCore/QList>
#include <QtCore/QStringList>
#include <QtGui/QTreeWidget>
#include <QtCore/QHash>
#include <kcmodule.h>
#include "ui_kcookiesmanagement.h"
struct CookieProp;
class CookieListViewItem : public QTreeWidgetItem
{
public:
CookieListViewItem(QTreeWidget *parent, const QString &dom);
CookieListViewItem(QTreeWidgetItem *parent, CookieProp *cookie);
~CookieListViewItem();
QString domain() const { return mDomain; }
CookieProp* cookie() const { return mCookie; }
CookieProp* leaveCookie();
void setCookiesLoaded() { mCookiesLoaded = true; }
bool cookiesLoaded() const { return mCookiesLoaded; }
private:
void init( CookieProp* cookie,
const QString &domain = QString(),
bool cookieLoaded=false );
CookieProp *mCookie;
QString mDomain;
bool mCookiesLoaded;
};
class KCookiesManagement : public KCModule
{
Q_OBJECT
public:
KCookiesManagement(const KComponentData &componentData, QWidget *parent );
~KCookiesManagement();
virtual void load();
virtual void save();
virtual void defaults();
virtual QString quickHelp() const;
private Q_SLOTS:
void on_deleteButton_clicked();
void on_deleteAllButton_clicked();
void on_reloadButton_clicked();
void on_cookiesTreeWidget_itemExpanded(QTreeWidgetItem*);
void on_cookiesTreeWidget_currentItemChanged(QTreeWidgetItem*);
void on_changePolicyButton_clicked();
private:
void reset (bool deleteAll = false);
bool cookieDetails(CookieProp *cookie);
void clearCookieDetails();
bool policyenabled();
bool mDeleteAllFlag;
QWidget* mMainWidget;
Ui::KCookiesManagementUI mUi;
QStringList mDeletedDomains;
typedef QList<CookieProp *> CookiePropList;
QHash<QString, CookiePropList> mDeletedCookies;
};
#endif // KCOOKIESMANAGEMENT_H