kwin/deleted.cpp

204 lines
5.0 KiB
C++
Raw Normal View History

/********************************************************************
KWin - the KDE window manager
This file is part of the KDE project.
Copyright (C) 2006 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/>.
*********************************************************************/
#include "deleted.h"
#include "workspace.h"
#include "client.h"
#include "netinfo.h"
#include "shadow.h"
#include "decorations/decoratedclient.h"
#include "decorations/decorationrenderer.h"
#include <QDebug>
namespace KWin
{
Deleted::Deleted()
: Toplevel()
2011-01-30 17:34:42 +03:00
, delete_refcount(1)
, m_frame(XCB_WINDOW_NONE)
2011-01-30 17:34:42 +03:00
, no_border(true)
, m_layer(UnknownLayer)
, m_minimized(false)
, m_modal(false)
, m_wasClient(false)
, m_decorationRenderer(nullptr)
2011-01-30 17:34:42 +03:00
{
}
Deleted::~Deleted()
2011-01-30 17:34:42 +03:00
{
if (delete_refcount != 0)
qCCritical(KWIN_CORE) << "Deleted client has non-zero reference count (" << delete_refcount << ")";
2011-01-30 17:34:42 +03:00
assert(delete_refcount == 0);
if (workspace()) {
workspace()->removeDeleted(this);
}
deleteEffectWindow();
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
Deleted* Deleted::create(Toplevel* c)
{
Deleted* d = new Deleted();
2011-01-30 17:34:42 +03:00
d->copyToDeleted(c);
workspace()->addDeleted(d, c);
return d;
2011-01-30 17:34:42 +03:00
}
// to be used only from Workspace::finishCompositing()
void Deleted::discard()
2011-01-30 17:34:42 +03:00
{
delete_refcount = 0;
delete this;
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Deleted::copyToDeleted(Toplevel* c)
{
assert(dynamic_cast< Deleted* >(c) == NULL);
Toplevel::copyToDeleted(c);
desk = c->desktop();
activityList = c->activities();
2011-01-30 17:34:42 +03:00
contentsRect = QRect(c->clientPos(), c->clientSize());
m_contentPos = c->clientContentPos();
transparent_rect = c->transparentRect();
m_layer = c->layer();
m_frame = c->frameId();
m_opacity = c->opacity();
m_type = c->windowType(true);
m_windowRole = c->windowRole();
2011-01-30 17:34:42 +03:00
if (WinInfo* cinfo = dynamic_cast< WinInfo* >(info))
cinfo->disable();
if (AbstractClient *client = dynamic_cast<AbstractClient*>(c)) {
no_border = client->noBorder();
2011-01-30 17:34:42 +03:00
if (!no_border) {
client->layoutDecorationRects(decoration_left,
decoration_top,
decoration_right,
decoration_bottom);
if (client->isDecorated()) {
if (Decoration::Renderer *renderer = client->decoratedClient()->renderer()) {
m_decorationRenderer = renderer;
m_decorationRenderer->reparent(this);
}
}
}
m_wasClient = true;
m_minimized = client->isMinimized();
m_modal = client->isModal();
m_mainClients = client->mainClients();
foreach (AbstractClient *c, m_mainClients) {
connect(c, &AbstractClient::windowClosed, this, &Deleted::mainClientClosed);
}
}
2011-01-30 17:34:42 +03:00
}
void Deleted::unrefWindow()
2011-01-30 17:34:42 +03:00
{
if (--delete_refcount > 0)
return;
// needs to be delayed
// a) when calling from effects, otherwise it'd be rather complicated to handle the case of the
// window going away during a painting pass
// b) to prevent dangeling pointers in the stacking order, see bug #317765
deleteLater();
2011-01-30 17:34:42 +03:00
}
int Deleted::desktop() const
2011-01-30 17:34:42 +03:00
{
return desk;
2011-01-30 17:34:42 +03:00
}
QStringList Deleted::activities() const
2011-01-30 17:34:42 +03:00
{
return activityList;
2011-01-30 17:34:42 +03:00
}
QPoint Deleted::clientPos() const
2011-01-30 17:34:42 +03:00
{
return contentsRect.topLeft();
2011-01-30 17:34:42 +03:00
}
QSize Deleted::clientSize() const
2011-01-30 17:34:42 +03:00
{
return contentsRect.size();
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Deleted::debug(QDebug& stream) const
{
stream << "\'ID:" << window() << "\' (deleted)";
2011-01-30 17:34:42 +03:00
}
void Deleted::layoutDecorationRects(QRect& left, QRect& top, QRect& right, QRect& bottom) const
2011-01-30 17:34:42 +03:00
{
left = decoration_left;
top = decoration_top;
right = decoration_right;
bottom = decoration_bottom;
2011-01-30 17:34:42 +03:00
}
QRect Deleted::decorationRect() const
2011-01-30 17:34:42 +03:00
{
return rect();
2011-01-30 17:34:42 +03:00
}
QRect Deleted::transparentRect() const
2011-01-30 17:34:42 +03:00
{
return transparent_rect;
2011-01-30 17:34:42 +03:00
}
bool Deleted::isDeleted() const
{
return true;
}
NET::WindowType Deleted::windowType(bool direct, int supportedTypes) const
{
Q_UNUSED(direct)
Q_UNUSED(supportedTypes)
return m_type;
}
void Deleted::mainClientClosed(Toplevel *client)
{
if (AbstractClient *c = dynamic_cast<AbstractClient*>(client))
m_mainClients.removeAll(c);
}
xcb_window_t Deleted::frameId() const
{
return m_frame;
}
double Deleted::opacity() const
{
return m_opacity;
}
QByteArray Deleted::windowRole() const
{
return m_windowRole;
}
} // namespace
#include "deleted.moc"