| 103 | } |
| 104 | |
| 105 | void unexplored(QPainter &painter, int x, int y, bool selected) |
| 106 | { |
| 107 | using namespace traditional; |
| 108 | if (selected) |
| 109 | { |
| 110 | painter.setBrush(colors::gold); |
| 111 | } |
| 112 | else |
| 113 | { |
| 114 | painter.setBrush(colors::white); |
| 115 | } |
| 116 | |
| 117 | painter.drawEllipse(x - HALF_UNDET_WIDTH, y, UNDET_WIDTH, UNDET_WIDTH); |
| 118 | } |
| 119 | |
| 120 | void skipped(QPainter &painter, int x, int y, bool selected) |
| 121 | { |
no outgoing calls
no test coverage detected