summaryrefslogtreecommitdiff
authorsandman <sandman>2002-10-01 16:20:28 (UTC)
committer sandman <sandman>2002-10-01 16:20:28 (UTC)
commit3352558f31f2f3f5f32730a28f07161fe71787a9 (patch) (unidiff)
tree613a75fb333cfd28f54e29cd2b420889ea4467f0
parent70d2cbd97a6b39b1738e3e6580f916dcf0fbc787 (diff)
downloadopie-3352558f31f2f3f5f32730a28f07161fe71787a9.zip
opie-3352558f31f2f3f5f32730a28f07161fe71787a9.tar.gz
opie-3352558f31f2f3f5f32730a28f07161fe71787a9.tar.bz2
Another performance tweak for busyindicator and alpha-blended bg pixmaps
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/launcherview.cpp22
1 files changed, 18 insertions, 4 deletions
diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp
index 33717bc..e15b150 100644
--- a/core/launcher/launcherview.cpp
+++ b/core/launcher/launcherview.cpp
@@ -1,407 +1,421 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of the Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include "launcherview.h" 21#include "launcherview.h"
22 22
23#include <qpe/qpeapplication.h> 23#include <qpe/qpeapplication.h>
24#include <qpe/applnk.h> 24#include <qpe/applnk.h>
25#include <qpe/qpedebug.h> 25#include <qpe/qpedebug.h>
26#include <qpe/categories.h> 26#include <qpe/categories.h>
27#include <qpe/categoryselect.h> 27#include <qpe/categoryselect.h>
28#include <qpe/menubutton.h> 28#include <qpe/menubutton.h>
29#include <qpe/mimetype.h> 29#include <qpe/mimetype.h>
30#include <qpe/resource.h> 30#include <qpe/resource.h>
31#include <qpe/qpetoolbar.h> 31#include <qpe/qpetoolbar.h>
32//#include <qtopia/private/palmtoprecord.h> 32//#include <qtopia/private/palmtoprecord.h>
33 33
34#include <qtimer.h> 34#include <qtimer.h>
35#include <qtextstream.h> 35#include <qtextstream.h>
36#include <qdict.h> 36#include <qdict.h>
37#include <qfile.h> 37#include <qfile.h>
38#include <qfileinfo.h> 38#include <qfileinfo.h>
39#include <qhbox.h> 39#include <qhbox.h>
40#include <qiconview.h> 40#include <qiconview.h>
41#include <qpainter.h> 41#include <qpainter.h>
42#include <qregexp.h> 42#include <qregexp.h>
43#include <qtoolbutton.h> 43#include <qtoolbutton.h>
44#include <qimage.h> 44#include <qimage.h>
45 45
46 46
47class BgPixmap 47class BgPixmap
48{ 48{
49public: 49public:
50 BgPixmap( const QPixmap &p ) : pm(p), ref(1) {} 50 BgPixmap( const QPixmap &p ) : pm(p), ref(1) {}
51 QPixmap pm; 51 QPixmap pm;
52 int ref; 52 int ref;
53}; 53};
54 54
55static QMap<QString,BgPixmap*> *bgCache = 0; 55static QMap<QString,BgPixmap*> *bgCache = 0;
56 56
57class LauncherIconView : public QIconView { 57class LauncherIconView : public QIconView {
58public: 58public:
59 LauncherIconView( QWidget* parent, const char* name=0 ) : 59 LauncherIconView( QWidget* parent, const char* name=0 ) :
60 QIconView(parent,name), 60 QIconView(parent,name),
61 tf(""), 61 tf(""),
62 cf(0), 62 cf(0),
63 bsy(0), 63 bsy(0),
64 bigIcns(TRUE), 64 bigIcns(TRUE),
65 bgColor(white) 65 bgColor(white)
66 { 66 {
67 sortmeth = Name; 67 sortmeth = Name;
68 hidden.setAutoDelete(TRUE); 68 hidden.setAutoDelete(TRUE);
69 ike = FALSE; 69 ike = FALSE;
70 busytimer = 0; 70 busytimer = 0;
71 calculateGrid( Bottom ); 71 calculateGrid( Bottom );
72 } 72 }
73 73
74 ~LauncherIconView() 74 ~LauncherIconView()
75 { 75 {
76#if 0 // debuggery 76#if 0 // debuggery
77 QListIterator<AppLnk> it(hidden); 77 QListIterator<AppLnk> it(hidden);
78 AppLnk* l; 78 AppLnk* l;
79 while ((l=it.current())) { 79 while ((l=it.current())) {
80 ++it; 80 ++it;
81 //qDebug("%p: hidden (should remove)",l); 81 //qDebug("%p: hidden (should remove)",l);
82 } 82 }
83#endif 83#endif
84 } 84 }
85 85
86 QPixmap* busyPixmap() const { return (QPixmap*)&bpm[::abs(busystate)]; } 86 QPixmap* busyPixmap() const { return (QPixmap*)&bpm[::abs(busystate)]; }
87 QIconViewItem* busyItem() const { return bsy; } 87 QIconViewItem* busyItem() const { return bsy; }
88 void setBigIcons( bool bi ) { bigIcns = bi; } 88 void setBigIcons( bool bi ) { bigIcns = bi; }
89 89
90 void updateCategoriesAndMimeTypes(); 90 void updateCategoriesAndMimeTypes();
91 91
92 void doAutoScroll() 92 void doAutoScroll()
93 { 93 {
94 // We don't want rubberbanding (yet) 94 // We don't want rubberbanding (yet)
95 } 95 }
96 96
97 void setBusy(bool on) 97 void setBusy(bool on)
98 { 98 {
99 QIconViewItem *c = on ? currentItem() : 0; 99 QIconViewItem *c = on ? currentItem() : 0;
100 qDebug ( "set busy %d -> %s", on, c ? c-> text ().latin1() : "(null)" ); 100 qDebug ( "set busy %d -> %s", on, c ? c-> text ().latin1() : "(null)" );
101 101
102 if ( bsy != c ) { 102 if ( bsy != c ) {
103 QIconViewItem *oldbsy = bsy; 103 QIconViewItem *oldbsy = bsy;
104 bsy = c; 104 bsy = c;
105 105
106 if ( oldbsy ) 106 if ( oldbsy )
107 oldbsy-> repaint ( ); 107 oldbsy-> repaint ( );
108 108
109 if ( bsy ) { 109 if ( bsy ) {
110 QPixmap *src = bsy-> QIconViewItem::pixmap(); 110 QPixmap *src = bsy-> QIconViewItem::pixmap();
111 for ( int i = 0; i <= 5; i++ ) { 111 for ( int i = 0; i <= 5; i++ ) {
112 QImage img = src->convertToImage(); 112 QImage img = src->convertToImage();
113 QRgb* rgb; 113 QRgb* rgb;
114 int count; 114 int count;
115 if ( img.depth() == 32 ) { 115 if ( img.depth() == 32 ) {
116 rgb = (QRgb*)img.bits(); 116 rgb = (QRgb*)img.bits();
117 count = img.bytesPerLine()/sizeof(QRgb)*img.height(); 117 count = img.bytesPerLine()/sizeof(QRgb)*img.height();
118 } else { 118 } else {
119 rgb = img.colorTable(); 119 rgb = img.colorTable();
120 count = img.numColors(); 120 count = img.numColors();
121 } 121 }
122 int rc, gc, bc; 122 int rc, gc, bc;
123 int bs = ::abs ( i * 10 ) + 25; 123 int bs = ::abs ( i * 10 ) + 25;
124 colorGroup().highlight().rgb( &rc, &gc, &bc ); 124 colorGroup().highlight().rgb( &rc, &gc, &bc );
125 rc = rc * bs / 100; 125 rc = rc * bs / 100;
126 gc = gc * bs / 100; 126 gc = gc * bs / 100;
127 bc = bc * bs / 100; 127 bc = bc * bs / 100;
128 128
129 for ( int r = 0; r < count; r++, rgb++ ) { 129 for ( int r = 0; r < count; r++, rgb++ ) {
130 int ri = rc + qRed ( *rgb ) * ( 100 - bs ) / 100; 130 int ri = rc + qRed ( *rgb ) * ( 100 - bs ) / 100;
131 int gi = gc + qGreen ( *rgb ) * ( 100 - bs ) / 100; 131 int gi = gc + qGreen ( *rgb ) * ( 100 - bs ) / 100;
132 int bi = bc + qBlue ( *rgb ) * ( 100 - bs ) / 100; 132 int bi = bc + qBlue ( *rgb ) * ( 100 - bs ) / 100;
133 int ai = qAlpha ( *rgb ); 133 int ai = qAlpha ( *rgb );
134 *rgb = qRgba ( ri, gi, bi, ai ); 134 *rgb = qRgba ( ri, gi, bi, ai );
135 } 135 }
136 136
137 bpm [i].convertFromImage( img ); 137 bpm [i].convertFromImage( img );
138 } 138 }
139 busystate = 0; 139 busystate = 0;
140 if ( busytimer ) 140 if ( busytimer )
141 killTimer ( busytimer ); 141 killTimer ( busytimer );
142 timerEvent ( 0 ); 142 timerEvent ( 0 );
143 busytimer = startTimer ( 180 ); 143 busytimer = startTimer ( 200 );
144 } 144 }
145 else { 145 else {
146 killTimer ( busytimer ); 146 killTimer ( busytimer );
147 busytimer = 0; 147 busytimer = 0;
148 } 148 }
149 } 149 }
150 } 150 }
151 151
152 virtual void timerEvent ( QTimerEvent *te ) 152 virtual void timerEvent ( QTimerEvent *te )
153 { 153 {
154 if ( !te || ( te-> timerId ( ) == busytimer )) { 154 if ( !te || ( te-> timerId ( ) == busytimer )) {
155 if ( bsy ) { 155 if ( bsy ) {
156 busystate++; 156 busystate++;
157 if ( busystate > 5 ) 157 if ( busystate > 5 )
158 busystate = -4; 158 busystate = -4;
159 159
160 bsy-> repaint ( ); 160 QScrollView::updateContents ( bsy-> pixmapRect ( false ));
161 } 161 }
162 } 162 }
163 } 163 }
164 164
165 bool inKeyEvent() const { return ike; } 165 bool inKeyEvent() const { return ike; }
166 void keyPressEvent(QKeyEvent* e) 166 void keyPressEvent(QKeyEvent* e)
167 { 167 {
168 ike = TRUE; 168 ike = TRUE;
169 if ( e->key() == Key_F33 /* OK button */ || e->key() == Key_Space ) 169 if ( e->key() == Key_F33 /* OK button */ || e->key() == Key_Space )
170 returnPressed(currentItem()); 170 returnPressed(currentItem());
171 QIconView::keyPressEvent(e); 171 QIconView::keyPressEvent(e);
172 ike = FALSE; 172 ike = FALSE;
173 } 173 }
174 174
175 void addItem(AppLnk* app, bool resort=TRUE); 175 void addItem(AppLnk* app, bool resort=TRUE);
176 bool removeLink(const QString& linkfile); 176 bool removeLink(const QString& linkfile);
177 177
178 QStringList mimeTypes() const; 178 QStringList mimeTypes() const;
179 QStringList categories() const; 179 QStringList categories() const;
180 180
181 void clear() 181 void clear()
182 { 182 {
183 mimes.clear(); 183 mimes.clear();
184 cats.clear(); 184 cats.clear();
185 QIconView::clear(); 185 QIconView::clear();
186 hidden.clear(); 186 hidden.clear();
187 } 187 }
188 188
189 void addCatsAndMimes(AppLnk* app) 189 void addCatsAndMimes(AppLnk* app)
190 { 190 {
191 // QStringList c = app->categories(); 191 // QStringList c = app->categories();
192 // for (QStringList::ConstIterator cit=c.begin(); cit!=c.end(); ++cit) { 192 // for (QStringList::ConstIterator cit=c.begin(); cit!=c.end(); ++cit) {
193 // cats.replace(*cit,(void*)1); 193 // cats.replace(*cit,(void*)1);
194 // } 194 // }
195 QString maj=app->type(); 195 QString maj=app->type();
196 int sl=maj.find('/'); 196 int sl=maj.find('/');
197 if (sl>=0) { 197 if (sl>=0) {
198 QString k; 198 QString k;
199 k = maj.left(12) == "application/" ? maj : maj.left(sl); 199 k = maj.left(12) == "application/" ? maj : maj.left(sl);
200 mimes.replace(k,(void*)1); 200 mimes.replace(k,(void*)1);
201 } 201 }
202 } 202 }
203 203
204 void setBackgroundPixmap( const QPixmap &pm ) { 204 void setBackgroundPixmap( const QPixmap &pm ) {
205 bgPixmap = pm; 205 if ( pm. isNull ( )) {
206 bgPixmap = pm;
207 }
208 else {
209 // This is need for bg images with alpha channel
210
211 QPixmap tmp ( pm. size ( ), pm. depth ( ));
212
213 QPainter p ( &tmp );
214 p. fillRect ( 0, 0, pm. width ( ), pm. height ( ), bgColor. isValid ( ) ? bgColor : white );
215 p. drawPixmap ( 0, 0, pm );
216 p. end ( );
217
218 bgPixmap = tmp;
219 }
206 } 220 }
207 221
208 void setBackgroundColor( const QColor &c ) { 222 void setBackgroundColor( const QColor &c ) {
209 bgColor = c; 223 bgColor = c;
210 } 224 }
211 225
212 void drawBackground( QPainter *p, const QRect &r ) 226 void drawBackground( QPainter *p, const QRect &r )
213 { 227 {
214 if ( !bgPixmap.isNull() ) { 228 if ( !bgPixmap.isNull() ) {
215 p-> fillRect ( r, bgColor ); 229 //p-> fillRect ( r, bgColor );
216 p->drawTiledPixmap( r, bgPixmap, 230 p->drawTiledPixmap( r, bgPixmap,
217 QPoint( (r.x() + contentsX()) % bgPixmap.width(), 231 QPoint( (r.x() + contentsX()) % bgPixmap.width(),
218 (r.y() + contentsY()) % bgPixmap.height() ) ); 232 (r.y() + contentsY()) % bgPixmap.height() ) );
219 } else { 233 } else {
220 p->fillRect( r, bgColor ); 234 p->fillRect( r, bgColor );
221 } 235 }
222 } 236 }
223 237
224 void setItemTextPos( ItemTextPos pos ) 238 void setItemTextPos( ItemTextPos pos )
225 { 239 {
226 calculateGrid( pos ); 240 calculateGrid( pos );
227 QIconView::setItemTextPos( pos ); 241 QIconView::setItemTextPos( pos );
228 } 242 }
229 243
230 void hideOrShowItems(bool resort); 244 void hideOrShowItems(bool resort);
231 245
232 void setTypeFilter(const QString& typefilter, bool resort) 246 void setTypeFilter(const QString& typefilter, bool resort)
233 { 247 {
234 tf = QRegExp(typefilter,FALSE,TRUE); 248 tf = QRegExp(typefilter,FALSE,TRUE);
235 hideOrShowItems(resort); 249 hideOrShowItems(resort);
236 } 250 }
237 251
238 void setCategoryFilter( int catfilter, bool resort ) 252 void setCategoryFilter( int catfilter, bool resort )
239 { 253 {
240 Categories cat; 254 Categories cat;
241 cat.load( categoryFileName() ); 255 cat.load( categoryFileName() );
242 QString str; 256 QString str;
243 if ( catfilter == -2 ) 257 if ( catfilter == -2 )
244 cf = 0; 258 cf = 0;
245 else 259 else
246 cf = catfilter; 260 cf = catfilter;
247 hideOrShowItems(resort); 261 hideOrShowItems(resort);
248 } 262 }
249 263
250 enum SortMethod { Name, Date, Type }; 264 enum SortMethod { Name, Date, Type };
251 265
252 void setSortMethod( SortMethod m ) 266 void setSortMethod( SortMethod m )
253 { 267 {
254 if ( sortmeth != m ) { 268 if ( sortmeth != m ) {
255 sortmeth = m; 269 sortmeth = m;
256 sort(); 270 sort();
257 } 271 }
258 } 272 }
259 273
260 int compare(const AppLnk* a, const AppLnk* b) 274 int compare(const AppLnk* a, const AppLnk* b)
261 { 275 {
262 switch (sortmeth) { 276 switch (sortmeth) {
263 case Name: 277 case Name:
264 return a->name().compare(b->name()); 278 return a->name().compare(b->name());
265 case Date: { 279 case Date: {
266 QFileInfo fa(a->linkFileKnown() ? a->linkFile() : a->file()); 280 QFileInfo fa(a->linkFileKnown() ? a->linkFile() : a->file());
267 QFileInfo fb(b->linkFileKnown() ? b->linkFile() : b->file()); 281 QFileInfo fb(b->linkFileKnown() ? b->linkFile() : b->file());
268 return fa.lastModified().secsTo(fb.lastModified()); 282 return fa.lastModified().secsTo(fb.lastModified());
269 } 283 }
270 case Type: 284 case Type:
271 return a->type().compare(b->type()); 285 return a->type().compare(b->type());
272 } 286 }
273 return 0; 287 return 0;
274 } 288 }
275 289
276 QString getAllDocLinkInfo() const; 290 QString getAllDocLinkInfo() const;
277 291
278protected: 292protected:
279 293
280 void styleChange( QStyle &old ) 294 void styleChange( QStyle &old )
281 { 295 {
282 QIconView::styleChange( old ); 296 QIconView::styleChange( old );
283 calculateGrid( itemTextPos() ); 297 calculateGrid( itemTextPos() );
284 } 298 }
285 299
286 void calculateGrid( ItemTextPos pos ) 300 void calculateGrid( ItemTextPos pos )
287 { 301 {
288 int dw = QApplication::desktop()->width(); 302 int dw = QApplication::desktop()->width();
289 int viewerWidth = dw-style().scrollBarExtent().width(); 303 int viewerWidth = dw-style().scrollBarExtent().width();
290 if ( pos == Bottom ) { 304 if ( pos == Bottom ) {
291 int cols = 3; 305 int cols = 3;
292 if ( viewerWidth <= 200 ) 306 if ( viewerWidth <= 200 )
293 cols = 2; 307 cols = 2;
294 else if ( viewerWidth >= 400 ) 308 else if ( viewerWidth >= 400 )
295 cols = viewerWidth/96; 309 cols = viewerWidth/96;
296 setSpacing( 4 ); 310 setSpacing( 4 );
297 setGridX( (viewerWidth-(cols+1)*spacing())/cols ); 311 setGridX( (viewerWidth-(cols+1)*spacing())/cols );
298 setGridY( fontMetrics().height()*2+24 ); 312 setGridY( fontMetrics().height()*2+24 );
299 } else { 313 } else {
300 int cols = 2; 314 int cols = 2;
301 if ( viewerWidth < 150 ) 315 if ( viewerWidth < 150 )
302 cols = 1; 316 cols = 1;
303 else if ( viewerWidth >= 400 ) 317 else if ( viewerWidth >= 400 )
304 cols = viewerWidth/150; 318 cols = viewerWidth/150;
305 setSpacing( 2 ); 319 setSpacing( 2 );
306 setGridX( (viewerWidth-(cols+1)*spacing())/cols ); 320 setGridX( (viewerWidth-(cols+1)*spacing())/cols );
307 setGridY( fontMetrics().height()+2 ); 321 setGridY( fontMetrics().height()+2 );
308 } 322 }
309 } 323 }
310 324
311private: 325private:
312 QList<AppLnk> hidden; 326 QList<AppLnk> hidden;
313 QDict<void> mimes; 327 QDict<void> mimes;
314 QDict<void> cats; 328 QDict<void> cats;
315 SortMethod sortmeth; 329 SortMethod sortmeth;
316 QRegExp tf; 330 QRegExp tf;
317 int cf; 331 int cf;
318 QIconViewItem* bsy; 332 QIconViewItem* bsy;
319 bool ike; 333 bool ike;
320 bool bigIcns; 334 bool bigIcns;
321 QPixmap bgPixmap; 335 QPixmap bgPixmap;
322 QPixmap bpm [6]; 336 QPixmap bpm [6];
323 QColor bgColor; 337 QColor bgColor;
324 int busytimer; 338 int busytimer;
325 int busystate; 339 int busystate;
326}; 340};
327 341
328 342
329bool LauncherView::bsy=FALSE; 343bool LauncherView::bsy=FALSE;
330 344
331void LauncherView::setBusy(bool on) 345void LauncherView::setBusy(bool on)
332{ 346{
333 icons->setBusy(on); 347 icons->setBusy(on);
334} 348}
335 349
336class LauncherItem : public QIconViewItem 350class LauncherItem : public QIconViewItem
337{ 351{
338public: 352public:
339 LauncherItem( QIconView *parent, AppLnk* applnk, bool bigIcon=TRUE ); 353 LauncherItem( QIconView *parent, AppLnk* applnk, bool bigIcon=TRUE );
340 ~LauncherItem() 354 ~LauncherItem()
341 { 355 {
342 LauncherIconView* liv = (LauncherIconView*)iconView(); 356 LauncherIconView* liv = (LauncherIconView*)iconView();
343 if ( liv->busyItem() == this ) 357 if ( liv->busyItem() == this )
344 liv->setBusy(FALSE); 358 liv->setBusy(FALSE);
345 delete app; 359 delete app;
346 } 360 }
347 361
348 AppLnk* appLnk() const { return app; } 362 AppLnk* appLnk() const { return app; }
349 AppLnk* takeAppLnk() { AppLnk* r=app; app=0; return r; } 363 AppLnk* takeAppLnk() { AppLnk* r=app; app=0; return r; }
350 364
351 virtual int compare ( QIconViewItem * i ) const; 365 virtual int compare ( QIconViewItem * i ) const;
352 366
353 void paintItem( QPainter *p, const QColorGroup &cg ) 367 void paintItem( QPainter *p, const QColorGroup &cg )
354 { 368 {
355 LauncherIconView* liv = (LauncherIconView*)iconView(); 369 LauncherIconView* liv = (LauncherIconView*)iconView();
356 QBrush oldBrush( liv->itemTextBackground() ); 370 QBrush oldBrush( liv->itemTextBackground() );
357 QColorGroup mycg( cg ); 371 QColorGroup mycg( cg );
358 if ( liv->currentItem() == this ) { 372 if ( liv->currentItem() == this ) {
359 liv->setItemTextBackground( cg.brush( QColorGroup::Highlight ) ); 373 liv->setItemTextBackground( cg.brush( QColorGroup::Highlight ) );
360 mycg.setColor( QColorGroup::Text, cg.color( QColorGroup::HighlightedText ) ); 374 mycg.setColor( QColorGroup::Text, cg.color( QColorGroup::HighlightedText ) );
361 } 375 }
362 QIconViewItem::paintItem(p,mycg); 376 QIconViewItem::paintItem(p,mycg);
363 if ( liv->currentItem() == this ) 377 if ( liv->currentItem() == this )
364 liv->setItemTextBackground( oldBrush ); 378 liv->setItemTextBackground( oldBrush );
365 } 379 }
366 380
367 virtual QPixmap* pixmap () const 381 virtual QPixmap* pixmap () const
368 { 382 {
369 const LauncherIconView* liv = (LauncherIconView*)iconView(); 383 const LauncherIconView* liv = (LauncherIconView*)iconView();
370 if ( (const LauncherItem *)liv->busyItem() == this ) 384 if ( (const LauncherItem *)liv->busyItem() == this )
371 return liv->busyPixmap(); 385 return liv->busyPixmap();
372 return QIconViewItem::pixmap(); 386 return QIconViewItem::pixmap();
373 } 387 }
374 388
375protected: 389protected:
376 AppLnk* app; 390 AppLnk* app;
377}; 391};
378 392
379 393
380LauncherItem::LauncherItem( QIconView *parent, AppLnk *applnk, bool bigIcon ) 394LauncherItem::LauncherItem( QIconView *parent, AppLnk *applnk, bool bigIcon )
381 : QIconViewItem( parent, applnk->name(), 395 : QIconViewItem( parent, applnk->name(),
382 bigIcon ? applnk->bigPixmap() :applnk->pixmap() ), 396 bigIcon ? applnk->bigPixmap() :applnk->pixmap() ),
383 app(applnk) // Takes ownership 397 app(applnk) // Takes ownership
384{ 398{
385} 399}
386 400
387int LauncherItem::compare ( QIconViewItem * i ) const 401int LauncherItem::compare ( QIconViewItem * i ) const
388{ 402{
389 LauncherIconView* view = (LauncherIconView*)iconView(); 403 LauncherIconView* view = (LauncherIconView*)iconView();
390 return view->compare(app,((LauncherItem *)i)->appLnk()); 404 return view->compare(app,((LauncherItem *)i)->appLnk());
391} 405}
392 406
393QStringList LauncherIconView::mimeTypes() const 407QStringList LauncherIconView::mimeTypes() const
394{ 408{
395 QStringList r; 409 QStringList r;
396 QDictIterator<void> it(mimes); 410 QDictIterator<void> it(mimes);
397 while (it.current()) { 411 while (it.current()) {
398 r.append(it.currentKey()); 412 r.append(it.currentKey());
399 ++it; 413 ++it;
400 } 414 }
401 r.sort(); 415 r.sort();
402 return r; 416 return r;
403} 417}
404 418
405void LauncherIconView::addItem(AppLnk* app, bool resort) 419void LauncherIconView::addItem(AppLnk* app, bool resort)
406{ 420{
407 addCatsAndMimes(app); 421 addCatsAndMimes(app);