mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 11:22:52 +00:00
77 lines
1.9 KiB
C++
77 lines
1.9 KiB
C++
![]() |
/*
|
||
|
* Copyright 2013 Marco Martin <mart@kde.org>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Library General Public License as
|
||
|
* published by the Free Software Foundation; either version 2, 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 Library General Public
|
||
|
* License along with this program; if not, write to the
|
||
|
* Free Software Foundation, Inc.,
|
||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#include "units.h"
|
||
|
|
||
|
#include <QApplication>
|
||
|
#include <QDebug>
|
||
|
#include <QDesktopWidget>
|
||
|
#include <QtGlobal>
|
||
|
#include <cmath>
|
||
|
|
||
|
#include <Plasma/Theme>
|
||
|
|
||
|
Units::Units (QObject *parent)
|
||
|
: QObject(parent),
|
||
|
m_gridUnit(-1)
|
||
|
{
|
||
|
themeChanged();
|
||
|
connect(Plasma::Theme::defaultTheme(), SIGNAL(themeChanged()),
|
||
|
this, SLOT(themeChanged()));
|
||
|
}
|
||
|
|
||
|
Units::~Units()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
qreal Units::gridUnit() const
|
||
|
{
|
||
|
return m_gridUnit;
|
||
|
}
|
||
|
|
||
|
qreal Units::dp(qreal value) const
|
||
|
{
|
||
|
//Usual "default" is 96 dpi
|
||
|
//that magic ratio follows the definition of "device independent pixel" by Microsoft
|
||
|
const qreal ratio = (qreal)QApplication::desktop()->physicalDpiX() / (qreal)96;
|
||
|
|
||
|
if (value <= 2.0) {
|
||
|
return qRound(value * floor(ratio));
|
||
|
} else {
|
||
|
return qRound(value * ratio);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
qreal Units::gu(qreal value) const
|
||
|
{
|
||
|
return qRound(m_gridUnit * value);
|
||
|
}
|
||
|
|
||
|
void Units::themeChanged()
|
||
|
{
|
||
|
const int gridUnit = QFontMetrics(Plasma::Theme::defaultTheme()->font(Plasma::Theme::DefaultFont)).boundingRect("M").width();
|
||
|
if (gridUnit != m_gridUnit) {
|
||
|
m_gridUnit = gridUnit;
|
||
|
emit gridUnitChanged();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#include "units.moc"
|
||
|
|