2003-01-07 12:42:32 +00:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
* Window Geometry Display
|
|
|
|
* Copyright (c) 2003, Karol Szwed <kszwed@kde.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "geometrytip.h"
|
2003-06-15 07:19:05 +00:00
|
|
|
#include "options.h"
|
2003-06-11 13:05:44 +00:00
|
|
|
#include <X11/Xlib.h>
|
2003-01-07 12:42:32 +00:00
|
|
|
|
|
|
|
using namespace KWinInternal;
|
|
|
|
|
2003-06-15 07:19:05 +00:00
|
|
|
extern Options* options;
|
2003-01-07 12:42:32 +00:00
|
|
|
|
2003-06-15 07:19:05 +00:00
|
|
|
|
|
|
|
GeometryTip::GeometryTip( const Client* client, const XSizeHints* xSizeHints, bool resizing ):
|
2003-01-07 12:42:32 +00:00
|
|
|
QLabel(NULL, "kwingeometry", WStyle_Customize | WStyle_StaysOnTop |
|
|
|
|
WStyle_NoBorder | WX11BypassWM )
|
|
|
|
{
|
2003-06-11 13:05:44 +00:00
|
|
|
// Enable SaveUnder so that we don't get those nasty unpainted
|
|
|
|
// areas when moving/resizing the window in non-opaque modes.
|
|
|
|
// For this to work properly have 'Option "backingstore"' set in the Screen
|
|
|
|
// section of your XF86Config. (some drivers may not support saveunder,
|
|
|
|
// oh well, we tried.)
|
2003-06-15 07:19:05 +00:00
|
|
|
|
|
|
|
// Only do this in transparent mode, as it slows down opaque mode...
|
|
|
|
if ( (resizing && options->resizeMode == Options::Transparent) ||
|
|
|
|
(!resizing && options->moveMode == Options::Transparent) )
|
|
|
|
{
|
|
|
|
XSetWindowAttributes wsa;
|
|
|
|
wsa.save_under = True;
|
|
|
|
XChangeWindowAttributes( qt_xdisplay(), winId(), CWSaveUnder, &wsa );
|
|
|
|
}
|
2003-06-11 13:05:44 +00:00
|
|
|
|
2003-01-07 12:42:32 +00:00
|
|
|
c = client;
|
|
|
|
setMargin(1);
|
|
|
|
setIndent(0);
|
|
|
|
setLineWidth(1);
|
|
|
|
setFrameStyle( QFrame::Raised | QFrame::StyledPanel );
|
|
|
|
setAlignment( AlignCenter | AlignTop );
|
|
|
|
sizeHints = xSizeHints;
|
2003-07-29 15:12:16 +00:00
|
|
|
|
|
|
|
QWidget* wrap = c->windowWrapper();
|
|
|
|
framewidth = client->width() - wrap->width();
|
|
|
|
frameheight = client->height() - wrap->height();
|
2003-01-07 12:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GeometryTip::~GeometryTip()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void GeometryTip::setGeometry( const QRect& geom )
|
|
|
|
{
|
|
|
|
int w, h;
|
|
|
|
int bw, bh;
|
|
|
|
|
2003-07-29 15:12:16 +00:00
|
|
|
w = geom.width() - framewidth;
|
|
|
|
h = geom.height() - frameheight;
|
2003-01-07 12:42:32 +00:00
|
|
|
|
|
|
|
if (sizeHints) {
|
|
|
|
if (!(sizeHints->flags & PBaseSize)) {
|
|
|
|
bw = 0;
|
|
|
|
bh = 0;
|
|
|
|
} else {
|
|
|
|
bw = sizeHints->base_width;
|
|
|
|
bh = sizeHints->base_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sizeHints->flags & PResizeInc) {
|
|
|
|
if (sizeHints->width_inc > 0)
|
|
|
|
w = (w - bw) / sizeHints->width_inc;
|
|
|
|
if (sizeHints->height_inc > 0)
|
|
|
|
h = (h - bh) / sizeHints->height_inc;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString pos;
|
|
|
|
pos.sprintf( "%+d,%+d (<b>%d x %d</b>)",
|
|
|
|
geom.x(), geom.y(), w, h );
|
|
|
|
setText( pos );
|
|
|
|
adjustSize();
|
|
|
|
move( geom.x() + ((geom.width() - width()) / 2),
|
|
|
|
geom.y() + ((geom.height() - height()) / 2) );
|
|
|
|
}
|
2003-07-29 16:00:52 +00:00
|
|
|
|
|
|
|
#include "geometrytip.moc"
|