servatrice/cockatrice/src/handcounter.h
2010-06-17 20:24:11 +02:00

26 lines
522 B
C++

#ifndef HANDCOUNTER_H
#define HANDCOUNTER_H
#include <QString>
#include "abstractcarditem.h"
class QPainter;
class QPixmap;
class HandCounter : public QObject, public AbstractGraphicsItem {
Q_OBJECT
private:
int number;
public slots:
void updateNumber();
public:
enum { Type = typeOther };
int type() const { return Type; }
HandCounter(QGraphicsItem *parent = 0);
~HandCounter();
QRectF boundingRect() const;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
};
#endif