tools/templates/pixlabel.h
author sheepluva
Tue, 26 May 2015 23:29:53 +0200
changeset 10970 7341e0c3f966
parent 8442 535a00ca0d35
permissions -rw-r--r--
LuaAPI: fix OnHogAttack the incorrect AmmoType (amNothing) under certain conditions. Thanks for CheezeMonkey for reporting this

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