summaryrefslogtreecommitdiff
path: root/core/launcher/appicons.h
Unidiff
Diffstat (limited to 'core/launcher/appicons.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/appicons.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/core/launcher/appicons.h b/core/launcher/appicons.h
new file mode 100644
index 0000000..f53f4a7
--- a/dev/null
+++ b/core/launcher/appicons.h
@@ -0,0 +1,51 @@
1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved.
3**
4** This file is part of Qtopia Environment.
5**
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
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
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.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20
21#ifndef APPICONS_H
22#define APPICONS_H
23
24
25#include <qhbox.h>
26#include <qintdict.h>
27#include <qlabel.h>
28
29
30class AppIcons : public QHBox
31{
32 Q_OBJECT
33
34public:
35 AppIcons( QWidget *parent );
36 void setIcon(int id, const QPixmap&);
37 void setToolTip(int id, const QString&);
38 void remove(int id);
39
40private slots:
41 void receive( const QCString &msg, const QByteArray &data );
42 void clicked(const QPoint& relpos, int button, bool dbl);
43
44private:
45 QIntDict<QLabel> buttons;
46 QLabel* button(int id);
47 int findId(QLabel*);
48};
49
50
51#endif