Property definitions

gtk $ GtkListBoxRow :: defaultinit
# A single row of a `GtkListBox`
extern class GtkListBoxRow `{ GtkListBoxRow* `}
	super GtkBin

	new `{ return (GtkListBoxRow*)gtk_list_box_row_new(); `}

	fun header: GtkWidget `{ return gtk_list_box_row_get_header(self); `}

	fun header=(header: GtkWidget) `{ gtk_list_box_row_set_header(self, header); `}

	fun index: Int `{ return gtk_list_box_row_get_index(self); `}

	fun changed `{ gtk_list_box_row_changed(self); `}
end
lib/gtk/v3_10.nit:71,1--84,3