From 514fe2be7e2f5e35245cdfc05cf18d33c672c5f0 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Mon, 19 Jan 2009 11:11:11 +0000 Subject: added settings module 'General' that can be used by Konqueror svn path=/trunk/KDE/kdebase/apps/; revision=913414 --- src/kcm/kcmdolphingeneral.h | 46 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 src/kcm/kcmdolphingeneral.h (limited to 'src/kcm/kcmdolphingeneral.h') diff --git a/src/kcm/kcmdolphingeneral.h b/src/kcm/kcmdolphingeneral.h new file mode 100644 index 000000000..9208803e2 --- /dev/null +++ b/src/kcm/kcmdolphingeneral.h @@ -0,0 +1,46 @@ +/*************************************************************************** + * Copyright (C) 2009 by Peter Penz * + * * + * 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 KCMDOLPHINGENERAL_H +#define KCMDOLPHINGENERAL_H + +#include +#include + +class SettingsPageBase; + +/** + * @brief Allow to configure general Dolphin settings. + */ +class DolphinGeneralConfigModule : public KCModule +{ + Q_OBJECT + +public: + DolphinGeneralConfigModule(QWidget* parent, const QVariantList& args); + virtual ~DolphinGeneralConfigModule(); + + virtual void save(); + virtual void defaults(); + +private: + QList m_pages; +}; + +#endif -- cgit v1.3.1