2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
|
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
|
2013-03-12 12:17:53 +00:00
|
|
|
Copyright (C) 2009 Martin Gräßlin <mgraesslin@kde.org>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#ifndef KWIN_TABBOX_H
|
|
|
|
#define KWIN_TABBOX_H
|
|
|
|
|
2013-09-06 12:57:33 +00:00
|
|
|
#include <QKeySequence>
|
2007-04-29 17:35:43 +00:00
|
|
|
#include <QTimer>
|
2009-09-13 11:36:45 +00:00
|
|
|
#include <QModelIndex>
|
2007-04-29 17:35:43 +00:00
|
|
|
#include "utils.h"
|
2009-09-13 11:36:45 +00:00
|
|
|
#include "tabbox/tabboxhandler.h"
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2013-04-25 15:21:54 +00:00
|
|
|
class KConfigGroup;
|
2013-09-06 12:57:33 +00:00
|
|
|
class QAction;
|
2016-03-04 13:15:27 +00:00
|
|
|
class QMouseEvent;
|
2009-09-13 11:36:45 +00:00
|
|
|
class QKeyEvent;
|
2016-03-04 13:15:27 +00:00
|
|
|
class QWheelEvent;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2013-07-26 06:46:31 +00:00
|
|
|
struct xcb_button_press_event_t;
|
|
|
|
struct xcb_motion_notify_event_t;
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class Workspace;
|
2015-03-05 12:59:18 +00:00
|
|
|
class AbstractClient;
|
2007-04-29 17:35:43 +00:00
|
|
|
class Client;
|
2009-09-13 11:36:45 +00:00
|
|
|
namespace TabBox
|
|
|
|
{
|
2012-11-17 10:50:59 +00:00
|
|
|
class DesktopChainManager;
|
2009-09-13 11:36:45 +00:00
|
|
|
class TabBoxConfig;
|
2011-06-25 16:05:07 +00:00
|
|
|
class TabBox;
|
2009-09-13 11:36:45 +00:00
|
|
|
class TabBoxHandlerImpl : public TabBoxHandler
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
public:
|
2012-12-29 06:34:38 +00:00
|
|
|
explicit TabBoxHandlerImpl(TabBox* tabBox);
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual ~TabBoxHandlerImpl();
|
|
|
|
|
|
|
|
virtual int activeScreen() const;
|
2012-05-20 13:52:24 +00:00
|
|
|
virtual QWeakPointer< TabBoxClient > activeClient() const;
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual int currentDesktop() const;
|
|
|
|
virtual QString desktopName(TabBoxClient* client) const;
|
|
|
|
virtual QString desktopName(int desktop) const;
|
2013-04-12 18:15:31 +00:00
|
|
|
virtual bool isKWinCompositing() const;
|
2012-05-20 13:52:24 +00:00
|
|
|
virtual QWeakPointer< TabBoxClient > nextClientFocusChain(TabBoxClient* client) const;
|
2012-08-19 17:32:56 +00:00
|
|
|
virtual QWeakPointer< TabBoxClient > firstClientFocusChain() const;
|
2012-09-05 18:55:07 +00:00
|
|
|
virtual bool isInFocusChain (TabBoxClient* client) const;
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual int nextDesktopFocusChain(int desktop) const;
|
|
|
|
virtual int numberOfDesktops() const;
|
|
|
|
virtual TabBoxClientList stackingOrder() const;
|
2016-03-04 08:44:24 +00:00
|
|
|
virtual void elevateClient(TabBoxClient* c, QWindow *tabbox, bool elevate) const;
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual void raiseClient(TabBoxClient *client) const;
|
|
|
|
virtual void restack(TabBoxClient *c, TabBoxClient *under);
|
2015-02-06 22:10:59 +00:00
|
|
|
virtual void shadeClient(TabBoxClient *c, bool b) const;
|
2012-05-20 13:52:24 +00:00
|
|
|
virtual QWeakPointer< TabBoxClient > clientToAddToList(KWin::TabBox::TabBoxClient* client, int desktop) const;
|
|
|
|
virtual QWeakPointer< TabBoxClient > desktopClient() const;
|
2011-11-27 16:03:35 +00:00
|
|
|
virtual void activateAndClose();
|
2011-06-25 16:05:07 +00:00
|
|
|
|
|
|
|
private:
|
2012-03-04 18:24:13 +00:00
|
|
|
bool checkDesktop(TabBoxClient* client, int desktop) const;
|
|
|
|
bool checkActivity(TabBoxClient* client) const;
|
|
|
|
bool checkApplications(TabBoxClient* client) const;
|
|
|
|
bool checkMinimized(TabBoxClient* client) const;
|
|
|
|
bool checkMultiScreen(TabBoxClient* client) const;
|
|
|
|
|
2011-06-25 16:05:07 +00:00
|
|
|
TabBox* m_tabBox;
|
2012-11-17 10:50:59 +00:00
|
|
|
DesktopChainManager* m_desktopFocusChain;
|
2011-01-30 14:34:42 +00:00
|
|
|
};
|
2009-09-13 11:36:45 +00:00
|
|
|
|
|
|
|
class TabBoxClientImpl : public TabBoxClient
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
public:
|
2015-03-05 12:59:18 +00:00
|
|
|
explicit TabBoxClientImpl(AbstractClient *client);
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual ~TabBoxClientImpl();
|
|
|
|
|
|
|
|
virtual QString caption() const;
|
2013-12-06 13:41:23 +00:00
|
|
|
virtual QIcon icon() const override;
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual WId window() const;
|
|
|
|
virtual bool isMinimized() const;
|
|
|
|
virtual int x() const;
|
|
|
|
virtual int y() const;
|
|
|
|
virtual int width() const;
|
|
|
|
virtual int height() const;
|
2011-11-27 13:15:49 +00:00
|
|
|
virtual bool isCloseable() const;
|
2011-11-27 14:00:09 +00:00
|
|
|
virtual void close();
|
2011-12-01 12:15:11 +00:00
|
|
|
virtual bool isFirstInTabBox() const;
|
2011-01-30 14:34:42 +00:00
|
|
|
|
2015-03-05 12:59:18 +00:00
|
|
|
AbstractClient* client() const {
|
2011-01-30 14:34:42 +00:00
|
|
|
return m_client;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-03-05 12:59:18 +00:00
|
|
|
AbstractClient* m_client;
|
2011-01-30 14:34:42 +00:00
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2009-09-13 11:36:45 +00:00
|
|
|
class TabBox : public QObject
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
Q_OBJECT
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
|
|
|
~TabBox();
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2015-03-05 12:59:18 +00:00
|
|
|
AbstractClient *currentClient();
|
|
|
|
QList<AbstractClient*> currentClientList();
|
2011-01-30 14:34:42 +00:00
|
|
|
int currentDesktop();
|
|
|
|
QList< int > currentDesktopList();
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2015-03-05 12:59:18 +00:00
|
|
|
void setCurrentClient(AbstractClient *newClient);
|
2011-01-30 14:34:42 +00:00
|
|
|
void setCurrentDesktop(int newDesktop);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void setMode(TabBoxMode mode);
|
|
|
|
TabBoxMode mode() const {
|
|
|
|
return m_tabBoxMode;
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void reset(bool partial_reset = false);
|
|
|
|
void nextPrev(bool next = true);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void delayedShow();
|
|
|
|
void hide(bool abort = false);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-06-25 16:05:07 +00:00
|
|
|
/*!
|
|
|
|
Increase the reference count, preventing the default tabbox from showing.
|
|
|
|
|
|
|
|
\sa unreference(), isDisplayed()
|
|
|
|
*/
|
|
|
|
void reference() {
|
|
|
|
++m_displayRefcount;
|
|
|
|
}
|
|
|
|
/*!
|
|
|
|
Decrease the reference count. Only when the reference count is 0 will
|
|
|
|
the default tab box be shown.
|
|
|
|
*/
|
|
|
|
void unreference() {
|
|
|
|
--m_displayRefcount;
|
|
|
|
}
|
|
|
|
/*!
|
|
|
|
Returns whether the tab box is being displayed, either natively or by an
|
|
|
|
effect.
|
|
|
|
|
|
|
|
\sa reference(), unreference()
|
|
|
|
*/
|
|
|
|
bool isDisplayed() const {
|
|
|
|
return m_displayRefcount > 0;
|
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2013-07-26 06:46:31 +00:00
|
|
|
bool handleMouseEvent(xcb_button_press_event_t *e);
|
|
|
|
bool handleMouseEvent(xcb_motion_notify_event_t *e);
|
2016-03-04 13:15:27 +00:00
|
|
|
bool handleMouseEvent(QMouseEvent *event);
|
|
|
|
bool handleWheelEvent(QWheelEvent *event);
|
2011-01-30 14:34:42 +00:00
|
|
|
void grabbedKeyEvent(QKeyEvent* event);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-06-25 16:05:07 +00:00
|
|
|
bool isGrabbed() const {
|
|
|
|
return m_tabGrab || m_desktopGrab;
|
|
|
|
};
|
|
|
|
|
2013-12-10 08:34:11 +00:00
|
|
|
void initShortcuts();
|
2011-06-25 16:05:07 +00:00
|
|
|
|
|
|
|
Client* nextClientStatic(Client*) const;
|
|
|
|
Client* previousClientStatic(Client*) const;
|
|
|
|
int nextDesktopStatic(int iDesktop) const;
|
|
|
|
int previousDesktopStatic(int iDesktop) const;
|
|
|
|
void keyPress(int key);
|
2013-07-26 08:04:53 +00:00
|
|
|
void keyRelease(const xcb_key_release_event_t *ev);
|
2011-06-25 16:05:07 +00:00
|
|
|
|
2014-05-22 13:28:29 +00:00
|
|
|
bool forcedGlobalMouseGrab() const {
|
|
|
|
return m_forcedGlobalMouseGrab;
|
|
|
|
}
|
|
|
|
|
2013-04-04 07:41:18 +00:00
|
|
|
static TabBox *self();
|
|
|
|
static TabBox *create(QObject *parent);
|
|
|
|
|
2013-07-22 14:07:39 +00:00
|
|
|
public Q_SLOTS:
|
2011-01-30 14:34:42 +00:00
|
|
|
void show();
|
2014-06-02 07:12:14 +00:00
|
|
|
void close(bool abort = false);
|
2015-09-25 06:49:44 +00:00
|
|
|
void accept(bool closeTabBox = true);
|
2011-06-25 16:05:07 +00:00
|
|
|
void slotWalkThroughDesktops();
|
|
|
|
void slotWalkBackThroughDesktops();
|
|
|
|
void slotWalkThroughDesktopList();
|
|
|
|
void slotWalkBackThroughDesktopList();
|
|
|
|
void slotWalkThroughWindows();
|
|
|
|
void slotWalkBackThroughWindows();
|
|
|
|
void slotWalkThroughWindowsAlternative();
|
|
|
|
void slotWalkBackThroughWindowsAlternative();
|
2012-04-25 20:57:48 +00:00
|
|
|
void slotWalkThroughCurrentAppWindows();
|
|
|
|
void slotWalkBackThroughCurrentAppWindows();
|
|
|
|
void slotWalkThroughCurrentAppWindowsAlternative();
|
|
|
|
void slotWalkBackThroughCurrentAppWindowsAlternative();
|
2011-06-25 16:05:07 +00:00
|
|
|
|
2011-07-09 08:32:26 +00:00
|
|
|
void handlerReady();
|
|
|
|
|
2013-03-08 19:17:55 +00:00
|
|
|
bool toggle(ElectricBorder eb);
|
|
|
|
|
2013-07-22 14:07:39 +00:00
|
|
|
Q_SIGNALS:
|
2011-03-06 11:15:16 +00:00
|
|
|
void tabBoxAdded(int);
|
2014-06-02 07:12:14 +00:00
|
|
|
void tabBoxClosed();
|
2011-03-06 11:15:16 +00:00
|
|
|
void tabBoxUpdated();
|
|
|
|
void tabBoxKeyEvent(QKeyEvent*);
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
2013-04-04 07:41:18 +00:00
|
|
|
explicit TabBox(QObject *parent);
|
2011-01-30 14:34:42 +00:00
|
|
|
void setCurrentIndex(QModelIndex index, bool notifyEffects = true);
|
|
|
|
void loadConfig(const KConfigGroup& config, TabBoxConfig& tabBoxConfig);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-06-25 16:05:07 +00:00
|
|
|
bool startKDEWalkThroughWindows(TabBoxMode mode); // TabBoxWindowsMode | TabBoxWindowsAlternativeMode
|
|
|
|
bool startWalkThroughDesktops(TabBoxMode mode); // TabBoxDesktopMode | TabBoxDesktopListMode
|
|
|
|
bool startWalkThroughDesktops();
|
|
|
|
bool startWalkThroughDesktopList();
|
2013-09-06 12:57:33 +00:00
|
|
|
void navigatingThroughWindows(bool forward, const QKeySequence &shortcut, TabBoxMode mode); // TabBoxWindowsMode | TabBoxWindowsAlternativeMode
|
2011-06-25 16:05:07 +00:00
|
|
|
void KDEWalkThroughWindows(bool forward);
|
|
|
|
void CDEWalkThroughWindows(bool forward);
|
|
|
|
void walkThroughDesktops(bool forward);
|
|
|
|
void KDEOneStepThroughWindows(bool forward, TabBoxMode mode); // TabBoxWindowsMode | TabBoxWindowsAlternativeMode
|
|
|
|
void oneStepThroughDesktops(bool forward, TabBoxMode mode); // TabBoxDesktopMode | TabBoxDesktopListMode
|
|
|
|
void oneStepThroughDesktops(bool forward);
|
|
|
|
void oneStepThroughDesktopList(bool forward);
|
|
|
|
bool establishTabBoxGrab();
|
|
|
|
void removeTabBoxGrab();
|
2013-09-06 12:57:33 +00:00
|
|
|
template <typename Slot>
|
2013-12-10 08:34:11 +00:00
|
|
|
void key(const char *actionName, Slot slot, const QKeySequence &shortcut = QKeySequence());
|
2011-06-25 16:05:07 +00:00
|
|
|
|
2015-03-12 11:26:01 +00:00
|
|
|
void shadeActivate(AbstractClient *c);
|
2015-02-06 22:10:59 +00:00
|
|
|
|
2011-07-13 10:10:52 +00:00
|
|
|
private Q_SLOTS:
|
|
|
|
void reconfigure();
|
2013-09-06 12:57:33 +00:00
|
|
|
void globalShortcutChanged(QAction *action, const QKeySequence &seq);
|
2013-07-10 11:20:43 +00:00
|
|
|
void modifiersChanged(Qt::KeyboardModifiers mods);
|
2011-07-13 10:10:52 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
|
|
|
TabBoxMode m_tabBoxMode;
|
|
|
|
TabBoxHandlerImpl* m_tabBox;
|
|
|
|
bool m_delayShow;
|
|
|
|
int m_delayShowTime;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-06-25 16:05:07 +00:00
|
|
|
QTimer m_delayedShowTimer;
|
|
|
|
int m_displayRefcount;
|
2009-03-03 11:45:39 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
TabBoxConfig m_defaultConfig;
|
|
|
|
TabBoxConfig m_alternativeConfig;
|
2012-04-25 20:57:48 +00:00
|
|
|
TabBoxConfig m_defaultCurrentApplicationConfig;
|
|
|
|
TabBoxConfig m_alternativeCurrentApplicationConfig;
|
2011-01-30 14:34:42 +00:00
|
|
|
TabBoxConfig m_desktopConfig;
|
|
|
|
TabBoxConfig m_desktopListConfig;
|
|
|
|
// false if an effect has referenced the tabbox
|
|
|
|
// true if tabbox is active (independent on showTabbox setting)
|
|
|
|
bool m_isShown;
|
2011-06-25 16:05:07 +00:00
|
|
|
bool m_desktopGrab;
|
|
|
|
bool m_tabGrab;
|
2011-08-21 08:44:09 +00:00
|
|
|
// true if tabbox is in modal mode which does not require holding a modifier
|
|
|
|
bool m_noModifierGrab;
|
2013-09-06 12:57:33 +00:00
|
|
|
QKeySequence m_cutWalkThroughDesktops, m_cutWalkThroughDesktopsReverse;
|
|
|
|
QKeySequence m_cutWalkThroughDesktopList, m_cutWalkThroughDesktopListReverse;
|
|
|
|
QKeySequence m_cutWalkThroughWindows, m_cutWalkThroughWindowsReverse;
|
|
|
|
QKeySequence m_cutWalkThroughWindowsAlternative, m_cutWalkThroughWindowsAlternativeReverse;
|
|
|
|
QKeySequence m_cutWalkThroughCurrentAppWindows, m_cutWalkThroughCurrentAppWindowsReverse;
|
|
|
|
QKeySequence m_cutWalkThroughCurrentAppWindowsAlternative, m_cutWalkThroughCurrentAppWindowsAlternativeReverse;
|
2011-06-25 16:05:07 +00:00
|
|
|
bool m_forcedGlobalMouseGrab;
|
2011-07-09 08:32:26 +00:00
|
|
|
bool m_ready; // indicates whether the config is completely loaded
|
2013-03-08 19:17:55 +00:00
|
|
|
QList<ElectricBorder> m_borderActivate, m_borderAlternativeActivate;
|
2013-04-04 07:41:18 +00:00
|
|
|
|
|
|
|
static TabBox *s_self;
|
2011-01-30 14:34:42 +00:00
|
|
|
};
|
2013-04-04 07:41:18 +00:00
|
|
|
|
|
|
|
inline
|
|
|
|
TabBox *TabBox::self()
|
|
|
|
{
|
|
|
|
return s_self;
|
|
|
|
}
|
|
|
|
|
2009-09-13 11:36:45 +00:00
|
|
|
} // namespace TabBox
|
2007-04-29 17:35:43 +00:00
|
|
|
} // namespace
|
|
|
|
#endif
|