Package ch.bailu.gtk.gtk
Interface CellLayout.OnCellLayoutDataFunc
- Enclosing class:
- CellLayout
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonCellLayoutDataFunc(CallbackHandler __self, CellLayout cell_layout, CellRenderer cell, TreeModel tree_model, TreeIter iter, Pointer data) A function which should set the value of @cell_layout’s cell renderer(s)
as appropriate.
-
Method Details
-
onCellLayoutDataFunc
void onCellLayoutDataFunc(CallbackHandler __self, @Nonnull CellLayout cell_layout, @Nonnull CellRenderer cell, @Nonnull TreeModel tree_model, @Nonnull TreeIter iter, @Nullable Pointer data) A function which should set the value of @cell_layout’s cell renderer(s)
as appropriate.- Parameters:
cell_layout- a `GtkCellLayout`cell- the cell renderer whose value is to be settree_model- the modeliter- a `GtkTreeIter` indicating the row to set the value fordata- user data passed to gtk_cell_layout_set_cell_data_func()
-