I would like to use a clutter backed Listview
.
The features I need are:
Gtk.TreeView
with fixed height rows)I've stumbled upon Clutter.Model that looks a lot like Gtk.TreeModel.
Is there any "high level" clutter
ui components that uses Model
?
What is the recommended approach to have such features implemented with clutter
based components?
edit: I found code showing how to use
Clutter.Model
in the toys repository: object-store
ClutterModel
and its concrete class ClutterListModel
is just a simplified version of GtkTreeModel
and GtkListStore
. It's actually fairly useless on its own, and will likely be deprecated in Clutter 1.24.
There are no examples of Clutter actors using ClutterModel
; some higher level toolkits, like Mx and the Moblin/MeeGo netbook user experience had some widget displaying a ClutterListModel
-backed list.