summaryrefslogtreecommitdiff
path: root/tagitem.h
blob: a2482432c716c710b8e1229b4313d278ef2901d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef TAGITEM_H
#define TAGITEM_H

#include "sqlitebackend.h"

#include <QGraphicsPixmapItem>


class TagItem : public QGraphicsSimpleTextItem
{
public:
    TagItem(const Tag &tag);
    TagItem() : valid(false) {};

    enum { TagItemType = UserType + 1 };
    int type() const override { return TagItemType; }

    bool isValid() { return valid; }

    void tagUpdated(const Tag &tag);

    Tag tag() { return m_tag; }

protected:
    QVariant itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value) override;

private:
    Tag m_tag;
    bool valid;
};

#endif // TAGITEM_H