mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-03 14:43:48 +08:00
81da8ac9f4
date: 2024-06-11T01:36:39 master commit: f8cb04e4a8b032b72a909f68b808a50936184bee
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;
|
|
};
|