* add a bunch of parents to dialogs works on #3651 * use game as parent instead * add more parents * fix create token dialog modality * add parent to game information window * replace a bunch of nullptrs with the magic of sed * add parent to tip of the day and counters * reorder game ptr * set parent for life counter * clangify
31 lines
824 B
C++
31 lines
824 B
C++
#ifndef ABSTRACTGRAPHICSITEM_H
|
|
#define ABSTRACTGRAPHICSITEM_H
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
enum GraphicsItemType
|
|
{
|
|
typeCard = QGraphicsItem::UserType + 1,
|
|
typeCardDrag = QGraphicsItem::UserType + 2,
|
|
typeZone = QGraphicsItem::UserType + 3,
|
|
typePlayerTarget = QGraphicsItem::UserType + 4,
|
|
typeDeckViewCardContainer = QGraphicsItem::UserType + 5,
|
|
typeOther = QGraphicsItem::UserType + 6
|
|
};
|
|
|
|
class AbstractGraphicsItem : public QObject, public QGraphicsItem
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(QGraphicsItem)
|
|
protected:
|
|
void paintNumberEllipse(int number, int radius, const QColor &color, int position, int count, QPainter *painter);
|
|
|
|
public:
|
|
AbstractGraphicsItem(QGraphicsItem *parent = nullptr) : QObject(), QGraphicsItem(parent)
|
|
{
|
|
}
|
|
};
|
|
|
|
int resetPainterTransform(QPainter *painter);
|
|
|
|
#endif
|