![]() | ![]() | ![]() | ![]() |
#define E_TABLE_MODEL_TYPE typedef ETableModel; int e_table_model_column_count (ETableModel *e_table_model); const char* e_table_model_column_name (ETableModel *e_table_model, int col); int e_table_model_row_count (ETableModel *e_table_model); void* e_table_model_value_at (ETableModel *e_table_model, int col, int row); void e_table_model_set_value_at (ETableModel *e_table_model, int col, int row, const void *value); gboolean e_table_model_is_cell_editable (ETableModel *e_table_model, int col, int row); void e_table_model_append_row (ETableModel *e_table_model, ETableModel *source, int row); const char* e_table_model_row_sort_group (ETableModel *e_table_model, int row); gboolean e_table_model_has_sort_group (ETableModel *e_table_model); void* e_table_model_duplicate_value (ETableModel *e_table_model, int col, const void *value); void e_table_model_free_value (ETableModel *e_table_model, int col, void *value); void* e_table_model_initialize_value (ETableModel *e_table_model, int col); gboolean e_table_model_value_is_empty (ETableModel *e_table_model, int col, const void *value); char* e_table_model_value_to_string (ETableModel *e_table_model, int col, const void *value); void e_table_model_pre_change (ETableModel *e_table_model); void e_table_model_changed (ETableModel *e_table_model); void e_table_model_row_changed (ETableModel *e_table_model, int row); void e_table_model_cell_changed (ETableModel *e_table_model, int col, int row); void e_table_model_row_inserted (ETableModel *e_table_model, int row); void e_table_model_row_deleted (ETableModel *e_table_model, int row);
GtkObject +----ETableModel +----ETableOne +----ETableSimple +----ETableSubset +----ETreeModel +----GalDefineViewsModel
"model-changed" void user_function (ETableModel *etablemodel, gpointer user_data); "model-pre-change" void user_function (ETableModel *etablemodel, gpointer user_data); "model-row-changed" void user_function (ETableModel *etablemodel, gint arg1, gpointer user_data); "model-cell-changed" void user_function (ETableModel *etablemodel, gint arg1, gint arg2, gpointer user_data); "model-row-inserted" void user_function (ETableModel *etablemodel, gint arg1, gpointer user_data); "model-row-deleted" void user_function (ETableModel *etablemodel, gint arg1, gpointer user_data);
int e_table_model_column_count (ETableModel *e_table_model);
e_table_model : | The e-table-model to operate on |
Returns : | the number of columns in the table model. |
const char* e_table_model_column_name (ETableModel *e_table_model, int col);
e_table_model : | |
col : | |
Returns : |
|
int e_table_model_row_count (ETableModel *e_table_model);
e_table_model : | the e-table-model to operate on |
Returns : | the number of rows in the Table model. |
void* e_table_model_value_at (ETableModel *e_table_model, int col, int row);
e_table_model : | |
col : | |
row : |
|
void e_table_model_set_value_at (ETableModel *e_table_model, int col, int row, const void *value);
This function instructs the model to store the value in data
in the
the e_table_model
at column col
and row row
. The data
typically
comes from one of the ECell rendering objects.
There should be an agreement between the Table Model and the user of this function about the data being stored. Typically it will be a pointer to a set of data, or a datum that fits inside a void *.
e_table_model : | the table model to operate on. |
col : | the column where the data will be stored in the model. |
row : | the row where the data will be stored in the model. |
value : | the data to be stored. |
gboolean e_table_model_is_cell_editable (ETableModel *e_table_model, int col, int row);
e_table_model : | the table model to query. |
col : | column to query. |
row : | row to query. |
Returns : | TRUE if the cell in |
void e_table_model_append_row (ETableModel *e_table_model, ETableModel *source, int row);
e_table_model : | the table model to append the a row to. |
source : | |
row : |
const char* e_table_model_row_sort_group (ETableModel *e_table_model, int row);
e_table_model : | |
row : | |
Returns : |
|
gboolean e_table_model_has_sort_group (ETableModel *e_table_model);
e_table_model : | |
Returns : |
|
void* e_table_model_duplicate_value (ETableModel *e_table_model, int col, const void *value);
e_table_model : | |
col : | |
value : |
|
void e_table_model_free_value (ETableModel *e_table_model, int col, void *value);
e_table_model : | |
col : | |
value : |
|
void* e_table_model_initialize_value (ETableModel *e_table_model, int col);
e_table_model : | |
col : |
|
gboolean e_table_model_value_is_empty (ETableModel *e_table_model, int col, const void *value);
e_table_model : | |
col : | |
value : | |
Returns : |
|
char* e_table_model_value_to_string (ETableModel *e_table_model, int col, const void *value);
e_table_model : | |
col : | |
value : | |
Returns : |
|
void e_table_model_pre_change (ETableModel *e_table_model);
e_table_model : |
|
void e_table_model_changed (ETableModel *e_table_model);
Use this function to notify any views of this table model that
the contents of the table model have changed. This will emit
the signal "model_changed" on the e_table_model
object.
It is preferable to use the e_table_model_row_changed()
and
the e_table_model_cell_changed()
to notify of smaller changes
than to invalidate the entire model, as the views might have
ways of caching the information they render from the model.
e_table_model : | the table model to notify of the change |
void e_table_model_row_changed (ETableModel *e_table_model, int row);
Use this function to notify any views of the table model that
the contents of row row
have changed in model. This function
will emit the "model_row_changed" signal on the e_table_model
object
e_table_model : | the table model to notify of the change |
row : | the row that was changed in the model. |
void e_table_model_cell_changed (ETableModel *e_table_model, int col, int row);
Use this function to notify any views of the table model that
contents of the cell at col
,row
has changed. This will emit
the "model_cell_changed" signal on the e_table_model
object
e_table_model : | the table model to notify of the change |
col : | the column. |
row : | the row |
void e_table_model_row_inserted (ETableModel *e_table_model, int row);
Use this function to notify any views of the table model that the
row row
has been inserted into the model. This function will emit
the "model_rows_inserted" signal on the e_table_model
object
e_table_model : | the table model to notify of the change |
row : | the row that was inserted into the model. |
void e_table_model_row_deleted (ETableModel *e_table_model, int row);
Use this function to notify any views of the table model that the
row row
has been deleted from the model. This function will emit
the "model_rows_deleted" signal on the e_table_model
object
e_table_model : | the table model to notify of the change |
row : | the row that was deleted |
void user_function (ETableModel *etablemodel, gpointer user_data);
etablemodel : | the object which received the signal. |
user_data : | user data set when the signal handler was connected. |
void user_function (ETableModel *etablemodel, gpointer user_data);
etablemodel : | the object which received the signal. |
user_data : | user data set when the signal handler was connected. |
void user_function (ETableModel *etablemodel, gint arg1, gpointer user_data);
etablemodel : | the object which received the signal. |
arg1 : | |
user_data : | user data set when the signal handler was connected. |
void user_function (ETableModel *etablemodel, gint arg1, gint arg2, gpointer user_data);
etablemodel : | the object which received the signal. |
arg1 : | |
arg2 : | |
user_data : | user data set when the signal handler was connected. |
void user_function (ETableModel *etablemodel, gint arg1, gpointer user_data);
etablemodel : | the object which received the signal. |
arg1 : | |
user_data : | user data set when the signal handler was connected. |
void user_function (ETableModel *etablemodel, gint arg1, gpointer user_data);
etablemodel : | the object which received the signal. |
arg1 : | |
user_data : | user data set when the signal handler was connected. |
<<< ETableClickToAdd | ETableSubsetVariable >>> |