tools/templates/pixlabel.h
author Wuzzy <Wuzzy2@mail.ru>
Thu, 15 Feb 2018 16:48:04 +0100
changeset 13008 99ff8f4810f4
parent 8442 535a00ca0d35
permissions -rw-r--r--
TrophyRace: Show current racing time at top

#include <QLabel>
#include <QRect>
#include <QList>
#include <QMouseEvent>

class PixLabel : public QLabel
{
    Q_OBJECT

public:

    PixLabel();
    QList<QRect> rects;

public slots:
    void AddRect();

private:
    void paintEvent(QPaintEvent * event);
    void mousePressEvent(QMouseEvent * e);
};