mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
c9ab6afc71
svn path=/trunk/KDE/kdebase/apps/; revision=1211211
56 lines
1.6 KiB
C++
56 lines
1.6 KiB
C++
/* This file is part of the KDE project
|
|
Copyright (C) 2001 Carsten Pfeiffer <pfeiffer@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; see the file COPYING. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef SETTINGS_PLUGIN
|
|
#define SETTINGS_PLUGIN
|
|
|
|
#include <kparts/plugin.h>
|
|
#include <klibloader.h>
|
|
|
|
class KConfig;
|
|
|
|
class SettingsPlugin : public KParts::Plugin
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SettingsPlugin( QObject* parent,
|
|
const QVariantList & );
|
|
virtual ~SettingsPlugin();
|
|
|
|
private:
|
|
bool cookiesEnabled( const QString& url );
|
|
void updateIOSlaves();
|
|
|
|
private slots:
|
|
void toggleJavascript( bool checked );
|
|
void toggleJava( bool checked );
|
|
void toggleCookies( bool checked );
|
|
void togglePlugins( bool checked );
|
|
void toggleImageLoading( bool checked );
|
|
void toggleProxy( bool checked );
|
|
void toggleCache( bool checked );
|
|
void cachePolicyChanged( int p );
|
|
|
|
void showPopup();
|
|
|
|
private:
|
|
KConfig* mConfig;
|
|
};
|
|
|
|
#endif // SETTINGS_PLUGIN
|