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>
|
|
|
|
|
2013-08-20 07:48:14 +00:00
|
|
|
#include <xcb/shape.h>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2013-05-08 11:39:06 +00:00
|
|
|
Unmanaged::Unmanaged()
|
|
|
|
: Toplevel()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2013-06-28 12:23:22 +00:00
|
|
|
ready_for_painting = false;
|
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
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool Unmanaged::track(Window w)
|
|
|
|
{
|
2014-04-25 10:09:11 +00:00
|
|
|
GRAB_SERVER_DURING_CONTEXT
|
|
|
|
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);
|
|
|
|
geom = 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();
|
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
|
|
|
{
|
2012-04-22 07:27:53 +00:00
|
|
|
Deleted* del = NULL;
|
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
|
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-08-12 09:31:04 +00:00
|
|
|
void Unmanaged::addDamage(const QRegion &damage)
|
|
|
|
{
|
|
|
|
repaints_region += damage;
|
|
|
|
Toplevel::addDamage(damage);
|
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
} // namespace
|
|
|
|
|