author | zecke <zecke> | 2003-02-11 17:42:27 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-02-11 17:42:27 (UTC) |
commit | f84b2b2bced083c3664099d5ae99e4732388812e (patch) (unidiff) | |
tree | a99ad30fad007e6817d7da5dd69957d6a6825e99 | |
parent | ef4af5cbc3efd768e3ce9ca05e12e54a566d0ab1 (diff) | |
download | opie-f84b2b2bced083c3664099d5ae99e4732388812e.zip opie-f84b2b2bced083c3664099d5ae99e4732388812e.tar.gz opie-f84b2b2bced083c3664099d5ae99e4732388812e.tar.bz2 |
implement the wish from 0000639
-rw-r--r-- | core/pim/addressbook/ablabel.cpp | 12 | ||||
-rw-r--r-- | core/pim/addressbook/ablabel.h | 8 |
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 | |||
@@ -25,7 +25,7 @@ | |||
25 | #include <qregexp.h> | 25 | #include <qregexp.h> |
26 | #include <qstylesheet.h> | 26 | #include <qstylesheet.h> |
27 | 27 | ||
28 | AbLabel::AbLabel( QWidget *parent, const char *name ): | 28 | AbLabel::AbLabel( QWidget *parent, const char *name ): |
29 | QTextView( parent, name ), | 29 | QTextView( parent, name ), |
30 | m_empty( false ) | 30 | m_empty( false ) |
31 | { | 31 | { |
@@ -70,7 +70,7 @@ OContact AbLabel::currentEntry() | |||
70 | 70 | ||
71 | bool AbLabel::selectContact( int UID ) | 71 | bool 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; |
@@ -108,7 +108,7 @@ void AbLabel::keyPressEvent( QKeyEvent *e ) | |||
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.."); |
@@ -118,6 +118,12 @@ void AbLabel::keyPressEvent( QKeyEvent *e ) | |||
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 | ||
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 | |||
@@ -33,10 +33,10 @@ public: | |||
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 |
@@ -47,11 +47,11 @@ public: | |||
47 | 47 | ||
48 | signals: | 48 | signals: |
49 | void signalOkPressed(); | 49 | void signalOkPressed(); |
50 | 50 | ||
51 | protected: | 51 | protected: |
52 | void sync(); | 52 | void sync(); |
53 | void keyPressEvent( QKeyEvent * ); | 53 | void keyPressEvent( QKeyEvent * ); |
54 | 54 | ||
55 | private: | 55 | private: |
56 | OContactAccess::List m_viewList; | 56 | OContactAccess::List m_viewList; |
57 | OContactAccess::List::Iterator m_itCurContact; | 57 | OContactAccess::List::Iterator m_itCurContact; |