Mercurial > minori
annotate include/gui/widgets/elided_label.h @ 253:b3549da699a6
*: ooooh! stupid big commit!
oops
| author | Paper <paper@paper.us.eu.org> |
|---|---|
| date | Tue, 06 Feb 2024 16:56:32 -0500 |
| parents | |
| children | 3ec7804abf17 |
| rev | line source |
|---|---|
| 253 | 1 #ifndef __gui__widgets__elided_label_h |
| 2 #define __gui__widgets__elided_label_h | |
| 3 | |
| 4 #include <QFrame> | |
| 5 #include <QString> | |
| 6 | |
| 7 class QPaintEvent; | |
| 8 class QWidget; | |
| 9 | |
| 10 class ElidedLabel : public QFrame { | |
| 11 public: | |
| 12 ElidedLabel(const QString& text, QWidget* parent = nullptr); | |
| 13 void SetText(const QString& text); | |
| 14 | |
| 15 protected: | |
| 16 QString content; | |
| 17 | |
| 18 void paintEvent(QPaintEvent* event) override; | |
| 19 }; | |
| 20 | |
| 21 #endif // __gui__widgets__elided_label_h |
