mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-14 19:18:55 -07:00
18 lines
416 B
C++
18 lines
416 B
C++
#ifndef HANDZONE_HORIZ_H
|
|
#define HANDZONE_HORIZ_H
|
|
|
|
#include "handzone.h"
|
|
|
|
class HandZoneHoriz : public HandZone {
|
|
Q_OBJECT
|
|
private:
|
|
qreal width;
|
|
public:
|
|
HandZoneHoriz(Player *_p, bool _contentsKnown, QGraphicsItem *parent = 0);
|
|
QRectF boundingRect() const;
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
|
|
void reorganizeCards();
|
|
void setWidth(qreal _width);
|
|
};
|
|
|
|
#endif
|