mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-12 09:04:53 -07:00
forgot some files
This commit is contained in:
parent
c8a2ed9415
commit
e0d773e4e5
4 changed files with 213 additions and 0 deletions
21
cockatrice/src/pilezone.h
Normal file
21
cockatrice/src/pilezone.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue