19 #include <core_ui/canvas.h> 29 static constexpr
int kBorderSize = 15;
31 const QColor kGridColor{ 128, 128, 128 };
32 const QColor kPieceColor{ 32, 32, 32 };
33 const QColor kLastPieceColor{ 32, 32, 200 };
34 const QColor kWinningLineColor{ 64, 128, 64, 64 };
37 explicit BoardWidget(QWidget* parent);
39 void setGame(Game* game);
45 void paintEvent(QPaintEvent* event)
override;
46 void mousePressEvent(QMouseEvent* event)
override;
47 void mouseReleaseEvent(QMouseEvent* event)
override;
48 void leaveEvent(QEvent* event)
override;
51 int hitTest(
const QPointF& pos)
const;
54 Game* game_ =
nullptr;
55 int selected_square_ = tic_tac_toe::Board::kNoSquare;
A reusable canvas with support for logical coordinates and auto-scalling the content.
Definition: canvas.h:36
Definition: board_widget.cpp:26