| 54 | } |
| 55 | |
| 56 | GridTextState CANDataGrid::geCellTextState(int x, int y) |
| 57 | { |
| 58 | if (x < 0) return GridTextState::NORMAL; |
| 59 | if (x > 7) return GridTextState::NORMAL; |
| 60 | if (y < 0) return GridTextState::NORMAL; |
| 61 | if (y > 7) return GridTextState::NORMAL; |
| 62 | return textStates[x][y]; |
| 63 | } |
| 64 | |
| 65 | void CANDataGrid::paintEvent(QPaintEvent *event) |
| 66 | { |
nothing calls this directly
no outgoing calls
no test coverage detected