2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2003 Karol Szwed <kszwed@kde.org>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
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
|
|
|
|
|