summaryrefslogtreecommitdiffstats
path: root/kxkb/layoutmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'kxkb/layoutmap.h')
-rw-r--r--kxkb/layoutmap.h75
1 files changed, 75 insertions, 0 deletions
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 <rysin@kde.org>, (C) 2006
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+
+#ifndef __LAYOUTMAP_H
+#define __LAYOUTMAP_H
+
+#include <assert.h>
+
+#include <qptrqueue.h>
+#include <qmap.h>
+
+#include <kwinmodule.h>
+#include <kdebug.h>
+
+#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<LayoutState> LayoutQueue;
+ typedef QMap<WId, LayoutQueue> WinLayoutMap;
+ typedef QMap<QString, LayoutQueue> 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