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 |