summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/ablabel.cpp12
-rw-r--r--core/pim/addressbook/ablabel.h8
2 files changed, 13 insertions, 7 deletions
diff --git a/core/pim/addressbook/ablabel.cpp b/core/pim/addressbook/ablabel.cpp
index 1139bd7..80b57ae 100644
--- a/core/pim/addressbook/ablabel.cpp
+++ b/core/pim/addressbook/ablabel.cpp
@@ -22,13 +22,13 @@
22 22
23#include <qpe/stringutil.h> 23#include <qpe/stringutil.h>
24 24
25#include <qregexp.h> 25#include <qregexp.h>
26#include <qstylesheet.h> 26#include <qstylesheet.h>
27 27
28AbLabel::AbLabel( QWidget *parent, const char *name ): 28AbLabel::AbLabel( QWidget *parent, const char *name ):
29 QTextView( parent, name ), 29 QTextView( parent, name ),
30 m_empty( false ) 30 m_empty( false )
31{ 31{
32} 32}
33 33
34AbLabel::~AbLabel() 34AbLabel::~AbLabel()
@@ -67,13 +67,13 @@ OContact AbLabel::currentEntry()
67 return OContact(); 67 return OContact();
68} 68}
69 69
70 70
71bool AbLabel::selectContact( int UID ) 71bool AbLabel::selectContact( int UID )
72{ 72{
73 73
74 for ( m_itCurContact = m_viewList.begin(); m_itCurContact != m_viewList.end(); ++m_itCurContact){ 74 for ( m_itCurContact = m_viewList.begin(); m_itCurContact != m_viewList.end(); ++m_itCurContact){
75 if ( (*m_itCurContact).uid() == UID ) 75 if ( (*m_itCurContact).uid() == UID )
76 break; 76 break;
77 } 77 }
78 sync(); 78 sync();
79 79
@@ -105,20 +105,26 @@ void AbLabel::keyPressEvent( QKeyEvent *e )
105 qWarning( "UP.."); 105 qWarning( "UP..");
106 --m_itCurContact; 106 --m_itCurContact;
107 if ( *m_itCurContact != OContact() ) 107 if ( *m_itCurContact != OContact() )
108 sync(); 108 sync();
109 else 109 else
110 m_itCurContact = m_viewList.end(); 110 m_itCurContact = m_viewList.end();
111 111
112 break; 112 break;
113 case Qt::Key_Down: 113 case Qt::Key_Down:
114 qWarning( "DOWN.."); 114 qWarning( "DOWN..");
115 ++m_itCurContact; 115 ++m_itCurContact;
116 if ( *m_itCurContact != OContact() ) 116 if ( *m_itCurContact != OContact() )
117 sync(); 117 sync();
118 else 118 else
119 m_itCurContact = m_viewList.begin(); 119 m_itCurContact = m_viewList.begin();
120 break; 120 break;
121 case Qt::Key_Return: // fall through
122 case Qt::Key_Space: // fall through
123 case Qt::Key_Enter: // we want to switch back
124 emit signalOkPressed();
125 break;
126 default: break;
121 } 127 }
122 } 128 }
123 129
124} 130}
diff --git a/core/pim/addressbook/ablabel.h b/core/pim/addressbook/ablabel.h
index b1e35de..80336dc 100644
--- a/core/pim/addressbook/ablabel.h
+++ b/core/pim/addressbook/ablabel.h
@@ -30,31 +30,31 @@ class AbLabel : public QTextView
30 Q_OBJECT 30 Q_OBJECT
31 31
32public: 32public:
33 AbLabel( QWidget *parent, const char *name = 0 ); 33 AbLabel( QWidget *parent, const char *name = 0 );
34 ~AbLabel(); 34 ~AbLabel();
35 35
36 // Set the contacts 36 // Set the contacts
37 void setContacts( const OContactAccess::List& viewList ); 37 void setContacts( const OContactAccess::List& viewList );
38 38
39 // Selects a contact 39 // Selects a contact
40 bool selectContact( int UID ); 40 bool selectContact( int UID );
41 41
42 // Get the UID of the current selected Entry 42 // Get the UID of the current selected Entry
43 int currentEntry_UID(); 43 int currentEntry_UID();
44 44
45 // 45 //
46 OContact currentEntry(); 46 OContact currentEntry();
47 47
48signals: 48signals:
49 void signalOkPressed(); 49 void signalOkPressed();
50 50
51protected: 51protected:
52 void sync(); 52 void sync();
53 void keyPressEvent( QKeyEvent * ); 53 void keyPressEvent( QKeyEvent * );
54 54
55private: 55private:
56 OContactAccess::List m_viewList; 56 OContactAccess::List m_viewList;
57 OContactAccess::List::Iterator m_itCurContact; 57 OContactAccess::List::Iterator m_itCurContact;
58 58
59 bool m_empty; 59 bool m_empty;
60 60