12a4923959
Instead of passing the macro based Predicate to findUnmanaged it now expects a function which can be passed to std::find_if. Existing code like: xcb_window_t window; // our test window Unmanaged *u = findUnmanaged(WindowMatchPredicated(window)); becomes: Unmanaged *u = findUnmanaged([window](const Unmanaged *u) { return u->window() == window; }); In addition an overload is added which takes the window id to cover the common case to search for an Unmanaged by its ID. The above example becomes: Unmanaged *u = findUnmanaged(window); The advantage is that it is way more flexible and has the logic what to check for directly with the code and not hidden in the macro definition.
209 lines
6.2 KiB
C++
209 lines
6.2 KiB
C++
/********************************************************************
|
|
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>
|
|
|
|
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/>.
|
|
*********************************************************************/
|
|
|
|
#ifndef KWIN_UTILS_H
|
|
#define KWIN_UTILS_H
|
|
|
|
// cmake stuff
|
|
#include <config-kwin.h>
|
|
#include <kwinconfig.h>
|
|
// kwin
|
|
#include <kwinglobals.h>
|
|
// KDE
|
|
#include <netwm_def.h>
|
|
// Qt
|
|
#include <QList>
|
|
#include <QPoint>
|
|
#include <QRect>
|
|
#include <QScopedPointer>
|
|
// system
|
|
#include <limits.h>
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
// window types that are supported as normal windows (i.e. KWin actually manages them)
|
|
const NET::WindowTypes SUPPORTED_MANAGED_WINDOW_TYPES_MASK = NET::NormalMask | NET::DesktopMask | NET::DockMask
|
|
| NET::ToolbarMask | NET::MenuMask | NET::DialogMask /*| NET::OverrideMask*/ | NET::TopMenuMask
|
|
| NET::UtilityMask | NET::SplashMask | NET::NotificationMask;
|
|
// window types that are supported as unmanaged (mainly for compositing)
|
|
const NET::WindowTypes SUPPORTED_UNMANAGED_WINDOW_TYPES_MASK = NET::NormalMask | NET::DesktopMask | NET::DockMask
|
|
| NET::ToolbarMask | NET::MenuMask | NET::DialogMask /*| NET::OverrideMask*/ | NET::TopMenuMask
|
|
| NET::UtilityMask | NET::SplashMask | NET::DropdownMenuMask | NET::PopupMenuMask
|
|
| NET::TooltipMask | NET::NotificationMask | NET::ComboBoxMask | NET::DNDIconMask;
|
|
|
|
const QPoint invalidPoint(INT_MIN, INT_MIN);
|
|
|
|
class Toplevel;
|
|
class Client;
|
|
class Unmanaged;
|
|
class Deleted;
|
|
class Group;
|
|
class Options;
|
|
|
|
typedef QList< Toplevel* > ToplevelList;
|
|
typedef QList< Client* > ClientList;
|
|
typedef QList< const Client* > ConstClientList;
|
|
typedef QList< Unmanaged* > UnmanagedList;
|
|
typedef QList< Deleted* > DeletedList;
|
|
|
|
typedef QList< Group* > GroupList;
|
|
|
|
extern Options* options;
|
|
|
|
enum Layer {
|
|
UnknownLayer = -1,
|
|
FirstLayer = 0,
|
|
DesktopLayer = FirstLayer,
|
|
BelowLayer,
|
|
NormalLayer,
|
|
DockLayer,
|
|
AboveLayer,
|
|
NotificationLayer, // layer for windows of type notification
|
|
ActiveLayer, // active fullscreen, or active dialog
|
|
UnmanagedLayer, // layer for override redirect windows.
|
|
NumLayers // number of layers, must be last
|
|
};
|
|
|
|
// yes, I know this is not 100% like standard operator++
|
|
inline void operator++(Layer& lay)
|
|
{
|
|
lay = static_cast< Layer >(lay + 1);
|
|
}
|
|
|
|
enum StrutArea {
|
|
StrutAreaInvalid = 0, // Null
|
|
StrutAreaTop = 1 << 0,
|
|
StrutAreaRight = 1 << 1,
|
|
StrutAreaBottom = 1 << 2,
|
|
StrutAreaLeft = 1 << 3,
|
|
StrutAreaAll = StrutAreaTop | StrutAreaRight | StrutAreaBottom | StrutAreaLeft
|
|
};
|
|
Q_DECLARE_FLAGS(StrutAreas, StrutArea)
|
|
|
|
class StrutRect : public QRect
|
|
{
|
|
public:
|
|
explicit StrutRect(QRect rect = QRect(), StrutArea area = StrutAreaInvalid);
|
|
StrutRect(const StrutRect& other);
|
|
inline StrutArea area() const {
|
|
return m_area;
|
|
};
|
|
private:
|
|
StrutArea m_area;
|
|
};
|
|
typedef QVector<StrutRect> StrutRects;
|
|
|
|
|
|
enum ShadeMode {
|
|
ShadeNone, // not shaded
|
|
ShadeNormal, // normally shaded - isShade() is true only here
|
|
ShadeHover, // "shaded", but visible due to hover unshade
|
|
ShadeActivated // "shaded", but visible due to alt+tab to the window
|
|
};
|
|
|
|
template <typename T>
|
|
class ScopedCPointer : public QScopedPointer<T, QScopedPointerPodDeleter>
|
|
{
|
|
public:
|
|
ScopedCPointer(T *p = 0) : QScopedPointer<T, QScopedPointerPodDeleter>(p) {}
|
|
};
|
|
|
|
QByteArray getStringProperty(xcb_window_t w, xcb_atom_t prop, char separator = 0);
|
|
void updateXTime();
|
|
void grabXServer();
|
|
void ungrabXServer();
|
|
bool grabbedXServer();
|
|
bool grabXKeyboard(xcb_window_t w = rootWindow());
|
|
void ungrabXKeyboard();
|
|
|
|
/**
|
|
* Small helper class which performs @link grabXServer in the ctor and
|
|
* @link ungrabXServer in the dtor. Use this class to ensure that grab and
|
|
* ungrab are matched.
|
|
**/
|
|
class XServerGrabber
|
|
{
|
|
public:
|
|
XServerGrabber() {
|
|
grabXServer();
|
|
}
|
|
~XServerGrabber() {
|
|
ungrabXServer();
|
|
}
|
|
};
|
|
|
|
// the docs say it's UrgencyHint, but it's often #defined as XUrgencyHint
|
|
#ifndef UrgencyHint
|
|
#define UrgencyHint XUrgencyHint
|
|
#endif
|
|
|
|
// for STL-like algo's
|
|
#define KWIN_CHECK_PREDICATE( name, cls, check ) \
|
|
struct name \
|
|
{ \
|
|
inline bool operator()( const cls* cl ) { return check; } \
|
|
}
|
|
|
|
#define KWIN_COMPARE_PREDICATE( name, cls, type, check ) \
|
|
struct name \
|
|
{ \
|
|
typedef type type_helper; /* in order to work also with type being 'const Client*' etc. */ \
|
|
inline name( const type_helper& compare_value ) : value( compare_value ) {} \
|
|
inline bool operator()( const cls* cl ) { return check; } \
|
|
const type_helper& value; \
|
|
}
|
|
|
|
#define KWIN_PROCEDURE( name, cls, action ) \
|
|
struct name \
|
|
{ \
|
|
inline void operator()( cls* cl ) { action; } \
|
|
}
|
|
|
|
KWIN_CHECK_PREDICATE(TruePredicate, Client, cl == cl /*true, avoid warning about 'cl' */);
|
|
|
|
template< typename T >
|
|
Client* findClientInList(const ClientList& list, T predicate)
|
|
{
|
|
for (ClientList::ConstIterator it = list.begin(); it != list.end(); ++it) {
|
|
if (predicate(const_cast< const Client* >(*it)))
|
|
return *it;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
QPoint cursorPos();
|
|
|
|
// converting between X11 mouse/keyboard state mask and Qt button/keyboard states
|
|
int qtToX11Button(Qt::MouseButton button);
|
|
Qt::MouseButton x11ToQtMouseButton(int button);
|
|
int qtToX11State(Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers);
|
|
Qt::MouseButtons x11ToQtMouseButtons(int state);
|
|
Qt::KeyboardModifiers x11ToQtKeyboardModifiers(int state);
|
|
|
|
void checkNonExistentClients();
|
|
|
|
} // namespace
|
|
|
|
// Must be outside namespace
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(KWin::StrutAreas)
|
|
|
|
#endif
|