summaryrefslogtreecommitdiff
path: root/tagitem.h
blob: 3863d4082c1a9e3b8811b96231caefd5bfb22ba9 (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
33
#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; }

    virtual QRectF boundingRect() const override;
    virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
    virtual QPainterPath shape() const override;

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

private:
    Tag m_tag;
    bool valid;
};

#endif // TAGITEM_H