summaryrefslogtreecommitdiff
path: root/core/pim/today/plugin.cpp
authorkergoth <kergoth>2003-05-13 20:03:14 (UTC)
committer kergoth <kergoth>2003-05-13 20:03:14 (UTC)
commit2c26bb12add88b531ef49f725d0c48f421cb4d83 (patch) (side-by-side diff)
tree5d29b6f022eba93fea101745f3711a15ed464f14 /core/pim/today/plugin.cpp
parent4dd58bba07b8bf3a52c3a0464675c39cc5153c85 (diff)
downloadopie-2c26bb12add88b531ef49f725d0c48f421cb4d83.zip
opie-2c26bb12add88b531ef49f725d0c48f421cb4d83.tar.gz
opie-2c26bb12add88b531ef49f725d0c48f421cb4d83.tar.bz2
Example of the use of new plugin interface, disabled by default.
Diffstat (limited to 'core/pim/today/plugin.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/today/plugin.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/core/pim/today/plugin.cpp b/core/pim/today/plugin.cpp
new file mode 100644
index 0000000..349413b
--- a/dev/null
+++ b/core/pim/today/plugin.cpp
@@ -0,0 +1,17 @@
+#include "today.h"
+#include <qwidget.h>
+#include <qcombobox.h>
+#include <oappplugin.h>
+
+#define Q_BASEINSTANCE( i ) \
+ QUnknownInterface* iface = 0; \
+ i->queryInterface( IID_QUnknown, &iface ); \
+ return iface
+
+Q_EXPORT_INTERFACE()
+{
+ Today *t = new Today;
+ t->setCaption( Today::tr("Today") );
+ OAppPlugin *comp = new OAppPlugin(t);
+ Q_BASEINSTANCE( comp );
+}