summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/launcherview.cpp50
1 files changed, 38 insertions, 12 deletions
diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp
index c2bde53..9f86136 100644
--- a/core/launcher/launcherview.cpp
+++ b/core/launcher/launcherview.cpp
@@ -46,107 +46,131 @@
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 calculateGrid( Bottom ); 71 calculateGrid( Bottom );
71 } 72 }
72 73
73 ~LauncherIconView() 74 ~LauncherIconView()
74 { 75 {
75#if 0 // debuggery 76#if 0 // debuggery
76 QListIterator<AppLnk> it(hidden); 77 QListIterator<AppLnk> it(hidden);
77 AppLnk* l; 78 AppLnk* l;
78 while ((l=it.current())) { 79 while ((l=it.current())) {
79 ++it; 80 ++it;
80 //qDebug("%p: hidden (should remove)",l); 81 //qDebug("%p: hidden (should remove)",l);
81 } 82 }
82#endif 83#endif
83 } 84 }
84 85
85 QPixmap* busyPixmap() const { return (QPixmap*)&bpm; } 86 QPixmap* busyPixmap() const { return (QPixmap*)&bpm; }
86 QIconViewItem* busyItem() const { return bsy; } 87 QIconViewItem* busyItem() const { return bsy; }
87 void setBigIcons( bool bi ) { bigIcns = bi; } 88 void setBigIcons( bool bi ) { bigIcns = bi; }
88 89
89 void updateCategoriesAndMimeTypes(); 90 void updateCategoriesAndMimeTypes();
90 91
91 void doAutoScroll() 92 void doAutoScroll()
92 { 93 {
93 // We don't want rubberbanding (yet) 94 // We don't want rubberbanding (yet)
94 } 95 }
95 96
96 void setBusy(bool on) 97 void setBusy(bool on)
97 { 98 {
98 QIconViewItem *c = on ? currentItem() : 0; 99 QIconViewItem *c = on ? currentItem() : 0;
99 if ( bsy != c ) { 100 if ( bsy != c ) {
100 if ( c ) { 101 if ( bsy )
101 QPixmap *src = c->pixmap(); 102 bsy-> repaint ( );
103 bsy = c;
104
105 if ( bsy ) {
106 busytimer = startTimer ( 150 );
107 busystate = 50;
108 startTimer ( 0 );
109 }
110 else
111 killTimer ( busytimer );
112 }
113 }
114
115 virtual void timerEvent ( QTimerEvent *te )
116 {
117 if ( !te || ( te-> timerId ( ) == busytimer )) {
118 if ( bsy ) {
119 QPixmap *src = bsy-> QIconViewItem::pixmap();
102 QImage img = src->convertToImage(); 120 QImage img = src->convertToImage();
103 QRgb* rgb; 121 QRgb* rgb;
104 int count; 122 int count;
105 if ( img.depth() == 32 ) { 123 if ( img.depth() == 32 ) {
106 rgb = (QRgb*)img.bits(); 124 rgb = (QRgb*)img.bits();
107 count = img.bytesPerLine()/sizeof(QRgb)*img.height(); 125 count = img.bytesPerLine()/sizeof(QRgb)*img.height();
108 } else { 126 } else {
109 rgb = img.colorTable(); 127 rgb = img.colorTable();
110 count = img.numColors(); 128 count = img.numColors();
111 } 129 }
112 int rc, gc, bc; 130 int rc, gc, bc;
131 int bs = ::abs ( busystate ) + 25;
113 colorGroup().highlight().rgb( &rc, &gc, &bc ); 132 colorGroup().highlight().rgb( &rc, &gc, &bc );
114 int ri, gi, bi; 133 rc = rc * bs / 100;
134 gc = gc * bs / 100;
135 bc = bc * bs / 100;
136
115 for ( int r = 0; r < count; r++, rgb++ ) { 137 for ( int r = 0; r < count; r++, rgb++ ) {
116 int ri = (rc+qRed(*rgb))/2; 138 int ri = rc + qRed ( *rgb ) * ( 100 - bs ) / 100;
117 int gi = (gc+qGreen(*rgb))/2; 139 int gi = gc + qGreen ( *rgb ) * ( 100 - bs ) / 100;
118 int bi = (bc+qBlue(*rgb))/2; 140 int bi = bc + qBlue ( *rgb ) * ( 100 - bs ) / 100;
119 int ai = qAlpha(*rgb); 141 int ai = qAlpha ( *rgb );
120 *rgb = qRgba(ri,gi,bi,ai); 142 *rgb = qRgba ( ri, gi, bi, ai );
121 } 143 }
122 144
123 bpm.convertFromImage( img ); 145 bpm.convertFromImage( img );
146
147 bsy-> repaint ( );
148
149 busystate += 10;
150 if ( busystate > 50 )
151 busystate = -40;
124 } 152 }
125 QIconViewItem* o = bsy;
126 bsy = c;
127 if ( o ) o->repaint();
128 if ( c ) c->repaint();
129 } 153 }
130 } 154 }
131 155
132 bool inKeyEvent() const { return ike; } 156 bool inKeyEvent() const { return ike; }
133 void keyPressEvent(QKeyEvent* e) 157 void keyPressEvent(QKeyEvent* e)
134 { 158 {
135 ike = TRUE; 159 ike = TRUE;
136 if ( e->key() == Key_F33 /* OK button */ || e->key() == Key_Space ) 160 if ( e->key() == Key_F33 /* OK button */ || e->key() == Key_Space )
137 returnPressed(currentItem()); 161 returnPressed(currentItem());
138 QIconView::keyPressEvent(e); 162 QIconView::keyPressEvent(e);
139 ike = FALSE; 163 ike = FALSE;
140 } 164 }
141 165
142 void addItem(AppLnk* app, bool resort=TRUE); 166 void addItem(AppLnk* app, bool resort=TRUE);
143 bool removeLink(const QString& linkfile); 167 bool removeLink(const QString& linkfile);
144 168
145 QStringList mimeTypes() const; 169 QStringList mimeTypes() const;
146 QStringList categories() const; 170 QStringList categories() const;
147 171
148 void clear() 172 void clear()
149 { 173 {
150 mimes.clear(); 174 mimes.clear();
151 cats.clear(); 175 cats.clear();
152 QIconView::clear(); 176 QIconView::clear();
@@ -266,48 +290,50 @@ protected:
266 int cols = 2; 290 int cols = 2;
267 if ( viewerWidth < 150 ) 291 if ( viewerWidth < 150 )
268 cols = 1; 292 cols = 1;
269 else if ( viewerWidth >= 400 ) 293 else if ( viewerWidth >= 400 )
270 cols = viewerWidth/150; 294 cols = viewerWidth/150;
271 setSpacing( 2 ); 295 setSpacing( 2 );
272 setGridX( (viewerWidth-(cols+1)*spacing())/cols ); 296 setGridX( (viewerWidth-(cols+1)*spacing())/cols );
273 setGridY( fontMetrics().height()+2 ); 297 setGridY( fontMetrics().height()+2 );
274 } 298 }
275 } 299 }
276 300
277private: 301private:
278 QList<AppLnk> hidden; 302 QList<AppLnk> hidden;
279 QDict<void> mimes; 303 QDict<void> mimes;
280 QDict<void> cats; 304 QDict<void> cats;
281 SortMethod sortmeth; 305 SortMethod sortmeth;
282 QRegExp tf; 306 QRegExp tf;
283 int cf; 307 int cf;
284 QIconViewItem* bsy; 308 QIconViewItem* bsy;
285 bool ike; 309 bool ike;
286 bool bigIcns; 310 bool bigIcns;
287 QPixmap bgPixmap; 311 QPixmap bgPixmap;
288 QPixmap bpm; 312 QPixmap bpm;
289 QColor bgColor; 313 QColor bgColor;
314 int busytimer;
315 int busystate;
290}; 316};
291 317
292 318
293bool LauncherView::bsy=FALSE; 319bool LauncherView::bsy=FALSE;
294 320
295void LauncherView::setBusy(bool on) 321void LauncherView::setBusy(bool on)
296{ 322{
297 icons->setBusy(on); 323 icons->setBusy(on);
298} 324}
299 325
300class LauncherItem : public QIconViewItem 326class LauncherItem : public QIconViewItem
301{ 327{
302public: 328public:
303 LauncherItem( QIconView *parent, AppLnk* applnk, bool bigIcon=TRUE ); 329 LauncherItem( QIconView *parent, AppLnk* applnk, bool bigIcon=TRUE );
304 ~LauncherItem() 330 ~LauncherItem()
305 { 331 {
306 LauncherIconView* liv = (LauncherIconView*)iconView(); 332 LauncherIconView* liv = (LauncherIconView*)iconView();
307 if ( liv->busyItem() == this ) 333 if ( liv->busyItem() == this )
308 liv->setBusy(FALSE); 334 liv->setBusy(FALSE);
309 delete app; 335 delete app;
310 } 336 }
311 337
312 AppLnk* appLnk() const { return app; } 338 AppLnk* appLnk() const { return app; }
313 AppLnk* takeAppLnk() { AppLnk* r=app; app=0; return r; } 339 AppLnk* takeAppLnk() { AppLnk* r=app; app=0; return r; }