Method
GtkCellLayoutset_cell_data_func
deprecated: 4.10
Declaration [src]
void
gtk_cell_layout_set_cell_data_func (
  GtkCellLayout* cell_layout,
  GtkCellRenderer* cell,
  GtkCellLayoutDataFunc func,
  gpointer func_data,
  GDestroyNotify destroy
)
Description [src]
Sets the GtkCellLayoutDataFunc to use for cell_layout.
This function is used instead of the standard attributes mapping
for setting the column value, and should set the value of cell_layout’s
cell renderer(s) as appropriate.
func may be NULL to remove a previously set function.
Deprecated since: 4.10
Please do not use it in newly written code.
Parameters
- cell
- 
            Type: GtkCellRendererA GtkCellRendererThe data is owned by the caller of the method. 
- func
- 
            Type: GtkCellLayoutDataFuncThe GtkCellLayoutDataFunc to use.The argument can be NULL.
- func_data
- 
            Type: gpointerUser data for func.The argument can be NULL.The data is owned by the caller of the method. 
- destroy
- 
            Type: GDestroyNotifyDestroy notify for func_data.