EllipsisLabel.h
Go to the documentation of this file.
1#ifndef ELLIPSISLABEL_H
2#define ELLIPSISLABEL_H
3
4#include <QLabel>
5
6class EllipsisLabel : public QLabel
7{
8 Q_OBJECT
9public:
10 explicit EllipsisLabel(QWidget* parent = nullptr);
11
12 void setFullText(const QString& text);
13
14protected:
15 void resizeEvent(QResizeEvent* event) override;
16
17private:
18 QString m_fullText;
19};
20
21#endif // ELLIPSISLABEL_H
void setFullText(const QString &text)
EllipsisLabel(QWidget *parent=nullptr)
void resizeEvent(QResizeEvent *event) override