| 52 | void SetGrid(int cols, int rows) { mGrid->SetGrid(cols, rows); } |
| 53 | void SetLabel(int row, std::string label); |
| 54 | void Set(int col, int row, float value) |
| 55 | { |
| 56 | mGrid->SetVal(col, row, value, !K(notifyListener)); |
| 57 | UpdateLights(); |
| 58 | } |
| 59 | float Get(int col, int row) { return mGrid->GetVal(col, row); } |
| 60 | void HighlightCell(int col, int row, double time, double duration, int colorIndex); |
| 61 | void SetDivision(int steps) { return mGrid->SetMajorColSize(steps); } |