mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-03 14:43:48 +08:00
7d7f0054e5
date: 2024-02-21T23:02:42 master commit: 0b4d08fab8e35a264bc7383e878538f8083c33e5
24 lines
498 B
C++
24 lines
498 B
C++
#pragma once
|
|
|
|
#include <QPaintEvent>
|
|
#include <QTextDocument>
|
|
#include <QWidget>
|
|
|
|
#include "common/params.h"
|
|
|
|
class MapETA : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MapETA(QWidget * parent=nullptr);
|
|
void updateETA(float seconds, float seconds_typical, float distance);
|
|
|
|
private:
|
|
void paintEvent(QPaintEvent *event) override;
|
|
void showEvent(QShowEvent *event) override { format_24h = param.getBool("NavSettingTime24h"); }
|
|
|
|
bool format_24h = false;
|
|
QTextDocument eta_doc;
|
|
Params param;
|
|
};
|