summaryrefslogtreecommitdiff
path: root/core/pim/osearch/eventitem.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/osearch/eventitem.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/osearch/eventitem.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/core/pim/osearch/eventitem.cpp b/core/pim/osearch/eventitem.cpp
new file mode 100644
index 0000000..516a274
--- a/dev/null
+++ b/core/pim/osearch/eventitem.cpp
@@ -0,0 +1,40 @@
+//
+//
+// C++ Implementation: $MODULE$
+//
+// Description:
+//
+//
+// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+#include "eventitem.h"
+
+#include <qpe/qcopenvelope_qws.h>
+#include <opie/oevent.h>
+
+EventItem::EventItem(OListViewItem* parent, OEvent *event)
+ : ResultItem(parent)
+{
+ _event = event;
+ setText(0, _event->description() );
+}
+
+
+EventItem::~EventItem()
+{
+}
+
+
+QString EventItem::toRichText()
+{
+ return _event->toRichText();
+}
+
+void EventItem::editItem()
+{
+ QCopEnvelope e("QPE/Application/datebook", "editEvent(int)");
+ e << _event->uid();
+} \ No newline at end of file