summaryrefslogtreecommitdiff
path: root/core/pim/osearch/contactitem.cpp
Side-by-side diff
Diffstat (limited to 'core/pim/osearch/contactitem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/contactitem.cpp25
1 files changed, 15 insertions, 10 deletions
diff --git a/core/pim/osearch/contactitem.cpp b/core/pim/osearch/contactitem.cpp
index 788a415..7d8ecf1 100644
--- a/core/pim/osearch/contactitem.cpp
+++ b/core/pim/osearch/contactitem.cpp
@@ -2,7 +2,7 @@
//
// C++ Implementation: $MODULE$
//
-// Description:
+// Description:
//
//
// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
@@ -34,18 +34,23 @@ QString ContactItem::toRichText()
return _contact->toRichText();
}
-
-void ContactItem::editItem()
+void ContactItem::action( int act )
{
- QCopEnvelope e("QPE/Application/addressbook", "edit(int)");
-// QCopEnvelope e("QPE/Addressbook", "edit(int)");
+if (act == 0){
+ QCopEnvelope e("QPE/Application/addressbook", "show(int)");
e << _contact->uid();
+}else if(act == 1){
+ QCopEnvelope e("QPE/Application/addressbook", "edit(int)");
+ e << _contact->uid();
}
-void ContactItem::showItem()
-{
- QCopEnvelope e("QPE/Application/addressbook", "show(int)");
-// QCopEnvelope e("QPE/Addressbook", "show(int)");
- e << _contact->uid();
}
+QIntDict<QString> ContactItem::actions()
+{
+ QIntDict<QString> result;
+ result.insert( 0, new QString( QObject::tr("show") ) );
+ result.insert( 1, new QString( QObject::tr("edit") ) );
+ return result;
+
+}