24 lines
762 B
C++
24 lines
762 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 = 0) : QObject(), QGraphicsItem(parent) { }
|
|
};
|
|
|
|
#endif
|