author | ulf69 <ulf69> | 2004-09-03 01:34:57 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-09-03 01:34:57 (UTC) |
commit | f6b72fd55671131cd81a3357940c9337ea5d7494 (patch) (unidiff) | |
tree | 1075a46b4a7e24696eb7945e5f76bef552d75d88 | |
parent | 7d5e6ab1868753f1f6a3b0831ba2e3c9d6ba411c (diff) | |
download | kdepimpi-f6b72fd55671131cd81a3357940c9337ea5d7494.zip kdepimpi-f6b72fd55671131cd81a3357940c9337ea5d7494.tar.gz kdepimpi-f6b72fd55671131cd81a3357940c9337ea5d7494.tar.bz2 |
sourceforge 1014886: first change to allow customized tableview
-rw-r--r-- | kaddressbook/views/kaddressbooktableview.cpp | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/kaddressbook/views/kaddressbooktableview.cpp b/kaddressbook/views/kaddressbooktableview.cpp index 8d2203e..66a3f0b 100644 --- a/kaddressbook/views/kaddressbooktableview.cpp +++ b/kaddressbook/views/kaddressbooktableview.cpp | |||
@@ -1,338 +1,382 @@ | |||
1 | // $Id$ | 1 | // $Id$ |
2 | 2 | ||
3 | #include <qvbox.h> | 3 | #include <qvbox.h> |
4 | #include <qlistbox.h> | 4 | #include <qlistbox.h> |
5 | #include <qwidget.h> | 5 | #include <qwidget.h> |
6 | #include <qfile.h> | 6 | #include <qfile.h> |
7 | #include <qimage.h> | 7 | #include <qimage.h> |
8 | #include <qcombobox.h> | 8 | #include <qcombobox.h> |
9 | #include <qapplication.h> | 9 | #include <qapplication.h> |
10 | #include <qdragobject.h> | 10 | #include <qdragobject.h> |
11 | #include <qevent.h> | 11 | #include <qevent.h> |
12 | #include <qurl.h> | 12 | #include <qurl.h> |
13 | #include <qpixmap.h> | 13 | #include <qpixmap.h> |
14 | 14 | ||
15 | #include <kabc/addressbook.h> | 15 | #include <kabc/addressbook.h> |
16 | #include <kapplication.h> | 16 | #include <kapplication.h> |
17 | #include <kconfig.h> | 17 | #include <kconfig.h> |
18 | #include <kcolorbutton.h> | 18 | #include <kcolorbutton.h> |
19 | #include <kdebug.h> | 19 | #include <kdebug.h> |
20 | #include <kglobal.h> | 20 | #include <kglobal.h> |
21 | #include <kiconloader.h> | 21 | #include <kiconloader.h> |
22 | #include <klineedit.h> | 22 | #include <klineedit.h> |
23 | #include <klocale.h> | 23 | #include <klocale.h> |
24 | #include <kmessagebox.h> | 24 | #include <kmessagebox.h> |
25 | #include <kurl.h> | 25 | #include <kurl.h> |
26 | #include <kurlrequester.h> | 26 | #include <kurlrequester.h> |
27 | 27 | ||
28 | //US#include "configuretableviewdialog.h" | 28 | //US#include "configuretableviewdialog.h" |
29 | #include "contactlistview.h" | 29 | #include "contactlistview.h" |
30 | #include "kabprefs.h" | 30 | #include "kabprefs.h" |
31 | #include "undocmds.h" | 31 | #include "undocmds.h" |
32 | #include "viewmanager.h" | 32 | #include "viewmanager.h" |
33 | 33 | ||
34 | #include <qlayout.h> | 34 | #include <qlayout.h> |
35 | 35 | ||
36 | 36 | ||
37 | #include "kaddressbooktableview.h" | 37 | #include "kaddressbooktableview.h" |
38 | 38 | ||
39 | 39 | ||
40 | KAddressBookTableView::KAddressBookTableView( KABC::AddressBook *ab, | 40 | KAddressBookTableView::KAddressBookTableView( KABC::AddressBook *ab, |
41 | QWidget *parent, const char *name ) | 41 | QWidget *parent, const char *name ) |
42 | : KAddressBookView( ab, parent, name ) | 42 | : KAddressBookView( ab, parent, name ) |
43 | { | 43 | { |
44 | mainLayout = new QVBoxLayout( viewWidget(), 2 ); | 44 | mainLayout = new QVBoxLayout( viewWidget(), 2 ); |
45 | 45 | ||
46 | // The list view will be created when the config is read. | 46 | // The list view will be created when the config is read. |
47 | mListView = 0; | 47 | mListView = 0; |
48 | } | 48 | } |
49 | 49 | ||
50 | KAddressBookTableView::~KAddressBookTableView() | 50 | KAddressBookTableView::~KAddressBookTableView() |
51 | { | 51 | { |
52 | } | 52 | } |
53 | 53 | ||
54 | void KAddressBookTableView::reconstructListView() | 54 | void KAddressBookTableView::reconstructListView() |
55 | { | 55 | { |
56 | if (mListView) | 56 | if (mListView) |
57 | { | 57 | { |
58 | disconnect(mListView, SIGNAL(selectionChanged()), | 58 | disconnect(mListView, SIGNAL(selectionChanged()), |
59 | this, SLOT(addresseeSelected())); | 59 | this, SLOT(addresseeSelected())); |
60 | disconnect(mListView, SIGNAL(executed(QListViewItem*)), | 60 | disconnect(mListView, SIGNAL(executed(QListViewItem*)), |
61 | this, SLOT(addresseeExecuted(QListViewItem*))); | 61 | this, SLOT(addresseeExecuted(QListViewItem*))); |
62 | disconnect(mListView, SIGNAL(doubleClicked(QListViewItem*)), | 62 | disconnect(mListView, SIGNAL(doubleClicked(QListViewItem*)), |
63 | this, SLOT(addresseeExecuted(QListViewItem*))); | 63 | this, SLOT(addresseeExecuted(QListViewItem*))); |
64 | disconnect(mListView, SIGNAL(startAddresseeDrag()), this, | 64 | disconnect(mListView, SIGNAL(startAddresseeDrag()), this, |
65 | SIGNAL(startDrag())); | 65 | SIGNAL(startDrag())); |
66 | disconnect(mListView, SIGNAL(returnPressed(QListViewItem*)), | 66 | disconnect(mListView, SIGNAL(returnPressed(QListViewItem*)), |
67 | this, SLOT(addresseeExecuted(QListViewItem*))); | 67 | this, SLOT(addresseeExecuted(QListViewItem*))); |
68 | 68 | ||
69 | disconnect(mListView, SIGNAL(addresseeDropped(QDropEvent*)), this, | 69 | disconnect(mListView, SIGNAL(addresseeDropped(QDropEvent*)), this, |
70 | SIGNAL(dropped(QDropEvent*))); | 70 | SIGNAL(dropped(QDropEvent*))); |
71 | delete mListView; | 71 | delete mListView; |
72 | } | 72 | } |
73 | 73 | ||
74 | mListView = new ContactListView( this, addressBook(), viewWidget() ); | 74 | mListView = new ContactListView( this, addressBook(), viewWidget() ); |
75 | 75 | ||
76 | // Add the columns | 76 | // Add the columns |
77 | KABC::Field::List fieldList = fields(); | 77 | KABC::Field::List fieldList = fields(); |
78 | KABC::Field::List::ConstIterator it; | 78 | KABC::Field::List::ConstIterator it; |
79 | 79 | ||
80 | int c = 0; | 80 | int c = 0; |
81 | for( it = fieldList.begin(); it != fieldList.end(); ++it ) { | 81 | for( it = fieldList.begin(); it != fieldList.end(); ++it ) { |
82 | mListView->addColumn( (*it)->label() ); | 82 | mListView->addColumn( (*it)->label() ); |
83 | mListView->setColumnWidthMode(c++, QListView::Manual); | 83 | mListView->setColumnWidthMode(c++, QListView::Manual); |
84 | //US | 84 | //US |
85 | // qDebug("KAddressBookTableView::reconstructListView: field %s", (*it)->label().latin1()); | 85 | // qDebug("KAddressBookTableView::reconstructListView: field %s", (*it)->label().latin1()); |
86 | } | 86 | } |
87 | 87 | ||
88 | connect(mListView, SIGNAL(selectionChanged()), | 88 | connect(mListView, SIGNAL(selectionChanged()), |
89 | this, SLOT(addresseeSelected())); | 89 | this, SLOT(addresseeSelected())); |
90 | connect(mListView, SIGNAL(startAddresseeDrag()), this, | 90 | connect(mListView, SIGNAL(startAddresseeDrag()), this, |
91 | SIGNAL(startDrag())); | 91 | SIGNAL(startDrag())); |
92 | connect(mListView, SIGNAL(addresseeDropped(QDropEvent*)), this, | 92 | connect(mListView, SIGNAL(addresseeDropped(QDropEvent*)), this, |
93 | SIGNAL(dropped(QDropEvent*))); | 93 | SIGNAL(dropped(QDropEvent*))); |
94 | 94 | ||
95 | if (KABPrefs::instance()->mHonorSingleClick) | 95 | if (KABPrefs::instance()->mHonorSingleClick) |
96 | connect(mListView, SIGNAL(executed(QListViewItem*)), | 96 | connect(mListView, SIGNAL(executed(QListViewItem*)), |
97 | this, SLOT(addresseeExecuted(QListViewItem*))); | 97 | this, SLOT(addresseeExecuted(QListViewItem*))); |
98 | else | 98 | else |
99 | connect(mListView, SIGNAL(doubleClicked(QListViewItem*)), | 99 | connect(mListView, SIGNAL(doubleClicked(QListViewItem*)), |
100 | this, SLOT(addresseeExecuted(QListViewItem*))); | 100 | this, SLOT(addresseeExecuted(QListViewItem*))); |
101 | connect(mListView, SIGNAL(returnPressed(QListViewItem*)), | 101 | connect(mListView, SIGNAL(returnPressed(QListViewItem*)), |
102 | this, SLOT(addresseeExecuted(QListViewItem*))); | 102 | this, SLOT(addresseeExecuted(QListViewItem*))); |
103 | connect(mListView, SIGNAL(signalDelete()), | 103 | connect(mListView, SIGNAL(signalDelete()), |
104 | this, SLOT(addresseeDeleted())); | 104 | this, SLOT(addresseeDeleted())); |
105 | 105 | ||
106 | //US performceimprovement. Refresh is done from the outside | 106 | //US performceimprovement. Refresh is done from the outside |
107 | //US refresh(); | 107 | //US refresh(); |
108 | 108 | ||
109 | mListView->setSorting( 0, true ); | 109 | mListView->setSorting( 0, true ); |
110 | mainLayout->addWidget( mListView ); | 110 | mainLayout->addWidget( mListView ); |
111 | mainLayout->activate(); | 111 | mainLayout->activate(); |
112 | mListView->show(); | 112 | mListView->show(); |
113 | } | 113 | } |
114 | 114 | ||
115 | void KAddressBookTableView::writeConfig(KConfig *config) | 115 | void KAddressBookTableView::writeConfig(KConfig *config) |
116 | { | 116 | { |
117 | KAddressBookView::writeConfig(config); | 117 | KAddressBookView::writeConfig(config); |
118 | 118 | ||
119 | mListView->saveLayout(config, config->group()); | 119 | mListView->saveLayout(config, config->group()); |
120 | } | 120 | } |
121 | 121 | ||
122 | void KAddressBookTableView::readConfig(KConfig *config) | 122 | void KAddressBookTableView::readConfig(KConfig *config) |
123 | { | 123 | { |
124 | KAddressBookView::readConfig( config ); | 124 | KAddressBookView::readConfig( config ); |
125 | 125 | ||
126 | // costum colors? | ||
127 | if ( config->readBoolEntry( "EnableCustomColors", false ) ) | ||
128 | { | ||
129 | QPalette p( mListView->palette() ); | ||
130 | QColor c = p.color(QPalette::Normal, QColorGroup::Base ); | ||
131 | p.setColor( QPalette::Normal, QColorGroup::Base, config->readColorEntry( "BackgroundColor", &c ) ); | ||
132 | c = p.color(QPalette::Normal, QColorGroup::Text ); | ||
133 | p.setColor( QPalette::Normal, QColorGroup::Text, config->readColorEntry( "TextColor", &c ) ); | ||
134 | c = p.color(QPalette::Normal, QColorGroup::Button ); | ||
135 | p.setColor( QPalette::Normal, QColorGroup::Button, config->readColorEntry( "HeaderColor", &c ) ); | ||
136 | c = p.color(QPalette::Normal, QColorGroup::ButtonText ); | ||
137 | p.setColor( QPalette::Normal, QColorGroup::ButtonText, config->readColorEntry( "HeaderTextColor", &c ) ); | ||
138 | c = p.color(QPalette::Normal, QColorGroup::Highlight ); | ||
139 | p.setColor( QPalette::Normal, QColorGroup::Highlight, config->readColorEntry( "HighlightColor", &c ) ); | ||
140 | c = p.color(QPalette::Normal, QColorGroup::HighlightedText ); | ||
141 | p.setColor( QPalette::Normal, QColorGroup::HighlightedText, config->readColorEntry( "HighlightedTextColor", &c ) ); | ||
142 | c = p.color(QPalette::Normal, QColorGroup::Base ); | ||
143 | p.setColor( QPalette::Normal, QColorGroup::Base, config->readColorEntry( "AlternatingBackgroundColor", &c ) ); | ||
144 | mListView->viewport()->setPalette( p ); | ||
145 | } | ||
146 | else | ||
147 | { | ||
148 | // needed if turned off during a session. | ||
149 | mListView->viewport()->setPalette( mListView->palette() ); | ||
150 | } | ||
151 | |||
152 | //custom fonts? | ||
153 | QFont f( font() ); | ||
154 | if ( config->readBoolEntry( "EnableCustomFonts", false ) ) | ||
155 | { | ||
156 | // mListView->setFont( config->readFontEntry( "TextFont", &f) ); | ||
157 | f.setBold( true ); | ||
158 | // mListView->setHeaderFont( config->readFontEntry( "HeaderFont", &f ) ); | ||
159 | } | ||
160 | else | ||
161 | { | ||
162 | // mListView->setFont( f ); | ||
163 | f.setBold( true ); | ||
164 | // mListView->setHeaderFont( f ); | ||
165 | } | ||
166 | |||
167 | |||
168 | |||
169 | |||
126 | // The config could have changed the fields, so we need to reconstruct | 170 | // The config could have changed the fields, so we need to reconstruct |
127 | // the listview. | 171 | // the listview. |
128 | reconstructListView(); | 172 | reconstructListView(); |
129 | 173 | ||
130 | // Set the list view options | 174 | // Set the list view options |
131 | mListView->setAlternateBackgroundEnabled(config->readBoolEntry("ABackground", | 175 | mListView->setAlternateBackgroundEnabled(config->readBoolEntry("ABackground", |
132 | true)); | 176 | true)); |
133 | mListView->setSingleLineEnabled(config->readBoolEntry("SingleLine", false)); | 177 | mListView->setSingleLineEnabled(config->readBoolEntry("SingleLine", false)); |
134 | mListView->setToolTipsEnabled(config->readBoolEntry("ToolTips", true)); | 178 | mListView->setToolTipsEnabled(config->readBoolEntry("ToolTips", true)); |
135 | 179 | ||
136 | if (config->readBoolEntry("Background", false)) | 180 | if (config->readBoolEntry("Background", false)) |
137 | mListView->setBackgroundPixmap(config->readEntry("BackgroundName")); | 181 | mListView->setBackgroundPixmap(config->readEntry("BackgroundName")); |
138 | 182 | ||
139 | // Restore the layout of the listview | 183 | // Restore the layout of the listview |
140 | mListView->restoreLayout(config, config->group()); | 184 | mListView->restoreLayout(config, config->group()); |
141 | } | 185 | } |
142 | 186 | ||
143 | void KAddressBookTableView::refresh(QString uid) | 187 | void KAddressBookTableView::refresh(QString uid) |
144 | { | 188 | { |
145 | // For now just repopulate. In reality this method should | 189 | // For now just repopulate. In reality this method should |
146 | // check the value of uid, and if valid iterate through | 190 | // check the value of uid, and if valid iterate through |
147 | // the listview to find the entry, then tell it to refresh. | 191 | // the listview to find the entry, then tell it to refresh. |
148 | 192 | ||
149 | if (uid.isNull()) { | 193 | if (uid.isNull()) { |
150 | // Clear the list view | 194 | // Clear the list view |
151 | QString currentUID, nextUID; | 195 | QString currentUID, nextUID; |
152 | #ifndef KAB_EMBEDDED | 196 | #ifndef KAB_EMBEDDED |
153 | ContactListViewItem *currentItem = dynamic_cast<ContactListViewItem*>( mListView->currentItem() ); | 197 | ContactListViewItem *currentItem = dynamic_cast<ContactListViewItem*>( mListView->currentItem() ); |
154 | #else //KAB_EMBEDDED | 198 | #else //KAB_EMBEDDED |
155 | ContactListViewItem *currentItem = (ContactListViewItem*)( mListView->currentItem() ); | 199 | ContactListViewItem *currentItem = (ContactListViewItem*)( mListView->currentItem() ); |
156 | #endif //KAB_EMBEDDED | 200 | #endif //KAB_EMBEDDED |
157 | 201 | ||
158 | if ( currentItem ) { | 202 | if ( currentItem ) { |
159 | #ifndef KAB_EMBEDDED | 203 | #ifndef KAB_EMBEDDED |
160 | ContactListViewItem *nextItem = dynamic_cast<ContactListViewItem*>( currentItem->itemBelow() ); | 204 | ContactListViewItem *nextItem = dynamic_cast<ContactListViewItem*>( currentItem->itemBelow() ); |
161 | #else //KAB_EMBEDDED | 205 | #else //KAB_EMBEDDED |
162 | ContactListViewItem *nextItem = (ContactListViewItem*)( currentItem->itemBelow() ); | 206 | ContactListViewItem *nextItem = (ContactListViewItem*)( currentItem->itemBelow() ); |
163 | #endif //KAB_EMBEDDED | 207 | #endif //KAB_EMBEDDED |
164 | if ( nextItem ) | 208 | if ( nextItem ) |
165 | nextUID = nextItem->addressee().uid(); | 209 | nextUID = nextItem->addressee().uid(); |
166 | currentUID = currentItem->addressee().uid(); | 210 | currentUID = currentItem->addressee().uid(); |
167 | } | 211 | } |
168 | 212 | ||
169 | mListView->clear(); | 213 | mListView->clear(); |
170 | 214 | ||
171 | currentItem = 0; | 215 | currentItem = 0; |
172 | KABC::Addressee::List addresseeList = addressees(); | 216 | KABC::Addressee::List addresseeList = addressees(); |
173 | KABC::Addressee::List::Iterator it; | 217 | KABC::Addressee::List::Iterator it; |
174 | for (it = addresseeList.begin(); it != addresseeList.end(); ++it ) { | 218 | for (it = addresseeList.begin(); it != addresseeList.end(); ++it ) { |
175 | ContactListViewItem *item = new ContactListViewItem(*it, mListView, addressBook(), fields()); | 219 | ContactListViewItem *item = new ContactListViewItem(*it, mListView, addressBook(), fields()); |
176 | if ( (*it).uid() == currentUID ) | 220 | if ( (*it).uid() == currentUID ) |
177 | currentItem = item; | 221 | currentItem = item; |
178 | else if ( (*it).uid() == nextUID && !currentItem ) | 222 | else if ( (*it).uid() == nextUID && !currentItem ) |
179 | currentItem = item; | 223 | currentItem = item; |
180 | } | 224 | } |
181 | 225 | ||
182 | // Sometimes the background pixmap gets messed up when we add lots | 226 | // Sometimes the background pixmap gets messed up when we add lots |
183 | // of items. | 227 | // of items. |
184 | mListView->repaint(); | 228 | mListView->repaint(); |
185 | 229 | ||
186 | if ( currentItem ) { | 230 | if ( currentItem ) { |
187 | mListView->setCurrentItem( currentItem ); | 231 | mListView->setCurrentItem( currentItem ); |
188 | mListView->ensureItemVisible( currentItem ); | 232 | mListView->ensureItemVisible( currentItem ); |
189 | } | 233 | } |
190 | } else { | 234 | } else { |
191 | // Only need to update on entry. Iterate through and try to find it | 235 | // Only need to update on entry. Iterate through and try to find it |
192 | ContactListViewItem *ceItem; | 236 | ContactListViewItem *ceItem; |
193 | QListViewItemIterator it( mListView ); | 237 | QListViewItemIterator it( mListView ); |
194 | while ( it.current() ) { | 238 | while ( it.current() ) { |
195 | #ifndef KAB_EMBEDDED | 239 | #ifndef KAB_EMBEDDED |
196 | ceItem = dynamic_cast<ContactListViewItem*>( it.current() ); | 240 | ceItem = dynamic_cast<ContactListViewItem*>( it.current() ); |
197 | #else //KAB_EMBEDDED | 241 | #else //KAB_EMBEDDED |
198 | ceItem = (ContactListViewItem*)( it.current() ); | 242 | ceItem = (ContactListViewItem*)( it.current() ); |
199 | #endif //KAB_EMBEDDED | 243 | #endif //KAB_EMBEDDED |
200 | 244 | ||
201 | if ( ceItem && ceItem->addressee().uid() == uid ) { | 245 | if ( ceItem && ceItem->addressee().uid() == uid ) { |
202 | ceItem->refresh(); | 246 | ceItem->refresh(); |
203 | return; | 247 | return; |
204 | } | 248 | } |
205 | ++it; | 249 | ++it; |
206 | } | 250 | } |
207 | 251 | ||
208 | refresh( QString::null ); | 252 | refresh( QString::null ); |
209 | } | 253 | } |
210 | } | 254 | } |
211 | 255 | ||
212 | QStringList KAddressBookTableView::selectedUids() | 256 | QStringList KAddressBookTableView::selectedUids() |
213 | { | 257 | { |
214 | QStringList uidList; | 258 | QStringList uidList; |
215 | QListViewItem *item; | 259 | QListViewItem *item; |
216 | ContactListViewItem *ceItem; | 260 | ContactListViewItem *ceItem; |
217 | 261 | ||
218 | for(item = mListView->firstChild(); item; item = item->itemBelow()) | 262 | for(item = mListView->firstChild(); item; item = item->itemBelow()) |
219 | { | 263 | { |
220 | if (mListView->isSelected( item )) | 264 | if (mListView->isSelected( item )) |
221 | { | 265 | { |
222 | #ifndef KAB_EMBEDDED | 266 | #ifndef KAB_EMBEDDED |
223 | ceItem = dynamic_cast<ContactListViewItem*>(item); | 267 | ceItem = dynamic_cast<ContactListViewItem*>(item); |
224 | #else //KAB_EMBEDDED | 268 | #else //KAB_EMBEDDED |
225 | ceItem = (ContactListViewItem*)(item); | 269 | ceItem = (ContactListViewItem*)(item); |
226 | #endif //KAB_EMBEDDED | 270 | #endif //KAB_EMBEDDED |
227 | 271 | ||
228 | if (ceItem != 0L) | 272 | if (ceItem != 0L) |
229 | uidList << ceItem->addressee().uid(); | 273 | uidList << ceItem->addressee().uid(); |
230 | } | 274 | } |
231 | } | 275 | } |
232 | if ( uidList.count() == 0 ) | 276 | if ( uidList.count() == 0 ) |
233 | if ( mListView->currentItem() ) { | 277 | if ( mListView->currentItem() ) { |
234 | ceItem = (ContactListViewItem*)(mListView->currentItem()) ; | 278 | ceItem = (ContactListViewItem*)(mListView->currentItem()) ; |
235 | uidList << ceItem->addressee().uid(); | 279 | uidList << ceItem->addressee().uid(); |
236 | } | 280 | } |
237 | 281 | ||
238 | return uidList; | 282 | return uidList; |
239 | } | 283 | } |
240 | 284 | ||
241 | void KAddressBookTableView::setSelected(QString uid, bool selected) | 285 | void KAddressBookTableView::setSelected(QString uid, bool selected) |
242 | { | 286 | { |
243 | QListViewItem *item; | 287 | QListViewItem *item; |
244 | ContactListViewItem *ceItem; | 288 | ContactListViewItem *ceItem; |
245 | 289 | ||
246 | if (uid.isNull()) | 290 | if (uid.isNull()) |
247 | { | 291 | { |
248 | mListView->selectAll(selected); | 292 | mListView->selectAll(selected); |
249 | } | 293 | } |
250 | else | 294 | else |
251 | { | 295 | { |
252 | for(item = mListView->firstChild(); item; item = item->itemBelow()) | 296 | for(item = mListView->firstChild(); item; item = item->itemBelow()) |
253 | { | 297 | { |
254 | #ifndef KAB_EMBEDDED | 298 | #ifndef KAB_EMBEDDED |
255 | ceItem = dynamic_cast<ContactListViewItem*>(item); | 299 | ceItem = dynamic_cast<ContactListViewItem*>(item); |
256 | #else //KAB_EMBEDDED | 300 | #else //KAB_EMBEDDED |
257 | ceItem = (ContactListViewItem*)(item); | 301 | ceItem = (ContactListViewItem*)(item); |
258 | #endif //KAB_EMBEDDED | 302 | #endif //KAB_EMBEDDED |
259 | 303 | ||
260 | 304 | ||
261 | if ((ceItem != 0L) && (ceItem->addressee().uid() == uid)) | 305 | if ((ceItem != 0L) && (ceItem->addressee().uid() == uid)) |
262 | { | 306 | { |
263 | mListView->setSelected(item, selected); | 307 | mListView->setSelected(item, selected); |
264 | 308 | ||
265 | if (selected) | 309 | if (selected) |
266 | mListView->ensureItemVisible(item); | 310 | mListView->ensureItemVisible(item); |
267 | } | 311 | } |
268 | } | 312 | } |
269 | } | 313 | } |
270 | } | 314 | } |
271 | 315 | ||
272 | void KAddressBookTableView::addresseeSelected() | 316 | void KAddressBookTableView::addresseeSelected() |
273 | { | 317 | { |
274 | // We need to try to find the first selected item. This might not be the | 318 | // We need to try to find the first selected item. This might not be the |
275 | // last selected item, but when QListView is in multiselection mode, | 319 | // last selected item, but when QListView is in multiselection mode, |
276 | // there is no way to figure out which one was | 320 | // there is no way to figure out which one was |
277 | // selected last. | 321 | // selected last. |
278 | QListViewItem *item; | 322 | QListViewItem *item; |
279 | bool found =false; | 323 | bool found =false; |
280 | for (item = mListView->firstChild(); item && !found; | 324 | for (item = mListView->firstChild(); item && !found; |
281 | item = item->nextSibling()) | 325 | item = item->nextSibling()) |
282 | { | 326 | { |
283 | if (item->isSelected()) | 327 | if (item->isSelected()) |
284 | { | 328 | { |
285 | found = true; | 329 | found = true; |
286 | #ifndef KAB_EMBEDDED | 330 | #ifndef KAB_EMBEDDED |
287 | ContactListViewItem *ceItem | 331 | ContactListViewItem *ceItem |
288 | = dynamic_cast<ContactListViewItem*>(item); | 332 | = dynamic_cast<ContactListViewItem*>(item); |
289 | #else //KAB_EMBEDDED | 333 | #else //KAB_EMBEDDED |
290 | ContactListViewItem *ceItem | 334 | ContactListViewItem *ceItem |
291 | = (ContactListViewItem*)(item); | 335 | = (ContactListViewItem*)(item); |
292 | #endif //KAB_EMBEDDED | 336 | #endif //KAB_EMBEDDED |
293 | 337 | ||
294 | if ( ceItem ) emit selected(ceItem->addressee().uid()); | 338 | if ( ceItem ) emit selected(ceItem->addressee().uid()); |
295 | } | 339 | } |
296 | } | 340 | } |
297 | 341 | ||
298 | if (!found) | 342 | if (!found) |
299 | emit selected(QString::null); | 343 | emit selected(QString::null); |
300 | } | 344 | } |
301 | 345 | ||
302 | void KAddressBookTableView::addresseeExecuted(QListViewItem *item) | 346 | void KAddressBookTableView::addresseeExecuted(QListViewItem *item) |
303 | { | 347 | { |
304 | if (item) | 348 | if (item) |
305 | { | 349 | { |
306 | #ifndef KAB_EMBEDDED | 350 | #ifndef KAB_EMBEDDED |
307 | ContactListViewItem *ceItem | 351 | ContactListViewItem *ceItem |
308 | = dynamic_cast<ContactListViewItem*>(item); | 352 | = dynamic_cast<ContactListViewItem*>(item); |
309 | #else //KAB_EMBEDDED | 353 | #else //KAB_EMBEDDED |
310 | ContactListViewItem *ceItem | 354 | ContactListViewItem *ceItem |
311 | = (ContactListViewItem*)(item); | 355 | = (ContactListViewItem*)(item); |
312 | #endif //KAB_EMBEDDED | 356 | #endif //KAB_EMBEDDED |
313 | 357 | ||
314 | if (ceItem) | 358 | if (ceItem) |
315 | { | 359 | { |
316 | emit executed(ceItem->addressee().uid()); | 360 | emit executed(ceItem->addressee().uid()); |
317 | } | 361 | } |
318 | } | 362 | } |
319 | else | 363 | else |
320 | { | 364 | { |
321 | emit executed(QString::null); | 365 | emit executed(QString::null); |
322 | } | 366 | } |
323 | } | 367 | } |
324 | 368 | ||
325 | void KAddressBookTableView::addresseeDeleted() | 369 | void KAddressBookTableView::addresseeDeleted() |
326 | { | 370 | { |
327 | 371 | ||
328 | emit deleteRequest(); | 372 | emit deleteRequest(); |
329 | 373 | ||
330 | } | 374 | } |
331 | 375 | ||
332 | 376 | ||
333 | 377 | ||
334 | 378 | ||
335 | 379 | ||
336 | #ifndef KAB_EMBEDDED | 380 | #ifndef KAB_EMBEDDED |
337 | #include "kaddressbooktableview.moc" | 381 | #include "kaddressbooktableview.moc" |
338 | #endif //KAB_EMBEDDED | 382 | #endif //KAB_EMBEDDED |