2015-08-19 21:00:56 +01:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-08-26 04:06:43 +01:00
|
|
|
#pragma once
|
|
|
|
|
2015-08-19 21:00:56 +01:00
|
|
|
#include <QFont>
|
2015-09-01 05:35:33 +01:00
|
|
|
#include <QString>
|
2015-08-19 21:00:56 +01:00
|
|
|
|
|
|
|
/// Returns a QFont object appropriate to use as a monospace font for debugging widgets, etc.
|
|
|
|
QFont GetMonospaceFont();
|
2015-09-01 05:35:33 +01:00
|
|
|
|
|
|
|
/// Convert a size in bytes into a readable format (KiB, MiB, etc.)
|
|
|
|
QString ReadableByteSize(qulonglong size);
|