mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-01 19:13:55 -07:00
PB: everything compiles except for deck storage
This commit is contained in:
parent
695fde7541
commit
d5c628966f
51 changed files with 659 additions and 628 deletions
|
|
@ -5,7 +5,7 @@
|
|||
#include <QGraphicsLayoutItem>
|
||||
|
||||
class ZoneViewWidget;
|
||||
class ProtocolResponse;
|
||||
class Response;
|
||||
class ServerInfo_Card;
|
||||
|
||||
class ZoneViewZone : public SelectZone, public QGraphicsLayoutItem {
|
||||
|
|
@ -23,7 +23,7 @@ public:
|
|||
QRectF boundingRect() const;
|
||||
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
|
||||
void reorganizeCards();
|
||||
void initializeCards(const QList<ServerInfo_Card *> &cardList = QList<ServerInfo_Card *>());
|
||||
void initializeCards(const QList<const ServerInfo_Card *> &cardList = QList<const ServerInfo_Card *>());
|
||||
void removeCard(int position);
|
||||
int getNumberCards() const { return numberCards; }
|
||||
void setGeometry(const QRectF &rect);
|
||||
|
|
@ -32,7 +32,7 @@ public slots:
|
|||
void setSortByName(int _sortByName);
|
||||
void setSortByType(int _sortByType);
|
||||
private slots:
|
||||
void zoneDumpReceived(ProtocolResponse *r);
|
||||
void zoneDumpReceived(const Response &r);
|
||||
signals:
|
||||
void beingDeleted();
|
||||
void optimumRectChanged();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue