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) 2006 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
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
|
|
|
|
|
|
|
#include "unmanaged.h"
|
|
|
|
|
|
|
|
#include "workspace.h"
|
|
|
|
#include "effects.h"
|
|
|
|
#include "deleted.h"
|
2014-04-25 10:09:11 +00:00
|
|
|
#include "utils.h"
|
2012-12-21 14:11:31 +00:00
|
|
|
#include "xcbutils.h"
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2013-06-28 12:23:22 +00:00
|
|
|
#include <QTimer>
|
2013-04-26 09:27:30 +00:00
|
|
|
#include <QDebug>
|
2019-03-19 14:01:29 +00:00
|
|
|
#include <QWindow>
|
2013-04-26 09:27:30 +00:00
|
|
|
|
2013-08-20 07:48:14 +00:00
|
|
|
#include <xcb/shape.h>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2019-09-19 19:12:44 +00:00
|
|
|
// 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 | NET::OnScreenDisplayMask
|
|
|
|
| NET::CriticalNotificationMask;
|
|
|
|
|
2013-05-08 11:39:06 +00:00
|
|
|
Unmanaged::Unmanaged()
|
|
|
|
: Toplevel()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-08-17 21:51:55 +00:00
|
|
|
connect(this, SIGNAL(geometryShapeChanged(KWin::Toplevel*,QRect)), SIGNAL(geometryChanged()));
|
2013-06-28 12:23:22 +00:00
|
|
|
QTimer::singleShot(50, this, SLOT(setReadyForPainting()));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
Unmanaged::~Unmanaged()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2019-09-06 14:30:26 +00:00
|
|
|
bool Unmanaged::track(xcb_window_t w)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2019-09-19 19:19:02 +00:00
|
|
|
XServerGrabber xserverGrabber;
|
2014-04-25 10:09:11 +00:00
|
|
|
Xcb::WindowAttributes attr(w);
|
|
|
|
Xcb::WindowGeometry geo(w);
|
|
|
|
if (attr.isNull() || attr->map_state != XCB_MAP_STATE_VIEWABLE) {
|
2007-04-29 17:35:43 +00:00
|
|
|
return false;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2014-04-25 10:09:11 +00:00
|
|
|
if (attr->_class == XCB_WINDOW_CLASS_INPUT_ONLY) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (geo.isNull()) {
|
2007-04-29 17:35:43 +00:00
|
|
|
return false;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2013-09-10 06:13:33 +00:00
|
|
|
setWindowHandles(w); // the window is also the frame
|
2014-04-25 10:09:11 +00:00
|
|
|
Xcb::selectInput(w, attr->your_event_mask | XCB_EVENT_MASK_STRUCTURE_NOTIFY | XCB_EVENT_MASK_PROPERTY_CHANGE);
|
2019-12-04 13:18:34 +00:00
|
|
|
m_frameGeometry = geo.rect();
|
2013-03-26 06:45:08 +00:00
|
|
|
checkScreen();
|
2014-04-25 10:09:11 +00:00
|
|
|
m_visual = attr->visual;
|
|
|
|
bit_depth = geo->depth;
|
2014-03-04 09:48:23 +00:00
|
|
|
info = new NETWinInfo(connection(), w, rootWindow(),
|
2014-04-11 06:06:26 +00:00
|
|
|
NET::WMWindowType | NET::WMPid,
|
|
|
|
NET::WM2Opacity |
|
|
|
|
NET::WM2WindowRole |
|
2015-01-22 14:46:12 +00:00
|
|
|
NET::WM2WindowClass |
|
|
|
|
NET::WM2OpaqueRegion);
|
2007-11-13 19:25:44 +00:00
|
|
|
getResourceClass();
|
|
|
|
getWmClientLeader();
|
|
|
|
getWmClientMachine();
|
2012-12-21 14:11:31 +00:00
|
|
|
if (Xcb::Extensions::self()->isShapeAvailable())
|
2013-08-20 07:48:14 +00:00
|
|
|
xcb_shape_select_input(connection(), w, true);
|
2011-01-30 14:34:42 +00:00
|
|
|
detectShape(w);
|
2011-10-22 09:02:49 +00:00
|
|
|
getWmOpaqueRegion();
|
2014-01-24 11:34:16 +00:00
|
|
|
getSkipCloseAnimation();
|
2007-04-29 17:35:43 +00:00
|
|
|
setupCompositing();
|
2019-03-19 14:01:29 +00:00
|
|
|
if (QWindow *internalWindow = findInternalWindow()) {
|
|
|
|
m_outline = internalWindow->property("__kwin_outline").toBool();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
if (effects)
|
2007-04-29 17:35:43 +00:00
|
|
|
static_cast<EffectsHandlerImpl*>(effects)->checkInputWindowStacking();
|
|
|
|
return true;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2014-04-07 14:23:17 +00:00
|
|
|
void Unmanaged::release(ReleaseReason releaseReason)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
Use nullptr everywhere
Summary:
Because KWin is a very old project, we use three kinds of null pointer
literals: 0, NULL, and nullptr. Since C++11, it's recommended to use
nullptr keyword.
This change converts all usages of 0 and NULL literal to nullptr. Even
though it breaks git history, we need to do it in order to have consistent
code as well to ease code reviews (it's very tempting for some people to
add unrelated changes to their patches, e.g. converting NULL to nullptr).
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson, romangg
Reviewed By: #kwin, davidedmundson, romangg
Subscribers: romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D23618
2019-09-19 14:46:54 +00:00
|
|
|
Deleted* del = nullptr;
|
2014-04-07 14:23:17 +00:00
|
|
|
if (releaseReason != ReleaseReason::KWinShutsDown) {
|
2012-04-22 07:27:53 +00:00
|
|
|
del = Deleted::create(this);
|
|
|
|
}
|
2011-06-21 11:52:25 +00:00
|
|
|
emit windowClosed(this, del);
|
2014-04-07 14:23:17 +00:00
|
|
|
finishCompositing(releaseReason);
|
|
|
|
if (!QWidget::find(window()) && releaseReason != ReleaseReason::Destroyed) { // don't affect our own windows
|
2012-12-21 14:11:31 +00:00
|
|
|
if (Xcb::Extensions::self()->isShapeAvailable())
|
2013-08-20 07:48:14 +00:00
|
|
|
xcb_shape_select_input(connection(), window(), false);
|
2013-08-19 08:52:22 +00:00
|
|
|
Xcb::selectInput(window(), XCB_EVENT_MASK_NO_EVENT);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2014-04-07 14:23:17 +00:00
|
|
|
if (releaseReason != ReleaseReason::KWinShutsDown) {
|
2013-04-26 07:47:45 +00:00
|
|
|
workspace()->removeUnmanaged(this);
|
2012-04-22 07:27:53 +00:00
|
|
|
addWorkspaceRepaint(del->visibleRect());
|
|
|
|
disownDataPassedToDeleted();
|
|
|
|
del->unrefWindow();
|
|
|
|
}
|
2013-04-26 07:47:45 +00:00
|
|
|
deleteUnmanaged(this);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2013-04-26 07:47:45 +00:00
|
|
|
void Unmanaged::deleteUnmanaged(Unmanaged* c)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
delete c;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2019-10-24 10:00:16 +00:00
|
|
|
bool Unmanaged::hasScheduledRelease() const
|
|
|
|
{
|
|
|
|
return m_scheduledRelease;
|
|
|
|
}
|
|
|
|
|
2019-10-03 19:43:28 +00:00
|
|
|
QRect Unmanaged::bufferGeometry() const
|
|
|
|
{
|
2019-12-04 13:18:34 +00:00
|
|
|
return m_frameGeometry;
|
2019-10-03 19:43:28 +00:00
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
int Unmanaged::desktop() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
return NET::OnAllDesktops; // TODO for some window types should be the current desktop?
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-05-11 20:30:20 +00:00
|
|
|
QStringList Unmanaged::activities() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-05-11 20:30:20 +00:00
|
|
|
return QStringList();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-05-11 20:30:20 +00:00
|
|
|
|
2018-11-07 16:22:41 +00:00
|
|
|
QVector<VirtualDesktop *> Unmanaged::desktops() const
|
[wayland] Use the new plasma virtual desktop protocol
Summary:
implement virtual desktop support for Wayland.
use the new virtual desktop protocol from D12820
The VirtualDesktopManager class needed some big change in order
to accomodate it, which is where most changes are.
Other than that, it's mostly connections to wire up
VirtualDesktopsManager and VirtualDesktopsManagement(the wayland protocol impl)
Depends on D12820
Other notable detail, is the client visibility updated to reflect the presence
of the client in the plasmavirtualdesktop.
(and the unSetDesktop concept)
Test Plan: used a bit a plasma session together with D12820, D13748 and D13746
Reviewers: #plasma, #kwin, graesslin, davidedmundson
Reviewed By: #plasma, #kwin, davidedmundson
Subscribers: hein, zzag, davidedmundson, kwin
Tags: #kwin
Maniphest Tasks: T4457
Differential Revision: https://phabricator.kde.org/D13887
2018-10-29 22:29:15 +00:00
|
|
|
{
|
2018-11-07 16:22:41 +00:00
|
|
|
return QVector<VirtualDesktop *>();
|
[wayland] Use the new plasma virtual desktop protocol
Summary:
implement virtual desktop support for Wayland.
use the new virtual desktop protocol from D12820
The VirtualDesktopManager class needed some big change in order
to accomodate it, which is where most changes are.
Other than that, it's mostly connections to wire up
VirtualDesktopsManager and VirtualDesktopsManagement(the wayland protocol impl)
Depends on D12820
Other notable detail, is the client visibility updated to reflect the presence
of the client in the plasmavirtualdesktop.
(and the unSetDesktop concept)
Test Plan: used a bit a plasma session together with D12820, D13748 and D13746
Reviewers: #plasma, #kwin, graesslin, davidedmundson
Reviewed By: #plasma, #kwin, davidedmundson
Subscribers: hein, zzag, davidedmundson, kwin
Tags: #kwin
Maniphest Tasks: T4457
Differential Revision: https://phabricator.kde.org/D13887
2018-10-29 22:29:15 +00:00
|
|
|
}
|
|
|
|
|
2007-07-18 15:01:59 +00:00
|
|
|
QPoint Unmanaged::clientPos() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
return QPoint(0, 0); // unmanaged windows don't have decorations
|
|
|
|
}
|
2007-07-18 15:01:59 +00:00
|
|
|
|
|
|
|
QSize Unmanaged::clientSize() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-07-18 15:01:59 +00:00
|
|
|
return size();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-07-18 15:01:59 +00:00
|
|
|
|
2009-11-25 23:32:35 +00:00
|
|
|
QRect Unmanaged::transparentRect() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2009-11-25 23:32:35 +00:00
|
|
|
return QRect(clientPos(), clientSize());
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-11-25 23:32:35 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void Unmanaged::debug(QDebug& stream) const
|
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
stream << "\'ID:" << window() << "\'";
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2012-09-06 07:09:31 +00:00
|
|
|
NET::WindowType Unmanaged::windowType(bool direct, int supportedTypes) const
|
|
|
|
{
|
|
|
|
// for unmanaged windows the direct does not make any difference
|
|
|
|
// as there are no rules to check and no hacks to apply
|
|
|
|
Q_UNUSED(direct)
|
|
|
|
if (supportedTypes == 0) {
|
|
|
|
supportedTypes = SUPPORTED_UNMANAGED_WINDOW_TYPES_MASK;
|
|
|
|
}
|
2014-02-03 08:37:08 +00:00
|
|
|
return info->windowType(NET::WindowTypes(supportedTypes));
|
2012-09-06 07:09:31 +00:00
|
|
|
}
|
|
|
|
|
2019-03-19 14:01:29 +00:00
|
|
|
bool Unmanaged::isOutline() const
|
|
|
|
{
|
|
|
|
return m_outline;
|
|
|
|
}
|
|
|
|
|
2016-08-12 09:31:04 +00:00
|
|
|
void Unmanaged::addDamage(const QRegion &damage)
|
|
|
|
{
|
|
|
|
repaints_region += damage;
|
|
|
|
Toplevel::addDamage(damage);
|
|
|
|
}
|
|
|
|
|
2019-03-19 14:01:29 +00:00
|
|
|
QWindow *Unmanaged::findInternalWindow() const
|
|
|
|
{
|
|
|
|
const QWindowList windows = kwinApp()->topLevelWindows();
|
|
|
|
for (QWindow *w : windows) {
|
|
|
|
if (w->winId() == window()) {
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2019-04-15 23:34:27 +00:00
|
|
|
bool Unmanaged::setupCompositing()
|
|
|
|
{
|
|
|
|
if (!Toplevel::setupCompositing()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// With unmanaged windows there is a race condition between the client painting the window
|
|
|
|
// and us setting up damage tracking. If the client wins we won't get a damage event even
|
|
|
|
// though the window has been painted. To avoid this we mark the whole window as damaged
|
|
|
|
// and schedule a repaint immediately after creating the damage object.
|
|
|
|
addDamageFull();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
} // namespace
|
|
|
|
|