From 4aed2c8219774f5d797760606b8489a92ddc5163 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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 --- kxkb/layoutmap.h | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 kxkb/layoutmap.h (limited to 'kxkb/layoutmap.h') diff --git a/kxkb/layoutmap.h b/kxkb/layoutmap.h new file mode 100644 index 000000000..198990327 --- /dev/null +++ b/kxkb/layoutmap.h @@ -0,0 +1,75 @@ +// +// C++ Interface: layoutmap +// +// Description: +// +// +// Author: Andriy Rysin , (C) 2006 +// +// Copyright: See COPYING file that comes with this distribution +// +// + +#ifndef __LAYOUTMAP_H +#define __LAYOUTMAP_H + +#include + +#include +#include + +#include +#include + +#include "kxkbconfig.h" + + +// LayoutInfo is used for sticky switching and per-window/application switching policy +struct LayoutState { + const LayoutUnit& layoutUnit; + int group; + + LayoutState(const LayoutUnit& layoutUnit_): + layoutUnit(layoutUnit_), + group(layoutUnit_.defaultGroup) + { +// kdDebug() << "new LayoutState " << layoutUnit.toPair() << " group: " << group << endl; + } +}; + + +// LayoutMap is used for per-window or per-application switching policy +class LayoutMap { + typedef QPtrQueue LayoutQueue; + typedef QMap WinLayoutMap; + typedef QMap WinClassLayoutMap; + +public: + LayoutMap(const KxkbConfig& kxkbConfig); +// void setConfig(const KxkbConfig& kxkbConfig); + + void setCurrentLayout(const LayoutUnit& layoutUnit); + void setCurrentGroup(int group); + LayoutState& getNextLayout(); + LayoutState& getCurrentLayout(); + + void setCurrentWindow(WId winId); + void reset(); + +private: + // pseudo-union + LayoutQueue m_globalLayouts; + WinLayoutMap m_winLayouts; + WinClassLayoutMap m_appLayouts; + + const KxkbConfig& m_kxkbConfig; + WId m_currentWinId; + QString m_currentWinClass; // only for SWITCH_POLICY_WIN_CLASS + + void initLayoutQueue(LayoutQueue& layoutQueue); + LayoutQueue& getCurrentLayoutQueue(WId winId); + LayoutQueue& getCurrentLayoutQueueInternal(WId winId); + void clearMaps(); +}; + +#endif -- cgit v1.2.3