kwin/geometrytip.cpp

65 lines
1.6 KiB
C++
Raw Normal View History

2020-08-03 01:22:19 +03:00
/*
KWin - the KDE window manager
This file is part of the KDE project.
2020-08-03 01:22:19 +03:00
SPDX-FileCopyrightText: 2003 Karol Szwed <kszwed@kde.org>
2020-08-03 01:22:19 +03:00
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "geometrytip.h"
namespace KWin
{
GeometryTip::GeometryTip(const Xcb::GeometryHints* xSizeHints):
QLabel(nullptr)
2011-01-30 17:34:42 +03:00
{
setObjectName(QLatin1String("kwingeometry"));
setMargin(1);
setIndent(0);
setLineWidth(1);
2011-01-30 17:34:42 +03:00
setFrameStyle(QFrame::Raised | QFrame::StyledPanel);
setAlignment(Qt::AlignCenter | Qt::AlignTop);
setWindowFlags(Qt::X11BypassWindowManagerHint);
sizeHints = xSizeHints;
2011-01-30 17:34:42 +03:00
}
GeometryTip::~GeometryTip()
2011-01-30 17:34:42 +03:00
{
}
static QString numberWithSign(int n)
{
const QLocale locale;
const QChar sign = n >= 0 ? locale.positiveSign() : locale.negativeSign();
return sign + QString::number(std::abs(n));
}
2011-01-30 17:34:42 +03:00
void GeometryTip::setGeometry(const QRect& geom)
{
int w = geom.width();
int h = geom.height();
2011-01-30 17:34:42 +03:00
if (sizeHints) {
if (sizeHints->hasResizeIncrements()) {
w = (w - sizeHints->baseSize().width()) / sizeHints->resizeIncrements().width();
h = (h - sizeHints->baseSize().height()) / sizeHints->resizeIncrements().height();
}
2011-01-30 17:34:42 +03:00
}
2011-01-30 17:34:42 +03:00
h = qMax(h, 0); // in case of isShade() and PBaseSize
const QString pos = QStringLiteral("%1,%2<br>(<b>%3&nbsp;x&nbsp;%4</b>)")
.arg(numberWithSign(geom.x()))
.arg(numberWithSign(geom.y()))
.arg(w)
.arg(h);
2011-01-30 17:34:42 +03:00
setText(pos);
adjustSize();
2011-01-30 17:34:42 +03:00
move(geom.x() + ((geom.width() - width()) / 2),
geom.y() + ((geom.height() - height()) / 2));
}
} // namespace