| 87 | } |
| 88 | |
| 89 | void branch(QPainter &painter, int x, int y, bool selected) |
| 90 | { |
| 91 | |
| 92 | using namespace traditional; |
| 93 | if (selected) |
| 94 | { |
| 95 | painter.setBrush(colors::gold); |
| 96 | } |
| 97 | else |
| 98 | { |
| 99 | painter.setBrush(colors::blue); |
| 100 | } |
| 101 | |
| 102 | painter.drawEllipse(x - HALF_BRANCH_W, y, BRANCH_WIDTH, BRANCH_WIDTH); |
| 103 | } |
| 104 | |
| 105 | void unexplored(QPainter &painter, int x, int y, bool selected) |
| 106 | { |
no outgoing calls
no test coverage detected