34 lines
605 B
C++
34 lines
605 B
C++
#pragma once
|
|
|
|
#include <qobject.h>
|
|
#include <qobjectdefs.h>
|
|
#include <qqmlintegration.h>
|
|
#include <qtmetamacros.h>
|
|
|
|
namespace ZShell::services::usagefmt {
|
|
|
|
struct FormatResult {
|
|
Q_GADGET
|
|
QML_ANONYMOUS
|
|
|
|
Q_PROPERTY(qreal value MEMBER value CONSTANT)
|
|
Q_PROPERTY(qreal total MEMBER total CONSTANT)
|
|
Q_PROPERTY(QString unit MEMBER unit CONSTANT)
|
|
|
|
public:
|
|
qreal value;
|
|
qreal total;
|
|
QString unit;
|
|
};
|
|
|
|
class UsageFmt : public QObject {
|
|
Q_OBJECT
|
|
QML_ELEMENT
|
|
QML_SINGLETON
|
|
|
|
public:
|
|
Q_INVOKABLE [[nodiscard]] FormatResult formatKib(qreal kib, qreal total) const;
|
|
};
|
|
|
|
} // namespace ZShell::services::usagefmt
|