summaryrefslogtreecommitdiff
path: root/core/pim/osearch/adresssearch.cpp
Unidiff
Diffstat (limited to 'core/pim/osearch/adresssearch.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/osearch/adresssearch.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/core/pim/osearch/adresssearch.cpp b/core/pim/osearch/adresssearch.cpp
index f117fe6..7681ea2 100644
--- a/core/pim/osearch/adresssearch.cpp
+++ b/core/pim/osearch/adresssearch.cpp
@@ -3,50 +3,52 @@
3// C++ Implementation: $MODULE$ 3// C++ Implementation: $MODULE$
4// 4//
5// Description: 5// Description:
6// 6//
7// 7//
8// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003 8// Author: Patrick S. Vogt <tille@handhelds.org>, (C) 2003
9// 9//
10// Copyright: See COPYING file that comes with this distribution 10// Copyright: See COPYING file that comes with this distribution
11// 11//
12// 12//
13#include "adresssearch.h" 13#include "adresssearch.h"
14 14
15#include <qstring.h> 15#include <qstring.h>
16#include <qiconset.h> 16#include <qiconset.h>
17//#include <qwhatsthis.h> 17//#include <qwhatsthis.h>
18#include <qpe/resource.h> 18#include <qpe/resource.h>
19#include <opie/ocontactaccess.h> 19#include <opie/ocontactaccess.h>
20 20
21#include "contactitem.h" 21#include "contactitem.h"
22 22
23AdressSearch::AdressSearch(QListView* parent, QString name): 23AdressSearch::AdressSearch(QListView* parent, QString name):
24 SearchGroup(parent, name) 24 SearchGroup(parent, name)
25{ 25{
26 _contacts = 0; 26 _contacts = 0;
27 QIconSet is = Resource::loadIconSet( "addressbook/AddressBook" ); 27 QIconSet is = Resource::loadIconSet( "addressbook/AddressBookSmall" );
28 setPixmap( 0, is.pixmap( QIconSet::Small, true ) ); 28 setPixmap( 0, is.pixmap( QIconSet::Large, true ) );
29
30
29 //QWhatsThis::add( this, QObject::tr("Search the addressbook") ); 31 //QWhatsThis::add( this, QObject::tr("Search the addressbook") );
30 /*QPixmap pix = Resource::loadPixmap( "addressbook/AddressBook" ); 32 /*QPixmap pix = Resource::loadPixmap( "addressbook/AddressBook" );
31 QImage img = pix.convertToImage(); 33 QImage img = pix.convertToImage();
32 img.smoothScale( 14, 14 ); 34 img.smoothScale( 14, 14 );
33 pix.convertFromImage( img ); 35 pix.convertFromImage( img );
34 setPixmap( 0, pix );*/ 36 setPixmap( 0, pix );*/
35} 37}
36 38
37 39
38AdressSearch::~AdressSearch() 40AdressSearch::~AdressSearch()
39{ 41{
40 delete _contacts; 42 delete _contacts;
41} 43}
42 44
43void AdressSearch::load() 45void AdressSearch::load()
44{ 46{
45 _contacts = new OContactAccess("osearch"); 47 _contacts = new OContactAccess("osearch");
46} 48}
47 49
48int AdressSearch::search() 50int AdressSearch::search()
49{ 51{
50 ORecordList<OContact> results = _contacts->matchRegexp(_search); 52 ORecordList<OContact> results = _contacts->matchRegexp(_search);
51 for (uint i = 0; i < results.count(); i++) { 53 for (uint i = 0; i < results.count(); i++) {
52 (void)new ContactItem( this, new OContact( results[i] )); 54 (void)new ContactItem( this, new OContact( results[i] ));