Cockatrice/cockatrice/src/handzone.h
2009-09-08 17:56:20 +02:00

20 lines
528 B
C++

#ifndef HANDZONE_H
#define HANDZONE_H
#include "cardzone.h"
class HandZone : public CardZone {
private:
QPixmap bgPixmap;
int zoneHeight;
public:
HandZone(Player *_p, int _zoneHeight, QGraphicsItem *parent = 0);
QRectF boundingRect() const;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
void reorganizeCards();
void handleDropEvent(int cardId, CardZone *startZone, const QPoint &dropPoint, bool faceDown);
protected:
void addCardImpl(CardItem *card, int x, int y);
};
#endif