2023-11-01 21:11:11 +00:00
|
|
|
// This file Copyright © Mnemosyne LLC.
|
2022-08-08 18:05:39 +00:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 18:27:56 +00:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2010-07-03 00:25:22 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2015-06-10 21:27:11 +00:00
|
|
|
|
2020-06-05 19:02:11 +00:00
|
|
|
#include <array>
|
2015-06-12 22:41:36 +00:00
|
|
|
#include <cstdint> // int64_t
|
2010-07-03 00:25:22 +00:00
|
|
|
|
2020-06-05 19:02:11 +00:00
|
|
|
#include <QCoreApplication> // Q_DECLARE_TR_FUNCTIONS
|
2010-07-03 00:25:22 +00:00
|
|
|
#include <QString>
|
|
|
|
|
2023-01-02 16:23:51 +00:00
|
|
|
#include <libtransmission/utils.h>
|
2022-09-09 01:17:29 +00:00
|
|
|
|
|
|
|
#include "Speed.h"
|
2010-07-03 00:25:22 +00:00
|
|
|
|
2015-06-12 22:12:12 +00:00
|
|
|
class Formatter
|
2010-07-03 00:25:22 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
Q_DECLARE_TR_FUNCTIONS(Formatter)
|
2010-07-03 00:25:22 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
public:
|
2023-11-16 04:15:40 +00:00
|
|
|
Formatter() = delete;
|
2022-09-09 01:17:29 +00:00
|
|
|
|
2023-11-16 04:15:40 +00:00
|
|
|
[[nodiscard]] static QString memory_to_string(int64_t bytes);
|
2022-09-09 01:17:29 +00:00
|
|
|
|
2023-11-16 04:15:40 +00:00
|
|
|
[[nodiscard]] static auto percent_to_string(double x)
|
2022-09-09 01:17:29 +00:00
|
|
|
{
|
|
|
|
return QString::fromStdString(tr_strpercent(x));
|
|
|
|
}
|
|
|
|
|
2023-11-16 04:15:40 +00:00
|
|
|
[[nodiscard]] static auto ratio_to_string(double ratio)
|
2022-09-09 01:17:29 +00:00
|
|
|
{
|
|
|
|
static auto constexpr InfinitySymbol = "\xE2\x88\x9E";
|
|
|
|
|
|
|
|
return QString::fromStdString(tr_strratio(ratio, InfinitySymbol));
|
|
|
|
}
|
2010-07-03 00:25:22 +00:00
|
|
|
|
2023-11-16 04:15:40 +00:00
|
|
|
[[nodiscard]] static QString storage_to_string(int64_t bytes);
|
|
|
|
[[nodiscard]] static QString storage_to_string(uint64_t bytes);
|
2010-07-07 00:30:42 +00:00
|
|
|
|
2023-11-16 04:15:40 +00:00
|
|
|
[[nodiscard]] static QString time_to_string(int seconds);
|
2010-07-03 00:25:22 +00:00
|
|
|
};
|