summaryrefslogtreecommitdiff
path: root/core/launcher/launcherview.h
Unidiff
Diffstat (limited to 'core/launcher/launcherview.h') (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/launcherview.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/launcher/launcherview.h b/core/launcher/launcherview.h
index 3cca7f7..0be9a1f 100644
--- a/core/launcher/launcherview.h
+++ b/core/launcher/launcherview.h
@@ -143,13 +143,13 @@ public:
143public slots: 143public slots:
144 void recieve( const QCString&, const QByteArray& ); 144 void recieve( const QCString&, const QByteArray& );
145protected slots: 145protected slots:
146 virtual void sendRequest(); 146 virtual void sendRequest();
147 147
148signals: 148signals:
149 void sig_Thumbnail(const QPixmap&,const QString&); 149 void sig_Thumbnail(const QPixmap&,const QString&,int);
150 150
151protected: 151protected:
152 PixmapInfos m_inThumbNail; 152 PixmapInfos m_inThumbNail;
153}; 153};
154 154
155class LauncherIconView : public QIconView { 155class LauncherIconView : public QIconView {
@@ -213,25 +213,26 @@ public:
213 void setCategoryFilter( int catfilter, bool resort ); 213 void setCategoryFilter( int catfilter, bool resort );
214 214
215 enum SortMethod { Name, Date, Type }; 215 enum SortMethod { Name, Date, Type };
216 216
217 void setSortMethod( SortMethod m ); 217 void setSortMethod( SortMethod m );
218 int compare(const AppLnk* a, const AppLnk* b); 218 int compare(const AppLnk* a, const AppLnk* b);
219 void requestEyePix(const LauncherItem*which);
219 220
220protected: 221protected:
221 void timerEvent( QTimerEvent *te ); 222 void timerEvent( QTimerEvent *te );
222 void styleChange( QStyle &old ); 223 void styleChange( QStyle &old );
223 void calculateGrid( ItemTextPos pos ); 224 void calculateGrid( ItemTextPos pos );
224 void focusInEvent( QFocusEvent * ) {} 225 void focusInEvent( QFocusEvent * ) {}
225 void focusOutEvent( QFocusEvent * ) {} 226 void focusOutEvent( QFocusEvent * ) {}
226 LauncherItem*findDocItem(const QString&); 227 LauncherItem*findDocItem(const QString&);
227 void addCheckItem(AppLnk* app); 228 void addCheckItem(AppLnk* app);
228 void checkCallback(); 229 void checkCallback();
229 230
230protected slots: 231protected slots:
231 void setEyePixmap(const QPixmap&,const QString&); 232 void setEyePixmap(const QPixmap&,const QString&,int width);
232 233
233private: 234private:
234 QList<AppLnk> hidden; 235 QList<AppLnk> hidden;
235 QDict<void> mimes; 236 QDict<void> mimes;
236 QDict<void> cats; 237 QDict<void> cats;
237 SortMethod sortmeth; 238 SortMethod sortmeth;