100 lines
2.5 KiB
C++
100 lines
2.5 KiB
C++
#ifndef PHASESTOOLBAR_H
|
|
#define PHASESTOOLBAR_H
|
|
|
|
#include "abstractgraphicsitem.h"
|
|
|
|
#include <QFrame>
|
|
#include <QGraphicsObject>
|
|
#include <QList>
|
|
|
|
namespace google
|
|
{
|
|
namespace protobuf
|
|
{
|
|
class Message;
|
|
}
|
|
} // namespace google
|
|
class Player;
|
|
class GameCommand;
|
|
|
|
class PhaseButton : public QObject, public QGraphicsItem
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(QGraphicsItem)
|
|
private:
|
|
QString name;
|
|
bool active, highlightable;
|
|
int activeAnimationCounter;
|
|
QTimer *activeAnimationTimer;
|
|
QAction *doubleClickAction;
|
|
double width;
|
|
|
|
// void updatePixmap(QPixmap &pixmap);
|
|
private slots:
|
|
void updateAnimation();
|
|
|
|
public:
|
|
explicit PhaseButton(const QString &_name,
|
|
QGraphicsItem *parent = nullptr,
|
|
QAction *_doubleClickAction = nullptr,
|
|
bool _highlightable = true);
|
|
QRectF boundingRect() const override;
|
|
void setWidth(double _width);
|
|
void setActive(bool _active);
|
|
bool getActive() const
|
|
{
|
|
return active;
|
|
}
|
|
void triggerDoubleClickAction();
|
|
signals:
|
|
void clicked();
|
|
|
|
protected:
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem * /*option*/, QWidget * /*widget*/) override;
|
|
void mousePressEvent(QGraphicsSceneMouseEvent *event) override;
|
|
void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event) override;
|
|
};
|
|
|
|
class PhasesToolbar : public QObject, public QGraphicsItem
|
|
{
|
|
Q_OBJECT
|
|
Q_INTERFACES(QGraphicsItem)
|
|
private:
|
|
QList<PhaseButton *> buttonList;
|
|
PhaseButton *nextTurnButton;
|
|
double width, height, ySpacing, symbolSize;
|
|
static const int buttonCount = 12;
|
|
static const int spaceCount = 6;
|
|
static const double marginSize;
|
|
void rearrangeButtons();
|
|
|
|
public:
|
|
explicit PhasesToolbar(QGraphicsItem *parent = nullptr);
|
|
QRectF boundingRect() const override;
|
|
void retranslateUi();
|
|
void setHeight(double _height);
|
|
double getWidth() const
|
|
{
|
|
return width;
|
|
}
|
|
int phaseCount() const
|
|
{
|
|
return buttonList.size();
|
|
}
|
|
QString getLongPhaseName(int phase) const;
|
|
public slots:
|
|
void setActivePhase(int phase);
|
|
void triggerPhaseAction(int phase);
|
|
private slots:
|
|
void phaseButtonClicked();
|
|
void actNextTurn();
|
|
void actUntapAll();
|
|
void actDrawCard();
|
|
signals:
|
|
void sendGameCommand(const ::google::protobuf::Message &command, int playerId);
|
|
|
|
protected:
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem * /*option*/, QWidget * /*widget*/) override;
|
|
};
|
|
|
|
#endif
|