summaryrefslogtreecommitdiff
path: root/core/pim/today/plugins/datebook/datebookplugin.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/today/plugins/datebook/datebookplugin.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugins/datebook/datebookplugin.cpp73
1 files changed, 73 insertions, 0 deletions
diff --git a/core/pim/today/plugins/datebook/datebookplugin.cpp b/core/pim/today/plugins/datebook/datebookplugin.cpp
new file mode 100644
index 0000000..d2a73df
--- a/dev/null
+++ b/core/pim/today/plugins/datebook/datebookplugin.cpp
@@ -0,0 +1,73 @@
+/*
+ * datebookplugin.cpp
+ *
+ * copyright : (c) 2002 by Maximilian Reiß
+ * email : harlekin@handhelds.org
+ *
+ */
+/***************************************************************************
+ * *
+ * 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. *
+ * *
+ ***************************************************************************/
+
+
+
+#include "datebookevent.h"
+#include "datebookplugin.h"
+#include "datebookpluginwidget.h"
+#include "datebookpluginconfig.h"
+
+#include "../../configwidget.h"
+
+#include <qpe/timestring.h>
+#include <qpe/config.h>
+
+
+DatebookPlugin::DatebookPlugin() {
+}
+
+DatebookPlugin::~DatebookPlugin() {
+}
+
+QString DatebookPlugin::pluginName() const {
+ return "Datebook plugin";
+}
+
+double DatebookPlugin::versionNumber() const {
+ return 0.1;
+}
+
+QString DatebookPlugin::pixmapNameWidget() const {
+ return "DateBook";
+}
+
+QWidget* DatebookPlugin::widget( QWidget* wid ) {
+ return new DatebookPluginWidget( wid, "Datebook" );
+}
+
+QString DatebookPlugin::pixmapNameConfig() const {
+ return "DateBook";
+}
+
+ConfigWidget* DatebookPlugin::configWidget( QWidget* wid ) {
+ return new DatebookPluginConfig( wid , "Datebook" );
+}
+
+QString DatebookPlugin::appName() const {
+ return "datebook";
+}
+
+int DatebookPlugin::minHeight() const {
+ return 10;
+}
+
+int DatebookPlugin::maxHeight() const {
+ return 100;
+}
+
+
+