summaryrefslogtreecommitdiff
path: root/core/applets/multikeyapplet/multikey.h
Unidiff
Diffstat (limited to 'core/applets/multikeyapplet/multikey.h') (more/less context) (show whitespace changes)
-rw-r--r--core/applets/multikeyapplet/multikey.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/applets/multikeyapplet/multikey.h b/core/applets/multikeyapplet/multikey.h
index 2cb7b29..b525074 100644
--- a/core/applets/multikeyapplet/multikey.h
+++ b/core/applets/multikeyapplet/multikey.h
@@ -7,32 +7,34 @@
7** Foundation and appearing in the file LICENSE.GPL included in the 7** Foundation and appearing in the file LICENSE.GPL included in the
8** packaging of this file. 8** packaging of this file.
9** 9**
10** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 10** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
11** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 11** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
12** 12**
13**********************************************************************/ 13**********************************************************************/
14#ifndef __MULTIKEY_H__ 14#ifndef __MULTIKEY_H__
15#define __MULTIKEY_H__ 15#define __MULTIKEY_H__
16 16
17#include <qlabel.h> 17#include <qlabel.h>
18#include <qstringlist.h> 18#include <qstringlist.h>
19#include <qpopupmenu.h>
19#include <qcopchannel_qws.h> 20#include <qcopchannel_qws.h>
20 21
21class Multikey : public QLabel 22class Multikey : public QLabel
22{ 23{
23 Q_OBJECT 24 Q_OBJECT
24public: 25public:
25 Multikey( QWidget *parent ); 26 Multikey( QWidget *parent );
26 27
27public slots: 28public slots:
28 void message(const QCString &message, const QByteArray &data); 29 void message(const QCString &message, const QByteArray &data);
29 30
30protected: 31protected:
31 void mousePressEvent( QMouseEvent * ); 32 void mousePressEvent( QMouseEvent * );
32 QStringList sw_maps; 33 QStringList sw_maps;
33 QStringList labels; 34 QStringList labels;
35 QPopupMenu popupMenu;
34 QString current; 36 QString current;
35 uint lang; 37 uint lang;
36}; 38};
37 39
38#endif /* __MULTIKEY_H__ */ 40#endif /* __MULTIKEY_H__ */