┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/kcm/kcmdolphingeneral.h
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-01-19 11:11:11 +0000
committerPeter Penz <[email protected]>2009-01-19 11:11:11 +0000
commit514fe2be7e2f5e35245cdfc05cf18d33c672c5f0 (patch)
tree8021faa30844069c89b425c2559145799eda69bc /src/kcm/kcmdolphingeneral.h
parenta038b894dbc1aaa51f0ed9149465e6eab264deff (diff)
added settings module 'General' that can be used by Konqueror
svn path=/trunk/KDE/kdebase/apps/; revision=913414
Diffstat (limited to 'src/kcm/kcmdolphingeneral.h')
-rw-r--r--src/kcm/kcmdolphingeneral.h46
1 files changed, 46 insertions, 0 deletions
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 <[email protected]> *
+ * *
+ * 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 <kcmodule.h>
+#include <QList>
+
+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<SettingsPageBase*> m_pages;
+};
+
+#endif