1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-27 18:18:10 +00:00
transmission/qt/Formatter.h
Mike Gelfand dadffa2c0f Align type qualifiers to the right (code style)
This way all the qualifiers (`const`, `volatile`, `mutable`) are grouped
together, e.g. `T const* const x` vs. `const T* const x`. Also helps reading
types right-to-left, e.g. "constant pointer to constant T" vs. "constant
pointer to T which is constant".
2017-04-20 19:53:20 +03:00

58 lines
1.1 KiB
C++

/*
* This file Copyright (C) 2012-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
*/
#pragma once
#include <cstdint> // int64_t
#include <QCoreApplication>
#include <QString>
class Speed;
class Formatter
{
Q_DECLARE_TR_FUNCTIONS(Formatter)
public:
enum Size
{
B,
KB,
MB,
GB,
TB
};
enum Type
{
SPEED,
SIZE,
MEM
};
public:
static QString memToString(int64_t bytes);
static QString sizeToString(int64_t bytes);
static QString speedToString(Speed const& speed);
static QString percentToString(double x);
static QString ratioToString(double ratio);
static QString timeToString(int seconds);
static QString uploadSpeedToString(Speed const& up);
static QString downloadSpeedToString(Speed const& down);
static QString unitStr(Type t, Size s)
{
return unitStrings[t][s];
}
static void initUnits();
private:
static QString unitStrings[3][5];
};