mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-09-14 19:43:53 +08:00
dd778596b7
date: 2025-03-15T21:10:51 master commit: fb7b9c0f9420d228f03362970ebcfb7237095cf3
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;
|
|
};
|