Cockatrice/cockatrice/src/game/hand_counter.h

39 lines
776 B
C++

#ifndef HANDCOUNTER_H
#define HANDCOUNTER_H
#include "../game/board/abstract_graphics_item.h"
#include <QString>
class QPainter;
class QPixmap;
class HandCounter : public AbstractGraphicsItem
{
Q_OBJECT
private:
int number;
protected:
void mousePressEvent(QGraphicsSceneMouseEvent *event) override;
public slots:
void updateNumber();
signals:
void showContextMenu(const QPoint &screenPos);
public:
enum
{
Type = typeOther
};
int type() const override
{
return Type;
}
explicit HandCounter(QGraphicsItem *parent = nullptr);
~HandCounter() override;
QRectF boundingRect() const override;
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override;
};
#endif