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) 2003, Karol Szwed <kszwed@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 "geometrytip.h"
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2015-01-21 15:05:29 +00:00
|
|
|
GeometryTip::GeometryTip(const Xcb::GeometryHints* xSizeHints):
|
Use nullptr everywhere
Summary:
Because KWin is a very old project, we use three kinds of null pointer
literals: 0, NULL, and nullptr. Since C++11, it's recommended to use
nullptr keyword.
This change converts all usages of 0 and NULL literal to nullptr. Even
though it breaks git history, we need to do it in order to have consistent
code as well to ease code reviews (it's very tempting for some people to
add unrelated changes to their patches, e.g. converting NULL to nullptr).
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson, romangg
Reviewed By: #kwin, davidedmundson, romangg
Subscribers: romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D23618
2019-09-19 14:46:54 +00:00
|
|
|
QLabel(nullptr)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
setObjectName(QLatin1String("kwingeometry"));
|
2007-04-29 17:35:43 +00:00
|
|
|
setMargin(1);
|
|
|
|
setIndent(0);
|
|
|
|
setLineWidth(1);
|
2011-01-30 14:34:42 +00:00
|
|
|
setFrameStyle(QFrame::Raised | QFrame::StyledPanel);
|
|
|
|
setAlignment(Qt::AlignCenter | Qt::AlignTop);
|
|
|
|
setWindowFlags(Qt::X11BypassWindowManagerHint);
|
2007-04-29 17:35:43 +00:00
|
|
|
sizeHints = xSizeHints;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
GeometryTip::~GeometryTip()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2019-09-18 08:33:18 +00: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 14:34:42 +00:00
|
|
|
void GeometryTip::setGeometry(const QRect& geom)
|
|
|
|
{
|
2007-04-29 17:35:43 +00:00
|
|
|
int w = geom.width();
|
|
|
|
int h = geom.height();
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (sizeHints) {
|
2015-01-21 15:05:29 +00:00
|
|
|
if (sizeHints->hasResizeIncrements()) {
|
|
|
|
w = (w - sizeHints->baseSize().width()) / sizeHints->resizeIncrements().width();
|
|
|
|
h = (h - sizeHints->baseSize().height()) / sizeHints->resizeIncrements().height();
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
h = qMax(h, 0); // in case of isShade() and PBaseSize
|
2019-09-18 08:33:18 +00:00
|
|
|
const QString pos = QStringLiteral("%1,%2<br>(<b>%3 x %4</b>)")
|
|
|
|
.arg(numberWithSign(geom.x()))
|
|
|
|
.arg(numberWithSign(geom.y()))
|
|
|
|
.arg(w)
|
|
|
|
.arg(h);
|
2011-01-30 14:34:42 +00:00
|
|
|
setText(pos);
|
2007-04-29 17:35:43 +00:00
|
|
|
adjustSize();
|
2011-01-30 14:34:42 +00:00
|
|
|
move(geom.x() + ((geom.width() - width()) / 2),
|
|
|
|
geom.y() + ((geom.height() - height()) / 2));
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|