kwin/toplevel.cpp

467 lines
13 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 "toplevel.h"
#include <kxerrorhandler.h>
#include "atoms.h"
#include "client.h"
#include "effects.h"
#include "shadow.h"
namespace KWin
{
2011-01-30 17:34:42 +03:00
Toplevel::Toplevel(Workspace* ws)
: vis(NULL)
, info(NULL)
, ready_for_painting(true)
, client(None)
, frame(None)
, wspace(ws)
, window_pix(None)
, damage_handle(None)
, is_shape(false)
, effect_window(NULL)
, wmClientLeaderWin(0)
, unredirect(false)
, unredirectSuspend(false)
{
}
Toplevel::~Toplevel()
2011-01-30 17:34:42 +03:00
{
assert(damage_handle == None);
discardWindowPixmap();
delete info;
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
QDebug& operator<<(QDebug& stream, const Toplevel* cl)
{
if (cl == NULL)
return stream << "\'NULL\'";
2011-01-30 17:34:42 +03:00
cl->debug(stream);
return stream;
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
QDebug& operator<<(QDebug& stream, const ToplevelList& list)
{
stream << "LIST:(";
bool first = true;
2011-01-30 17:34:42 +03:00
for (ToplevelList::ConstIterator it = list.begin();
it != list.end();
++it) {
if (!first)
stream << ":";
first = false;
stream << *it;
2011-01-30 17:34:42 +03:00
}
stream << ")";
return stream;
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
QDebug& operator<<(QDebug& stream, const ConstToplevelList& list)
{
stream << "LIST:(";
bool first = true;
2011-01-30 17:34:42 +03:00
for (ConstToplevelList::ConstIterator it = list.begin();
it != list.end();
++it) {
if (!first)
stream << ":";
first = false;
stream << *it;
2011-01-30 17:34:42 +03:00
}
stream << ")";
return stream;
2011-01-30 17:34:42 +03:00
}
QRect Toplevel::decorationRect() const
{
QRect r(rect());
if (hasShadow())
r |= shadow()->shadowRegion().boundingRect();
return r;
}
2011-01-30 17:34:42 +03:00
void Toplevel::detectShape(Window id)
{
const bool wasShape = is_shape;
2011-01-30 17:34:42 +03:00
is_shape = Extensions::hasShape(id);
if (wasShape != is_shape) {
emit shapedChanged();
}
2011-01-30 17:34:42 +03:00
}
// used only by Deleted::copy()
2011-01-30 17:34:42 +03:00
void Toplevel::copyToDeleted(Toplevel* c)
{
geom = c->geom;
vis = c->vis;
bit_depth = c->bit_depth;
info = c->info;
client = c->client;
frame = c->frame;
wspace = c->wspace;
window_pix = c->window_pix;
ready_for_painting = c->ready_for_painting;
damage_handle = None;
damage_region = c->damage_region;
repaints_region = c->repaints_region;
is_shape = c->is_shape;
effect_window = c->effect_window;
2011-01-30 17:34:42 +03:00
if (effect_window != NULL)
effect_window->setWindow(this);
resource_name = c->resourceName();
resource_class = c->resourceClass();
2011-01-30 17:34:42 +03:00
client_machine = c->wmClientMachine(false);
wmClientLeaderWin = c->wmClientLeader();
window_role = c->windowRole();
opaque_region = c->opaqueRegion();
// this needs to be done already here, otherwise 'c' could very likely
// call discardWindowPixmap() in something called during cleanup
c->window_pix = None;
2011-01-30 17:34:42 +03:00
}
// before being deleted, remove references to everything that's now
// owner by Deleted
void Toplevel::disownDataPassedToDeleted()
2011-01-30 17:34:42 +03:00
{
info = NULL;
2011-01-30 17:34:42 +03:00
}
QRect Toplevel::visibleRect() const
2011-01-30 17:34:42 +03:00
{
if (hasShadow() && !shadow()->shadowRegion().isEmpty()) {
return shadow()->shadowRegion().boundingRect().translated(geometry().topLeft());
}
return geometry();
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
NET::WindowType Toplevel::windowType(bool direct, int supported_types) const
{
if (supported_types == 0)
supported_types = dynamic_cast< const Client* >(this) != NULL
? SUPPORTED_MANAGED_WINDOW_TYPES_MASK : SUPPORTED_UNMANAGED_WINDOW_TYPES_MASK;
NET::WindowType wt = info->windowType(supported_types);
if (direct)
return wt;
2011-01-30 17:34:42 +03:00
const Client* cl = dynamic_cast< const Client* >(this);
NET::WindowType wt2 = cl ? cl->rules()->checkType(wt) : wt;
if (wt != wt2) {
wt = wt2;
2011-01-30 17:34:42 +03:00
info->setWindowType(wt); // force hint change
}
// hacks here
2011-01-30 17:34:42 +03:00
if (wt == NET::Menu && cl != NULL) {
// ugly hack to support the times when NET::Menu meant NET::TopMenu
// if it's as wide as the screen, not very high and has its upper-left
// corner a bit above the screen's upper-left cornet, it's a topmenu
2011-01-30 17:34:42 +03:00
if (x() == 0 && y() < 0 && y() > -10 && height() < 100
&& abs(width() - workspace()->clientArea(FullArea, cl).width()) < 10)
wt = NET::TopMenu;
2011-01-30 17:34:42 +03:00
}
// TODO change this to rule
const char* const oo_prefix = "openoffice.org"; // QByteArray has no startsWith()
// oo_prefix is lowercase, because resourceClass() is forced to be lowercase
2011-01-30 17:34:42 +03:00
if (qstrncmp(resourceClass(), oo_prefix, strlen(oo_prefix)) == 0 && wt == NET::Dialog)
wt = NET::Normal; // see bug #66065
2011-01-30 17:34:42 +03:00
if (wt == NET::Unknown && cl != NULL) // this is more or less suggested in NETWM spec
wt = cl->isTransient() ? NET::Dialog : NET::Normal;
return wt;
2011-01-30 17:34:42 +03:00
}
void Toplevel::getWindowRole()
2011-01-30 17:34:42 +03:00
{
window_role = getStringProperty(window(), atoms->wm_window_role).toLower();
}
/*!
Returns SM_CLIENT_ID property for a given window.
*/
QByteArray Toplevel::staticSessionId(WId w)
2011-01-30 17:34:42 +03:00
{
return getStringProperty(w, atoms->sm_client_id);
2011-01-30 17:34:42 +03:00
}
/*!
Returns WM_COMMAND property for a given window.
*/
QByteArray Toplevel::staticWmCommand(WId w)
2011-01-30 17:34:42 +03:00
{
return getStringProperty(w, XA_WM_COMMAND, ' ');
2011-01-30 17:34:42 +03:00
}
/*!
Returns WM_CLIENT_LEADER property for a given window.
*/
Window Toplevel::staticWmClientLeader(WId w)
2011-01-30 17:34:42 +03:00
{
Atom type;
int format, status;
unsigned long nitems = 0;
unsigned long extra = 0;
unsigned char *data = 0;
Window result = w;
KXErrorHandler err;
2011-01-30 17:34:42 +03:00
status = XGetWindowProperty(display(), w, atoms->wm_client_leader, 0, 10000,
false, XA_WINDOW, &type, &format,
&nitems, &extra, &data);
if (status == Success && !err.error(false)) {
if (data && nitems > 0)
result = *((Window*) data);
XFree(data);
}
2011-01-30 17:34:42 +03:00
return result;
}
void Toplevel::getWmClientLeader()
2011-01-30 17:34:42 +03:00
{
wmClientLeaderWin = staticWmClientLeader(window());
2011-01-30 17:34:42 +03:00
}
/*!
Returns sessionId for this client,
taken either from its window or from the leader window.
*/
QByteArray Toplevel::sessionId()
2011-01-30 17:34:42 +03:00
{
QByteArray result = staticSessionId(window());
2011-01-30 17:34:42 +03:00
if (result.isEmpty() && wmClientLeaderWin && wmClientLeaderWin != window())
result = staticSessionId(wmClientLeaderWin);
return result;
2011-01-30 17:34:42 +03:00
}
/*!
Returns command property for this client,
taken either from its window or from the leader window.
*/
QByteArray Toplevel::wmCommand()
2011-01-30 17:34:42 +03:00
{
QByteArray result = staticWmCommand(window());
2011-01-30 17:34:42 +03:00
if (result.isEmpty() && wmClientLeaderWin && wmClientLeaderWin != window())
result = staticWmCommand(wmClientLeaderWin);
return result;
2011-01-30 17:34:42 +03:00
}
void Toplevel::getWmClientMachine()
2011-01-30 17:34:42 +03:00
{
client_machine = getStringProperty(window(), XA_WM_CLIENT_MACHINE);
2011-01-30 17:34:42 +03:00
if (client_machine.isEmpty() && wmClientLeaderWin && wmClientLeaderWin != window())
client_machine = getStringProperty(wmClientLeaderWin, XA_WM_CLIENT_MACHINE);
2011-01-30 17:34:42 +03:00
if (client_machine.isEmpty())
client_machine = "localhost";
2011-01-30 17:34:42 +03:00
}
/*!
Returns client machine for this client,
taken either from its window or from the leader window.
*/
2011-01-30 17:34:42 +03:00
QByteArray Toplevel::wmClientMachine(bool use_localhost) const
{
QByteArray result = client_machine;
2011-01-30 17:34:42 +03:00
if (use_localhost) {
// special name for the local machine (localhost)
if (result != "localhost" && isLocalMachine(result))
result = "localhost";
}
2011-01-30 17:34:42 +03:00
return result;
}
/*!
Returns client leader window for this client.
Returns the client window itself if no leader window is defined.
*/
Window Toplevel::wmClientLeader() const
2011-01-30 17:34:42 +03:00
{
if (wmClientLeaderWin)
return wmClientLeaderWin;
return window();
2011-01-30 17:34:42 +03:00
}
void Toplevel::getResourceClass()
2011-01-30 17:34:42 +03:00
{
XClassHint classHint;
2011-01-30 17:34:42 +03:00
if (XGetClassHint(display(), window(), &classHint)) {
// Qt3.2 and older had this all lowercase, Qt3.3 capitalized resource class.
// Force lowercase, so that workarounds listing resource classes still work.
2011-01-30 17:34:42 +03:00
resource_name = QByteArray(classHint.res_name).toLower();
resource_class = QByteArray(classHint.res_class).toLower();
XFree(classHint.res_name);
XFree(classHint.res_class);
} else {
resource_name = resource_class = QByteArray();
}
2011-01-30 17:34:42 +03:00
}
double Toplevel::opacity() const
2011-01-30 17:34:42 +03:00
{
if (info->opacity() == 0xffffffff)
return 1.0;
return info->opacity() * 1.0 / 0xffffffff;
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
void Toplevel::setOpacity(double new_opacity)
{
double old_opacity = opacity();
2011-01-30 17:34:42 +03:00
new_opacity = qBound(0.0, new_opacity, 1.0);
if (old_opacity == new_opacity)
return;
2011-01-30 17:34:42 +03:00
info->setOpacity(static_cast< unsigned long >(new_opacity * 0xffffffff));
if (compositing()) {
addRepaintFull();
2011-03-06 12:30:23 +03:00
emit opacityChanged(this, old_opacity);
}
2011-01-30 17:34:42 +03:00
}
void Toplevel::setReadyForPainting()
{
if (!ready_for_painting) {
ready_for_painting = true;
if (compositing()) {
addRepaintFull();
emit windowShown(this);
if (Client *cl = dynamic_cast<Client*>(this)) {
if (cl->tabGroup() && cl->tabGroup()->current() == cl)
cl->tabGroup()->setCurrent(cl, true);
}
}
}
}
void Toplevel::deleteEffectWindow()
2011-01-30 17:34:42 +03:00
{
delete effect_window;
effect_window = NULL;
2011-01-30 17:34:42 +03:00
}
int Toplevel::screen() const
2011-01-30 17:34:42 +03:00
{
int s = workspace()->screenNumber(geometry().center());
if (s < 0) {
kDebug(1212) << "Invalid screen: Center" << geometry().center() << ", screen" << s;
2011-01-30 17:34:42 +03:00
return 0;
}
2011-01-30 17:34:42 +03:00
return s;
}
2011-01-30 17:34:42 +03:00
bool Toplevel::isOnScreen(int screen) const
{
return workspace()->screenGeometry(screen).intersects(geometry());
}
void Toplevel::getShadow()
{
QRect dirtyRect; // old & new shadow region
if (hasShadow()) {
dirtyRect = shadow()->shadowRegion().boundingRect();
effectWindow()->sceneWindow()->shadow()->updateShadow();
} else {
Shadow::createShadow(this);
}
if (hasShadow())
dirtyRect |= shadow()->shadowRegion().boundingRect();
if (dirtyRect.isValid()) {
2012-02-21 22:35:46 +04:00
resetRepaints();
dirtyRect.translate(pos());
workspace()->addRepaint(dirtyRect);
}
}
bool Toplevel::hasShadow() const
{
if (effectWindow() && effectWindow()->sceneWindow()) {
return effectWindow()->sceneWindow()->shadow() != NULL;
}
return false;
}
Shadow *Toplevel::shadow()
{
if (effectWindow() && effectWindow()->sceneWindow()) {
return effectWindow()->sceneWindow()->shadow();
} else {
return NULL;
}
}
const Shadow *Toplevel::shadow() const
{
if (effectWindow() && effectWindow()->sceneWindow()) {
return effectWindow()->sceneWindow()->shadow();
} else {
return NULL;
}
}
void Toplevel::getWmOpaqueRegion()
{
const int length=32768;
unsigned long bytes_after_return=0;
QRegion new_opaque_region;
do {
unsigned long* data;
Atom type;
int rformat;
unsigned long nitems;
if (XGetWindowProperty(display(), client,
atoms->net_wm_opaque_region, 0, length, false, XA_CARDINAL,
&type, &rformat, &nitems, &bytes_after_return,
reinterpret_cast< unsigned char** >(&data)) == Success) {
if (type != XA_CARDINAL || rformat != 32 || nitems%4) {
// it can happen, that the window does not provide this property
XFree(data);
break;
}
for (unsigned int i = 0; i < nitems;) {
const int x = data[i++];
const int y = data[i++];
const int w = data[i++];
const int h = data[i++];
new_opaque_region += QRect(x,y,w,h);
}
XFree(data);
} else {
kWarning(1212) << "XGetWindowProperty failed";
break;
}
} while (bytes_after_return > 0);
opaque_region = new_opaque_region;
}
bool Toplevel::isClient() const
{
return false;
}
bool Toplevel::isDeleted() const
{
return false;
}
} // namespace
#include "toplevel.moc"