diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 4aed2c8219774f5d797760606b8489a92ddc5163 (patch) | |
tree | 3f8c130f7d269626bf6a9447407ef6c35954426a /kxkb/kxkbtraywindow.h | |
download | tdebase-4aed2c8219774f5d797760606b8489a92ddc5163.tar.gz tdebase-4aed2c8219774f5d797760606b8489a92ddc5163.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kxkb/kxkbtraywindow.h')
-rw-r--r-- | kxkb/kxkbtraywindow.h | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/kxkb/kxkbtraywindow.h b/kxkb/kxkbtraywindow.h new file mode 100644 index 000000000..9c2c070c6 --- /dev/null +++ b/kxkb/kxkbtraywindow.h @@ -0,0 +1,92 @@ +// +// C++ Interface: kxkbtraywindow +// +// Description: +// +// +// Author: Andriy Rysin <rysin@kde.org>, (C) 2006 +// +// Copyright: See COPYING file that comes with this distribution +// +// +#ifndef KXKBSYSTEMTRAY_H +#define KXKBSYSTEMTRAY_H + +#include <ksystemtray.h> + +#include <qstring.h> +#include <qvaluelist.h> + +#include "kxkbconfig.h" + + +class QLabel; +class QPopupMenu; +class XkbRules; + +/* This class is responsible for displaying flag/label for the layout, + catching keyboard/mouse events and displaying menu when selected +*/ + +class KxkbLabelController: public QObject +{ +// Q_OBJECT + +public: + enum { START_MENU_ID = 100, CONFIG_MENU_ID = 130, HELP_MENU_ID = 131 }; + + KxkbLabelController(QLabel *label, QPopupMenu* contextMenu); + + void initLayoutList(const QValueList<LayoutUnit>& layouts, const XkbRules& rule); + void setCurrentLayout(const LayoutUnit& layout); +// void setCurrentLayout(const QString& layout, const QString &variant); + void setError(const QString& layoutInfo=""); + void setShowFlag(bool showFlag) { m_showFlag = showFlag; } + void show() { label->show(); } + +// signals: +// +// void menuActivated(int); +// void toggled(); + +// protected: +// +// void mouseReleaseEvent(QMouseEvent *); + +private: + QLabel* label; + QPopupMenu* contextMenu; + + const int m_menuStartIndex; + bool m_showFlag; + int m_prevLayoutCount; + QMap<QString, QString> m_descriptionMap; + + void setToolTip(const QString& tip); + void setPixmap(const QPixmap& pixmap); +}; + + +class KxkbSystemTray : public KSystemTray +{ + Q_OBJECT + + public: + KxkbSystemTray(): + KSystemTray(NULL) + {} + + void mouseReleaseEvent(QMouseEvent *ev) + { + if (ev->button() == QMouseEvent::LeftButton) + emit toggled(); + KSystemTray::mouseReleaseEvent(ev); + } + + signals: + void menuActivated(int); + void toggled(); +}; + + +#endif |