|
ObjectivelyMVC 0.1.0
Object oriented MVC framework for OpenGL, SDL2 and GNU C
|
The TableView data source protocol. More...
#include <TableView.h>
Data Fields | |
| size_t(* | numberOfRows )(const TableView *tableView) |
| ident | self |
| The data source self-reference. More... | |
| ident(* | valueForColumnAndRow )(const TableView *tableView, const TableColumn *column, size_t row) |
| Called by the TableView for the associated value of a cell. More... | |
The TableView data source protocol.
Definition at line 56 of file TableView.h.
| size_t(* TableViewDataSource::numberOfRows) (const TableView *tableView) |
| tableView | The TableView. |
Definition at line 67 of file TableView.h.
| ident TableViewDataSource::self |
The data source self-reference.
Definition at line 61 of file TableView.h.
| ident(* TableViewDataSource::valueForColumnAndRow) (const TableView *tableView, const TableColumn *column, size_t row) |
Called by the TableView for the associated value of a cell.
| tableView | The TableView. |
| colum | The Column. |
| row | The row number. |
Definition at line 76 of file TableView.h.