summaryrefslogtreecommitdiff
path: root/core/launcher/launcherview.h
authorharlekin <harlekin>2003-11-30 18:04:13 (UTC)
committer harlekin <harlekin>2003-11-30 18:04:13 (UTC)
commitf40b049e2345a9b008ea2bdc241062302bd7ca04 (patch) (unidiff)
tree82ba2d954605de18ef063315b62f04f434ce43cb /core/launcher/launcherview.h
parenta7e786be4f9545a881015de8ba8a124a62f0f891 (diff)
downloadopie-f40b049e2345a9b008ea2bdc241062302bd7ca04.zip
opie-f40b049e2345a9b008ea2bdc241062302bd7ca04.tar.gz
opie-f40b049e2345a9b008ea2bdc241062302bd7ca04.tar.bz2
make the busy indicator launcher settings also work in head
Diffstat (limited to 'core/launcher/launcherview.h') (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/launcherview.h9
1 files changed, 8 insertions, 1 deletions
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
@@ -25,24 +25,31 @@
25 25
26#include <qvbox.h> 26#include <qvbox.h>
27 27
28class CategorySelect; 28class CategorySelect;
29class LauncherIconView; 29class LauncherIconView;
30class QIconView; 30class QIconView;
31class QIconViewItem; 31class QIconViewItem;
32class QLabel; 32class QLabel;
33class QWidgetStack; 33class QWidgetStack;
34class MenuButton; 34class MenuButton;
35class QComboBox; 35class QComboBox;
36 36
37
38
39enum BusyIndicatorType {
40 BIT_Normal = 0,
41 BIT_Animated
42};
43
37class LauncherView : public QVBox 44class LauncherView : public QVBox
38{ 45{
39 Q_OBJECT 46 Q_OBJECT
40 47
41public: 48public:
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
45 void hideIcons(); 52 void hideIcons();
46 53
47 bool removeLink(const QString& linkfile); 54 bool removeLink(const QString& linkfile);
48 void addItem(AppLnk* app, bool resort=TRUE); 55 void addItem(AppLnk* app, bool resort=TRUE);
@@ -97,16 +104,16 @@ private:
97 static bool bsy; 104 static bool bsy;
98 QWidget* tools; 105 QWidget* tools;
99 LauncherIconView* icons; 106 LauncherIconView* icons;
100 QComboBox *typemb; 107 QComboBox *typemb;
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