summaryrefslogtreecommitdiffstats
path: root/examples/widgets/elidedlabel/elidedlabel.h
blob: 6c55ecd056567656e279050c3577699e30294a9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef ELIDEDLABEL_H

#define ELIDEDLABEL_H


#include <QFrame>

#include <QRect>

#include <QResizeEvent>

#include <QString>

#include <QWidget>


//! [0]

class ElidedLabel : public QFrame
{
    Q_OBJECT
    Q_PROPERTY(QString text READ text WRITE setText)
    Q_PROPERTY(bool isElided READ isElided)

public:
    ElidedLabel(const QString &text, QWidget *parent = 0);

    void setText(const QString &text);
    const QString & text() const { return content; }
    bool isElided() const { return elided; }

protected:
    void paintEvent(QPaintEvent *event);

signals:
    void elisionChanged(bool elided);

private:
    bool elided;
    QString content;
};
//! [0]


#endif // TEXTWRAPPINGWIDGET_H