summaryrefslogtreecommitdiff
path: root/core/pim/osearch
authortille <tille>2003-05-09 10:08:58 (UTC)
committer tille <tille>2003-05-09 10:08:58 (UTC)
commit49cc0e47343578c0dfe1294afdf574ebfc1f4f4b (patch) (side-by-side diff)
tree7be8fab8d44c6d96256ca5e195198431efb28c4e /core/pim/osearch
parentfd1f8bdfc8bad5a0344468118c66c6afe3044fde (diff)
downloadopie-49cc0e47343578c0dfe1294afdf574ebfc1f4f4b.zip
opie-49cc0e47343578c0dfe1294afdf574ebfc1f4f4b.tar.gz
opie-49cc0e47343578c0dfe1294afdf574ebfc1f4f4b.tar.bz2
datebook displays defaultview (or editor) for found day now (with patch)
addressbook (and todo) calls implemented, but not yet working
Diffstat (limited to 'core/pim/osearch') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/contactitem.cpp16
-rw-r--r--core/pim/osearch/contactitem.h2
-rw-r--r--core/pim/osearch/eventitem.cpp12
-rw-r--r--core/pim/osearch/eventitem.h1
4 files changed, 30 insertions, 1 deletions
diff --git a/core/pim/osearch/contactitem.cpp b/core/pim/osearch/contactitem.cpp
index 86879aa..a25ac23 100644
--- a/core/pim/osearch/contactitem.cpp
+++ b/core/pim/osearch/contactitem.cpp
@@ -15,2 +15,3 @@
#include <opie/ocontact.h>
+#include <qpe/qcopenvelope_qws.h>
@@ -35 +36,16 @@ QString ContactItem::toRichText()
+
+void ContactItem::editItem()
+{
+ QCopEnvelope e("QPE/Application/addressbook", "editEvent(int)");
+// QCopEnvelope e("QPE/Addressbook", "editEvent(int)");
+ e << _contact->uid();
+}
+
+void ContactItem::showItem()
+{
+ QCopEnvelope e("QPE/Application/addressbook", "editEvent(int)");
+// QCopEnvelope e("QPE/Addressbook", "viewDefault(QDate)");
+ e << _contact->uid();
+}
+
diff --git a/core/pim/osearch/contactitem.h b/core/pim/osearch/contactitem.h
index 3f2915c..431adef 100644
--- a/core/pim/osearch/contactitem.h
+++ b/core/pim/osearch/contactitem.h
@@ -30,2 +30,4 @@ public:
virtual QString toRichText();
+ virtual void showItem();
+ virtual void editItem();
diff --git a/core/pim/osearch/eventitem.cpp b/core/pim/osearch/eventitem.cpp
index bf5b2b9..758ad85 100644
--- a/core/pim/osearch/eventitem.cpp
+++ b/core/pim/osearch/eventitem.cpp
@@ -4,3 +4,3 @@
//
-// Description:
+// Description:
//
@@ -14,2 +14,3 @@
+#include <qdatetime.h>
#include <qpe/qcopenvelope_qws.h>
@@ -40 +41,10 @@ void EventItem::editItem()
}
+
+void EventItem::showItem()
+{
+ QCopEnvelope e("QPE/Application/datebook", "viewDefault(QDate)");
+ QDate day = _event->startDateTime().date();
+ qDebug("sending view day %s",day.toString().latin1());
+ e << day;
+}
+
diff --git a/core/pim/osearch/eventitem.h b/core/pim/osearch/eventitem.h
index c3483de..999f0ac 100644
--- a/core/pim/osearch/eventitem.h
+++ b/core/pim/osearch/eventitem.h
@@ -31,2 +31,3 @@ public:
virtual void editItem();
+ virtual void showItem();