version: sunnypilot v2025.003.000 (dev) date: 2026-02-09T02:04:38 master commit: 254f55ac15a40343d7255f2f098de3442e0c4a6f
13 lines
259 B
C++
13 lines
259 B
C++
#pragma once
|
|
|
|
#include <QLabel>
|
|
|
|
class TipLabel : public QLabel {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TipLabel(QWidget *parent = nullptr);
|
|
void showText(const QPoint &pt, const QString &sec, QWidget *w, const QRect &rect);
|
|
void paintEvent(QPaintEvent *ev) override;
|
|
};
|