tools/templates/pixlabel.h
author Wuzzy <Wuzzy2@mail.ru>
Thu, 19 Apr 2018 15:48:00 +0200
changeset 13339 450e37b2b4d4
parent 8442 535a00ca0d35
permissions -rw-r--r--
Fix incorrect check for iPhone macro in hwconsts.h TARGET_OS_IPHONE is always defined when building on Mac OS, so the define was wrong. This macro expands to either 0 or 1, so a simple #if should be enough.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
359
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     1
#include <QLabel>
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     2
#include <QRect>
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     3
#include <QList>
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     4
#include <QMouseEvent>
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     5
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     6
class PixLabel : public QLabel
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     7
{
8442
535a00ca0d35 whitespaces and tabs again
koda
parents: 359
diff changeset
     8
    Q_OBJECT
359
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
     9
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
    10
public:
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
    11
8442
535a00ca0d35 whitespaces and tabs again
koda
parents: 359
diff changeset
    12
    PixLabel();
535a00ca0d35 whitespaces and tabs again
koda
parents: 359
diff changeset
    13
    QList<QRect> rects;
359
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
    14
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
    15
public slots:
8442
535a00ca0d35 whitespaces and tabs again
koda
parents: 359
diff changeset
    16
    void AddRect();
359
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
    17
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
    18
private:
8442
535a00ca0d35 whitespaces and tabs again
koda
parents: 359
diff changeset
    19
    void paintEvent(QPaintEvent * event);
535a00ca0d35 whitespaces and tabs again
koda
parents: 359
diff changeset
    20
    void mousePressEvent(QMouseEvent * e);
359
59fbfc65fbda - New land templates
unc0rr
parents:
diff changeset
    21
};