tools/templates/pixlabel.h
author unc0rr
Fri, 10 Apr 2015 23:58:05 +0300
changeset 10907 9b8e9813c6f8
parent 8442 535a00ca0d35
permissions -rw-r--r--
Switch to mysql-simple, as hdbc package seems to be abandoned and anyway never satisfied me

#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);
};