C++ / build (pull_request) Failing after 15s
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 28s
Python / lint-format (pull_request) Successful in 45s
Python / test (pull_request) Successful in 38s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m45s
35 lines
614 B
C++
35 lines
614 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
|