summaryrefslogtreecommitdiff
path: root/core/pim/today/todayconfigwidget.h
authorharlekin <harlekin>2002-09-22 22:29:34 (UTC)
committer harlekin <harlekin>2002-09-22 22:29:34 (UTC)
commita26d188b7b91f9bdce1e6a44c40ce874cd50abde (patch) (side-by-side diff)
tree26a7efeca0a0778d3a96f876cb030dd414a177be /core/pim/today/todayconfigwidget.h
parente49230a12104b718c46a34c81b6c0e608c9d40be (diff)
downloadopie-a26d188b7b91f9bdce1e6a44c40ce874cd50abde.zip
opie-a26d188b7b91f9bdce1e6a44c40ce874cd50abde.tar.gz
opie-a26d188b7b91f9bdce1e6a44c40ce874cd50abde.tar.bz2
interface updates
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