summaryrefslogtreecommitdiff
path: root/core/pim/osearch/eventitem.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/osearch/eventitem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/eventitem.cpp12
1 files changed, 11 insertions, 1 deletions
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
@@ -1,26 +1,27 @@
//
//
// C++ Implementation: $MODULE$
//
-// Description:
+// Description:
//
//
// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "eventitem.h"
+#include <qdatetime.h>
#include <qpe/qcopenvelope_qws.h>
#include <opie/oevent.h>
EventItem::EventItem(OListViewItem* parent, OEvent *event)
: ResultItem(parent)
{
_event = event;
setText(0, _event->toShortText() );
}
EventItem::~EventItem()
@@ -29,12 +30,21 @@ EventItem::~EventItem()
QString EventItem::toRichText()
{
return _event->toRichText();
}
void EventItem::editItem()
{
QCopEnvelope e("QPE/Application/datebook", "editEvent(int)");
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;
+}
+