author | harlekin <harlekin> | 2003-11-30 18:04:13 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-11-30 18:04:13 (UTC) |
commit | f40b049e2345a9b008ea2bdc241062302bd7ca04 (patch) (unidiff) | |
tree | 82ba2d954605de18ef063315b62f04f434ce43cb | |
parent | a7e786be4f9545a881015de8ba8a124a62f0f891 (diff) | |
download | opie-f40b049e2345a9b008ea2bdc241062302bd7ca04.zip opie-f40b049e2345a9b008ea2bdc241062302bd7ca04.tar.gz opie-f40b049e2345a9b008ea2bdc241062302bd7ca04.tar.bz2 |
make the busy indicator launcher settings also work in head
-rw-r--r-- | core/launcher/launcherview.cpp | 32 | ||||
-rw-r--r-- | core/launcher/launcherview.h | 9 |
2 files changed, 29 insertions, 12 deletions
diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp index 85163b6..62c678d 100644 --- a/core/launcher/launcherview.cpp +++ b/core/launcher/launcherview.cpp | |||
@@ -57,20 +57,16 @@ | |||
57 | class BgPixmap | 57 | class BgPixmap |
58 | { | 58 | { |
59 | public: | 59 | public: |
60 | BgPixmap( const QPixmap &p ) : pm(p), ref(1) {} | 60 | BgPixmap( const QPixmap &p ) : pm(p), ref(1) {} |
61 | QPixmap pm; | 61 | QPixmap pm; |
62 | int ref; | 62 | int ref; |
63 | }; | 63 | }; |
64 | 64 | ||
65 | enum BusyIndicatorType { | ||
66 | BIT_Normal = 0, | ||
67 | BIT_Blinking | ||
68 | }; | ||
69 | 65 | ||
70 | static QMap<QString,BgPixmap*> *bgCache = 0; | 66 | static QMap<QString,BgPixmap*> *bgCache = 0; |
71 | 67 | ||
72 | static void cleanup_cache() | 68 | static void cleanup_cache() |
73 | { | 69 | { |
74 | QMap<QString,BgPixmap*>::Iterator it = bgCache->begin(); | 70 | QMap<QString,BgPixmap*>::Iterator it = bgCache->begin(); |
75 | while ( it != bgCache->end() ) { | 71 | while ( it != bgCache->end() ) { |
76 | QMap<QString,BgPixmap*>::Iterator curr = it; | 72 | QMap<QString,BgPixmap*>::Iterator curr = it; |
@@ -92,22 +88,25 @@ public: | |||
92 | AppLnk *appLnk() const { return app; } | 88 | AppLnk *appLnk() const { return app; } |
93 | AppLnk *takeAppLnk() { AppLnk* r=app; app=0; return r; } | 89 | AppLnk *takeAppLnk() { AppLnk* r=app; app=0; return r; } |
94 | 90 | ||
95 | void animateIcon(); | 91 | void animateIcon(); |
96 | void resetIcon(); | 92 | void resetIcon(); |
97 | 93 | ||
98 | virtual int compare ( QIconViewItem * i ) const; | 94 | virtual int compare ( QIconViewItem * i ) const; |
99 | void paintItem( QPainter *p, const QColorGroup &cg ); | 95 | void paintItem( QPainter *p, const QColorGroup &cg ); |
96 | |||
97 | void setBusyIndicatorType ( BusyIndicatorType t ) { busyType = t; } | ||
100 | protected: | 98 | protected: |
101 | bool isBigIcon; | 99 | bool isBigIcon; |
102 | int iteration; | 100 | int iteration; |
103 | AppLnk* app; | 101 | AppLnk* app; |
104 | private: | 102 | private: |
105 | void paintAnimatedIcon( QPainter *p ); | 103 | void paintAnimatedIcon( QPainter *p ); |
104 | BusyIndicatorType busyType; | ||
106 | }; | 105 | }; |
107 | 106 | ||
108 | 107 | ||
109 | class LauncherIconView : public QIconView { | 108 | class LauncherIconView : public QIconView { |
110 | public: | 109 | public: |
111 | LauncherIconView( QWidget* parent, const char* name=0 ) : | 110 | LauncherIconView( QWidget* parent, const char* name=0 ) : |
112 | QIconView(parent,name), | 111 | QIconView(parent,name), |
113 | tf(""), | 112 | tf(""), |
@@ -142,18 +141,18 @@ public: | |||
142 | void setBigIcons( bool bi ) { | 141 | void setBigIcons( bool bi ) { |
143 | bigIcns = bi; | 142 | bigIcns = bi; |
144 | #ifdef USE_ANIMATED_BUSY_ICON_OVERLAY | 143 | #ifdef USE_ANIMATED_BUSY_ICON_OVERLAY |
145 | busyPix.resize(0,0); | 144 | busyPix.resize(0,0); |
146 | #endif | 145 | #endif |
147 | } | 146 | } |
148 | 147 | ||
149 | void updateCategoriesAndMimeTypes(); | 148 | void updateCategoriesAndMimeTypes(); |
150 | 149 | void setBusyIndicatorType ( BusyIndicatorType t ) { busyType = t; } | |
151 | void doAutoScroll() | 150 | void doAutoScroll() |
152 | { | 151 | { |
153 | // We don't want rubberbanding (yet) | 152 | // We don't want rubberbanding (yet) |
154 | } | 153 | } |
155 | 154 | ||
156 | void setBusy(bool on) | 155 | void setBusy(bool on) |
157 | { | 156 | { |
158 | #ifdef USE_ANIMATED_BUSY_ICON_OVERLAY | 157 | #ifdef USE_ANIMATED_BUSY_ICON_OVERLAY |
159 | if ( busyPix.isNull() ) { | 158 | if ( busyPix.isNull() ) { |
@@ -171,20 +170,23 @@ public: | |||
171 | } | 170 | } |
172 | } | 171 | } |
173 | 172 | ||
174 | LauncherItem *c = on ? (LauncherItem*)currentItem() : 0; | 173 | LauncherItem *c = on ? (LauncherItem*)currentItem() : 0; |
175 | 174 | ||
176 | if ( bsy != c ) { | 175 | if ( bsy != c ) { |
177 | LauncherItem *oldBusy = bsy; | 176 | LauncherItem *oldBusy = bsy; |
178 | bsy = c; | 177 | bsy = c; |
179 | if ( oldBusy ) | 178 | if ( oldBusy ) { |
180 | oldBusy->resetIcon(); | 179 | oldBusy->resetIcon(); |
181 | if ( bsy ) | 180 | } |
181 | if ( bsy ) { | ||
182 | bsy->setBusyIndicatorType( busyType ) ; | ||
182 | bsy->animateIcon(); | 183 | bsy->animateIcon(); |
184 | } | ||
183 | } | 185 | } |
184 | } | 186 | } |
185 | 187 | ||
186 | bool inKeyEvent() const { return ike; } | 188 | bool inKeyEvent() const { return ike; } |
187 | void keyPressEvent(QKeyEvent* e) | 189 | void keyPressEvent(QKeyEvent* e) |
188 | { | 190 | { |
189 | ike = TRUE; | 191 | ike = TRUE; |
190 | if ( e->key() == Key_F33 /* OK button */ || e->key() == Key_Space ) { | 192 | if ( e->key() == Key_F33 /* OK button */ || e->key() == Key_Space ) { |
@@ -358,28 +360,32 @@ private: | |||
358 | int busyTimer; | 360 | int busyTimer; |
359 | bool ike; | 361 | bool ike; |
360 | bool bigIcns; | 362 | bool bigIcns; |
361 | QPixmap bgPixmap; | 363 | QPixmap bgPixmap; |
362 | QColor bgColor; | 364 | QColor bgColor; |
363 | #ifdef USE_ANIMATED_BUSY_ICON_OVERLAY | 365 | #ifdef USE_ANIMATED_BUSY_ICON_OVERLAY |
364 | QPixmap busyPix; | 366 | QPixmap busyPix; |
365 | #endif | 367 | #endif |
368 | BusyIndicatorType busyType; | ||
366 | }; | 369 | }; |
367 | 370 | ||
368 | 371 | ||
369 | bool LauncherView::bsy=FALSE; | 372 | bool LauncherView::bsy=FALSE; |
370 | 373 | ||
371 | void LauncherView::setBusy(bool on) | 374 | void LauncherView::setBusy(bool on) |
372 | { | 375 | { |
373 | icons->setBusy(on); | 376 | icons->setBusy(on); |
374 | } | 377 | } |
375 | 378 | ||
376 | void LauncherView::setBusyIndicatorType( const QString& type ) { | 379 | void LauncherView::setBusyIndicatorType( const QString& type ) { |
377 | /* ### FIXME */ | 380 | if ( type. lower ( ) == "animated" ) |
381 | icons->setBusyIndicatorType( BIT_Animated ) ; | ||
382 | else | ||
383 | icons->setBusyIndicatorType( BIT_Normal ) ; | ||
378 | } | 384 | } |
379 | 385 | ||
380 | LauncherItem::LauncherItem( QIconView *parent, AppLnk *applnk, bool bigIcon ) | 386 | LauncherItem::LauncherItem( QIconView *parent, AppLnk *applnk, bool bigIcon ) |
381 | : QIconViewItem( parent, applnk->name(), | 387 | : QIconViewItem( parent, applnk->name(), |
382 | bigIcon ? applnk->bigPixmap() :applnk->pixmap() ), | 388 | bigIcon ? applnk->bigPixmap() :applnk->pixmap() ), |
383 | isBigIcon( bigIcon ), | 389 | isBigIcon( bigIcon ), |
384 | iteration(0), | 390 | iteration(0), |
385 | app(applnk) // Takes ownership | 391 | app(applnk) // Takes ownership |
@@ -415,16 +421,18 @@ void LauncherItem::paintItem( QPainter *p, const QColorGroup &cg ) | |||
415 | // Paint animation overlay | 421 | // Paint animation overlay |
416 | if ( liv->busyItem() == this ) | 422 | if ( liv->busyItem() == this ) |
417 | paintAnimatedIcon(p); | 423 | paintAnimatedIcon(p); |
418 | 424 | ||
419 | if ( liv->currentItem() == this ) | 425 | if ( liv->currentItem() == this ) |
420 | liv->setItemTextBackground( oldBrush ); | 426 | liv->setItemTextBackground( oldBrush ); |
421 | } | 427 | } |
422 | 428 | ||
429 | |||
430 | |||
423 | void LauncherItem::paintAnimatedIcon( QPainter *p ) | 431 | void LauncherItem::paintAnimatedIcon( QPainter *p ) |
424 | { | 432 | { |
425 | LauncherIconView* liv = (LauncherIconView*)iconView(); | 433 | LauncherIconView* liv = (LauncherIconView*)iconView(); |
426 | int pic = iteration % 16; | 434 | int pic = iteration % 16; |
427 | int w = pixmap()->width(), h = pixmap()->height(); | 435 | int w = pixmap()->width(), h = pixmap()->height(); |
428 | QPixmap dblBuf( w, h + 4 ); | 436 | QPixmap dblBuf( w, h + 4 ); |
429 | QPainter p2( &dblBuf ); | 437 | QPainter p2( &dblBuf ); |
430 | int x1, y1; | 438 | int x1, y1; |
@@ -435,18 +443,20 @@ void LauncherItem::paintAnimatedIcon( QPainter *p ) | |||
435 | x1 = x() - liv->contentsX(); | 443 | x1 = x() - liv->contentsX(); |
436 | y1 = y() + (height() - h) / 2 - liv->contentsY(); | 444 | y1 = y() + (height() - h) / 2 - liv->contentsY(); |
437 | } | 445 | } |
438 | y1 -= 2; | 446 | y1 -= 2; |
439 | p2.translate(-x1,-y1); | 447 | p2.translate(-x1,-y1); |
440 | liv->drawBackground( &p2, QRect(x1,y1,w,h+4) ); | 448 | liv->drawBackground( &p2, QRect(x1,y1,w,h+4) ); |
441 | int bounceY = 2; | 449 | int bounceY = 2; |
442 | #ifdef BOUNCE_BUSY_ICON | 450 | #ifdef BOUNCE_BUSY_ICON |
443 | bounceY = 4 - ((iteration+2)%8); | 451 | if ( busyType == BIT_Animated ) { |
444 | bounceY = bounceY < 0 ? -bounceY : bounceY; | 452 | bounceY = 4 - ((iteration+2)%8); |
453 | bounceY = bounceY < 0 ? -bounceY : bounceY; | ||
454 | } | ||
445 | #endif | 455 | #endif |
446 | p2.drawPixmap( x1, y1 + bounceY, *pixmap() ); | 456 | p2.drawPixmap( x1, y1 + bounceY, *pixmap() ); |
447 | #ifdef USE_ANIMATED_BUSY_ICON_OVERLAY | 457 | #ifdef USE_ANIMATED_BUSY_ICON_OVERLAY |
448 | p2.drawPixmap( x1, y1 + bounceY, liv->busyPixmap(), w * pic, 0, w, h ); | 458 | p2.drawPixmap( x1, y1 + bounceY, liv->busyPixmap(), w * pic, 0, w, h ); |
449 | #endif | 459 | #endif |
450 | p->drawPixmap( x1, y1, dblBuf ); | 460 | p->drawPixmap( x1, y1, dblBuf ); |
451 | } | 461 | } |
452 | 462 | ||
diff --git a/core/launcher/launcherview.h b/core/launcher/launcherview.h index 7863d6a..e40a006 100644 --- a/core/launcher/launcherview.h +++ b/core/launcher/launcherview.h | |||
@@ -29,16 +29,23 @@ class CategorySelect; | |||
29 | class LauncherIconView; | 29 | class LauncherIconView; |
30 | class QIconView; | 30 | class QIconView; |
31 | class QIconViewItem; | 31 | class QIconViewItem; |
32 | class QLabel; | 32 | class QLabel; |
33 | class QWidgetStack; | 33 | class QWidgetStack; |
34 | class MenuButton; | 34 | class MenuButton; |
35 | class QComboBox; | 35 | class QComboBox; |
36 | 36 | ||
37 | |||
38 | |||
39 | enum BusyIndicatorType { | ||
40 | BIT_Normal = 0, | ||
41 | BIT_Animated | ||
42 | }; | ||
43 | |||
37 | class LauncherView : public QVBox | 44 | class LauncherView : public QVBox |
38 | { | 45 | { |
39 | Q_OBJECT | 46 | Q_OBJECT |
40 | 47 | ||
41 | public: | 48 | public: |
42 | LauncherView( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); | 49 | LauncherView( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); |
43 | ~LauncherView(); | 50 | ~LauncherView(); |
44 | 51 | ||
@@ -101,12 +108,12 @@ private: | |||
101 | QStringList typelist; | 108 | QStringList typelist; |
102 | CategorySelect *catmb; | 109 | CategorySelect *catmb; |
103 | ViewMode vmode; | 110 | ViewMode vmode; |
104 | BackgroundType bgType; | 111 | BackgroundType bgType; |
105 | QString bgName; | 112 | QString bgName; |
106 | QColor textCol; | 113 | QColor textCol; |
107 | 114 | ||
108 | QImage loadBackgroundImage(QString &fname); | 115 | QImage loadBackgroundImage(QString &fname); |
109 | int m_busyType; | 116 | |
110 | }; | 117 | }; |
111 | 118 | ||
112 | #endif // LAUNCHERVIEW_H | 119 | #endif // LAUNCHERVIEW_H |