summaryrefslogtreecommitdiff
path: root/core/pim/osearch/contactitem.cpp
authortille <tille>2003-05-14 15:25:08 (UTC)
committer tille <tille>2003-05-14 15:25:08 (UTC)
commit0042c63bd72905598928621e6e849cd6303ddf27 (patch) (side-by-side diff)
treef56dc5935cc9a4ec0d4df46d219fd7fc29fe1526 /core/pim/osearch/contactitem.cpp
parentdbda71abdc7c13ac0acde21320ee00726d95dec4 (diff)
downloadopie-0042c63bd72905598928621e6e849cd6303ddf27.zip
opie-0042c63bd72905598928621e6e849cd6303ddf27.tar.gz
opie-0042c63bd72905598928621e6e849cd6303ddf27.tar.bz2
icons for todo, contact and event results indication the matching field
Diffstat (limited to 'core/pim/osearch/contactitem.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/osearch/contactitem.cpp87
1 files changed, 87 insertions, 0 deletions
diff --git a/core/pim/osearch/contactitem.cpp b/core/pim/osearch/contactitem.cpp
index 7d8ecf1..3928b1f 100644
--- a/core/pim/osearch/contactitem.cpp
+++ b/core/pim/osearch/contactitem.cpp
@@ -12,7 +12,9 @@
//
#include "contactitem.h"
+#include <qpixmap.h>
#include <opie/ocontact.h>
+#include <qpe/resource.h>
#include <qpe/qcopenvelope_qws.h>
ContactItem::ContactItem(OListViewItem* parent, OContact *contact)
@@ -20,8 +22,93 @@ ContactItem::ContactItem(OListViewItem* parent, OContact *contact)
{
_contact = contact;
setText(0, _contact->toShortText());
+ setIcon();
}
+void ContactItem::setIcon()
+{
+ QPixmap icon;
+ switch ( _contact->lastHitField() ) {
+ case -1:
+ icon = Resource::loadPixmap( "reset" );
+ break;
+ case Qtopia::BusinessPhone:
+ icon = Resource::loadPixmap( "addressbook/phonework" );
+ break;
+ case Qtopia::BusinessFax:
+ icon = Resource::loadPixmap( "addressbook/faxwork" );
+ break;
+ case Qtopia::BusinessMobile:
+ icon = Resource::loadPixmap( "addressbook/mobilework" );
+ break;
+ case Qtopia::DefaultEmail:
+ icon = Resource::loadPixmap( "addressbook/email" );
+ break;
+ case Qtopia::Emails:
+ icon = Resource::loadPixmap( "addressbook/email" );
+ break;
+ case Qtopia::HomePhone:
+ qDebug("homephone");
+ icon = Resource::loadPixmap( "addressbook/phonehome" );
+ break;
+ case Qtopia::HomeFax:
+ icon = Resource::loadPixmap( "addressbook/faxhome" );
+ break;
+ case Qtopia::HomeMobile:
+ icon = Resource::loadPixmap( "addressbook/mobilehome" );
+ break;
+ case Qtopia::HomeWebPage:
+ icon = Resource::loadPixmap( "addressbook/webpagehome" );
+ break;
+ case Qtopia::BusinessWebPage:
+ icon = Resource::loadPixmap( "addressbook/webpagework" );
+ break;
+ case Qtopia::Title:
+ case Qtopia::FirstName:
+ case Qtopia::MiddleName:
+ case Qtopia::LastName:
+ case Qtopia::Suffix:
+ case Qtopia::Nickname:
+ case Qtopia::FileAs:
+ icon = Resource::loadPixmap( "addressbook/identity" );
+ break;
+ case Qtopia::HomeStreet:
+ case Qtopia::HomeCity:
+ case Qtopia::HomeState:
+ case Qtopia::HomeZip:
+ case Qtopia::HomeCountry:
+ icon = Resource::loadPixmap( "addressbook/addresshome" );
+ break;
+ case Qtopia::Company:
+ case Qtopia::BusinessCity:
+ case Qtopia::BusinessStreet:
+ case Qtopia::BusinessZip:
+ case Qtopia::BusinessCountry:
+ case Qtopia::JobTitle:
+ case Qtopia::Department:
+ case Qtopia::Office:
+ case Qtopia::Manager:
+ case Qtopia::BusinessPager:
+ case Qtopia::Profession:
+ icon = Resource::loadPixmap( "addressbook/addresshome" );
+ break;
+ case Qtopia::Assistant:
+ case Qtopia::Spouse:
+ case Qtopia::Children:
+ icon = Resource::loadPixmap( "osearch/personal" );
+ break;
+ case Qtopia::Birthday:
+ case Qtopia::Anniversary:
+ icon = Resource::loadPixmap( "osearch/clock" );
+ break;
+ case Qtopia::Notes:
+ break;
+ default:
+ icon = Resource::loadPixmap( "DocsIcon" );
+ break;
+ }
+ setPixmap( 0, icon );
+}
ContactItem::~ContactItem()
{