summaryrefslogtreecommitdiff
path: root/core
Side-by-side diff
Diffstat (limited to 'core') (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
@@ -14,4 +14,5 @@
#include <opie/ocontact.h>
+#include <qpe/qcopenvelope_qws.h>
ContactItem::ContactItem(OListViewItem* parent, OContact *contact)
@@ -34,2 +35,17 @@ 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
@@ -29,4 +29,6 @@ public:
virtual QString toRichText();
+ virtual void showItem();
+ virtual void editItem();
private:
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
@@ -3,5 +3,5 @@
// C++ Implementation: $MODULE$
//
-// Description:
+// Description:
//
//
@@ -13,4 +13,5 @@
#include "eventitem.h"
+#include <qdatetime.h>
#include <qpe/qcopenvelope_qws.h>
#include <opie/oevent.h>
@@ -39,2 +40,11 @@ void EventItem::editItem()
e << _event->uid();
}
+
+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
@@ -30,4 +30,5 @@ public:
virtual QString toRichText();
virtual void editItem();
+ virtual void showItem();
private: