summaryrefslogtreecommitdiff
path: root/core/pim/today/todayconfigwidget.h
Side-by-side diff
Diffstat (limited to 'core/pim/today/todayconfigwidget.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/todayconfigwidget.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/core/pim/today/todayconfigwidget.h b/core/pim/today/todayconfigwidget.h
new file mode 100644
index 0000000..48cf379
--- a/dev/null
+++ b/core/pim/today/todayconfigwidget.h
@@ -0,0 +1,21 @@
+
+#ifndef CONFIG_WIDGET_H
+#define CONFIG_WIDGET_H
+
+
+class TodayConfigWidget : public QWidget {
+
+
+public:
+
+ TodayConfigWidget( QWidget *parent, const char *name ) : QWidget( parent, name ) {} ;
+ virtual ~TodayConfigWidget() {};
+
+ /**
+ * Plugins need to reimplement this in the config widget
+ * Used when the config dialog is closed to write config stuff
+ */
+ virtual void writeConfig() = 0;
+};
+
+#endif