You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef QSTYLELABEL_H
|
|
#define QSTYLELABEL_H
|
|
|
|
#include <QLabel>
|
|
#include "qevent.h"
|
|
|
|
class QStyleLabel : public QLabel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QStyleLabel(QWidget *parent = 0);
|
|
~QStyleLabel();
|
|
|
|
private:
|
|
protected:
|
|
virtual void paintEvent(QPaintEvent *event);
|
|
};
|
|
|
|
#endif // QSTYLELABEL_H
|