View specifications.
| 41 | |
| 42 | // View specifications. |
| 43 | void add(Column* column, bool sort = false) { |
| 44 | _columns.push_back(column); |
| 45 | _sort.push_back(sort); |
| 46 | } |
| 47 | void width(int width) { _width = width; } |
| 48 | void leftMargin(int margin) { _left_margin = margin; } |
| 49 | void colorHeader(Color& c) { |
nothing calls this directly
no outgoing calls
no test coverage detected