1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
/* This file is part of the KDE project
* SPDX-FileCopyrightText: 2012 Arjen Hiemstra <ahiemstra@heimr.nl>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "Constants.h"
#include <QApplication>
#include <QWidget>
Constants::Constants(QObject *parent)
: QObject(parent)
{
m_gridWidth = qApp->activeWindow()->width() / gridColumns();
m_gridHeight = qApp->activeWindow()->height() / gridRows();
m_toolbarButtonSize = m_gridHeight;
m_toolbarHeight = (m_gridHeight * gridRows()) / 12.55814; // magic number which /should/ yield a nice, solid 84 if we're running at 1080p
}
int Constants::animationDuration() const
{
return 150;
}
qreal Constants::gridHeight() const
{
return m_gridHeight;
}
void Constants::setGridHeight(qreal height)
{
m_gridHeight = height;
m_toolbarButtonSize = m_gridHeight;
m_toolbarHeight = (m_gridHeight * gridRows()) / 12.55814; // magic number which /should/ yield a nice, solid 84 if we're running at 1080p
emit gridSizeChanged();
}
qreal Constants::gridWidth() const
{
return m_gridWidth;
}
void Constants::setGridWidth(qreal width)
{
m_gridWidth = width;
m_toolbarButtonSize = m_gridHeight;
m_toolbarHeight = (m_gridHeight * gridRows()) / 12.55814; // magic number which /should/ yield a nice, solid 84 if we're running at 1080p
emit gridSizeChanged();
}
qreal Constants::toolbarButtonSize() const
{
return m_toolbarButtonSize;
}
qreal Constants::toolbarHeight() const
{
return m_toolbarHeight;
}
int Constants::gridRows() const
{
if (isLandscape())
return 12;
return 18;
}
int Constants::gridColumns() const
{
return 12;
}
qreal Constants::defaultMargin() const
{
return 0.1 * m_gridHeight;
}
qreal Constants::smallFontSize() const
{
return 0.2 * m_gridHeight;
}
qreal Constants::defaultFontSize() const
{
return 0.3 * m_gridHeight;
}
qreal Constants::largeFontSize() const
{
return 0.4 * m_gridHeight;
}
qreal Constants::hugeFontSize() const
{
return 0.9 * m_gridHeight;
}
bool Constants::isLandscape() const
{
// If user switches certain settings in windows, activeWindow can become null.
if (qApp->activeWindow())
return qApp->activeWindow()->height() < qApp->activeWindow()->width();
return true;
}
|