mirror of
https://github.com/infiniteCable2/openpilot.git
synced 2026-09-15 03:53:41 +08:00
dcb8ea01b3
* git mv * split file * fix includes * split tiplabel out old-commit-hash: 57bf782872461a3328bbd9121c7bbd207abec2e5
11 lines
232 B
C++
11 lines
232 B
C++
#pragma once
|
|
|
|
#include <QLabel>
|
|
|
|
class TipLabel : public QLabel {
|
|
public:
|
|
TipLabel(QWidget *parent = nullptr);
|
|
void showText(const QPoint &pt, const QString &sec, int right_edge);
|
|
void paintEvent(QPaintEvent *ev) override;
|
|
};
|