2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
|
|
SPDX-FileCopyrightText: 2003 Lubos Lunak <l.lunak@kde.org>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#ifndef KWIN_GROUP_H
|
|
|
|
#define KWIN_GROUP_H
|
|
|
|
|
2022-01-18 08:35:52 +00:00
|
|
|
#include "utils/common.h"
|
2007-04-29 17:35:43 +00:00
|
|
|
#include <netwm.h>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class EffectWindowGroupImpl;
|
2022-04-22 17:54:31 +00:00
|
|
|
class X11Window;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
class Group
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-09-06 14:30:26 +00:00
|
|
|
Group(xcb_window_t leader);
|
2011-01-30 14:34:42 +00:00
|
|
|
~Group();
|
2019-09-06 14:30:26 +00:00
|
|
|
xcb_window_t leader() const;
|
2022-04-22 17:54:31 +00:00
|
|
|
const X11Window *leaderClient() const;
|
|
|
|
X11Window *leaderClient();
|
|
|
|
const QList<X11Window *> &members() const;
|
2013-12-06 13:41:23 +00:00
|
|
|
QIcon icon() const;
|
2022-04-22 17:54:31 +00:00
|
|
|
void addMember(X11Window *member);
|
|
|
|
void removeMember(X11Window *member);
|
|
|
|
void gotLeader(X11Window *leader);
|
2011-01-30 14:34:42 +00:00
|
|
|
void lostLeader();
|
2014-06-01 15:57:51 +00:00
|
|
|
void updateUserTime(xcb_timestamp_t time);
|
|
|
|
xcb_timestamp_t userTime() const;
|
2011-01-30 14:34:42 +00:00
|
|
|
void ref();
|
|
|
|
void deref();
|
2022-03-23 10:13:38 +00:00
|
|
|
EffectWindowGroupImpl *effectGroup();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
|
|
|
void startupIdChanged();
|
2022-04-22 17:54:31 +00:00
|
|
|
QList<X11Window *> _members;
|
|
|
|
X11Window *leader_client;
|
2019-09-06 14:30:26 +00:00
|
|
|
xcb_window_t leader_wid;
|
2022-03-23 10:13:38 +00:00
|
|
|
NETWinInfo *leader_info;
|
2014-06-01 15:57:51 +00:00
|
|
|
xcb_timestamp_t user_time;
|
2011-01-30 14:34:42 +00:00
|
|
|
int refcount;
|
2022-03-23 10:13:38 +00:00
|
|
|
EffectWindowGroupImpl *effect_group;
|
2011-01-30 14:34:42 +00:00
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2019-09-06 14:30:26 +00:00
|
|
|
inline xcb_window_t Group::leader() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
return leader_wid;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2022-04-22 17:54:31 +00:00
|
|
|
inline const X11Window *Group::leaderClient() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
return leader_client;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2022-04-22 17:54:31 +00:00
|
|
|
inline X11Window *Group::leaderClient()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
return leader_client;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2022-04-22 17:54:31 +00:00
|
|
|
inline const QList<X11Window *> &Group::members() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
return _members;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2014-06-01 15:57:51 +00:00
|
|
|
inline xcb_timestamp_t Group::userTime() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
return user_time;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2022-03-23 10:13:38 +00:00
|
|
|
inline EffectWindowGroupImpl *Group::effectGroup()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
return effect_group;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|