summaryrefslogtreecommitdiffstats
path: root/konversation/src/tabs_preferences.h
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/tabs_preferences.h')
-rw-r--r--konversation/src/tabs_preferences.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/konversation/src/tabs_preferences.h b/konversation/src/tabs_preferences.h
new file mode 100644
index 0000000..de78817
--- /dev/null
+++ b/konversation/src/tabs_preferences.h
@@ -0,0 +1,33 @@
+/*
+ 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.
+*/
+
+/*
+ Copyright (C) 2006 Eike Hein <hein@kde.org>
+*/
+
+#ifndef TABS_PREFERENCES_H
+#define TABS_PREFERENCES_H
+
+#include "tabs_preferencesui.h"
+
+
+class Tabs_Config : public Tabs_PreferencesUI
+{
+ Q_OBJECT
+
+ public:
+ explicit Tabs_Config(QWidget *parent = 0, const char *name = 0);
+ ~Tabs_Config();
+
+ public slots:
+ virtual void show();
+
+ protected slots:
+ void toggleCheckBoxes(int activated);
+};
+
+#endif