Add back the drive stats to the home screen

This commit is contained in:
FrogAi
2024-02-27 16:34:47 -07:00
parent 121fd2d246
commit ca8c8498bc
7 changed files with 133 additions and 6 deletions

View File

@@ -0,0 +1,25 @@
#pragma once
#include <QJsonDocument>
#include <QLabel>
class DriveStats : public QFrame {
Q_OBJECT
public:
explicit DriveStats(QWidget* parent = 0);
private:
void showEvent(QShowEvent *event) override;
void updateStats();
inline QString getDistanceUnit() const { return metric_ ? tr("KM") : tr("Miles"); }
bool metric_;
QJsonDocument stats_;
struct StatsLabels {
QLabel *routes, *distance, *distance_unit, *hours;
} all_, week_;
private slots:
void parseResponse(const QString &response, bool success);
};