forgot some files

This commit is contained in:
Max-Wilhelm Bruker 2009-06-20 13:36:07 +02:00
parent c8a2ed9415
commit e0d773e4e5
4 changed files with 213 additions and 0 deletions

21
cockatrice/src/pilezone.h Normal file
View file

@ -0,0 +1,21 @@
#ifndef PILEZONE_H
#define PILEZONE_H
#include "cardzone.h"
class PileZone : public CardZone {
private:
public:
PileZone(Player *_p, const QString &_name, 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 mousePressEvent(QGraphicsSceneMouseEvent *event);
void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
void addCardImpl(CardItem *card, int x, int y);
};
#endif