2015-08-19 20:00:56 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-09-01 04:35:33 +00:00
|
|
|
#include <array>
|
|
|
|
#include <cmath>
|
2018-08-29 13:42:53 +00:00
|
|
|
#include <QPainter>
|
2018-01-12 03:33:56 +00:00
|
|
|
#include "yuzu/util/util.h"
|
2015-09-01 04:35:33 +00:00
|
|
|
|
2015-08-19 20:00:56 +00:00
|
|
|
QFont GetMonospaceFont() {
|
2019-05-20 18:44:13 +00:00
|
|
|
QFont font(QStringLiteral("monospace"));
|
2015-08-19 20:00:56 +00:00
|
|
|
// Automatic fallback to a monospace font on on platforms without a font called "monospace"
|
|
|
|
font.setStyleHint(QFont::Monospace);
|
|
|
|
font.setFixedPitch(true);
|
|
|
|
return font;
|
|
|
|
}
|
2015-09-01 04:35:33 +00:00
|
|
|
|
|
|
|
QString ReadableByteSize(qulonglong size) {
|
2019-05-20 18:44:13 +00:00
|
|
|
static constexpr std::array units{"B", "KiB", "MiB", "GiB", "TiB", "PiB"};
|
|
|
|
if (size == 0) {
|
|
|
|
return QStringLiteral("0");
|
|
|
|
}
|
|
|
|
|
|
|
|
const int digit_groups = std::min(static_cast<int>(std::log10(size) / std::log10(1024)),
|
|
|
|
static_cast<int>(units.size()));
|
|
|
|
return QStringLiteral("%L1 %2")
|
2016-09-18 00:38:01 +00:00
|
|
|
.arg(size / std::pow(1024, digit_groups), 0, 'f', 1)
|
2019-05-20 18:44:13 +00:00
|
|
|
.arg(QString::fromUtf8(units[digit_groups]));
|
2015-09-01 04:35:33 +00:00
|
|
|
}
|
2018-08-29 13:42:53 +00:00
|
|
|
|
|
|
|
QPixmap CreateCirclePixmapFromColor(const QColor& color) {
|
|
|
|
QPixmap circle_pixmap(16, 16);
|
|
|
|
circle_pixmap.fill(Qt::transparent);
|
|
|
|
QPainter painter(&circle_pixmap);
|
2018-09-17 09:57:23 +00:00
|
|
|
painter.setRenderHint(QPainter::Antialiasing);
|
2018-08-29 13:42:53 +00:00
|
|
|
painter.setPen(color);
|
|
|
|
painter.setBrush(color);
|
2018-09-17 09:57:23 +00:00
|
|
|
painter.drawEllipse({circle_pixmap.width() / 2.0, circle_pixmap.height() / 2.0}, 7.0, 7.0);
|
2018-08-29 13:42:53 +00:00
|
|
|
return circle_pixmap;
|
|
|
|
}
|