实施基于高级混乱的列表视图的推荐方法是什么?
What is the recommended way to implement a high level clutter based listview?
我想使用 clutter 支持 Listview
。
我需要的功能是:
- 多选
- 键盘导航
- 滚动
- 延迟加载(例如
Gtk.TreeView
具有固定高度的行)
我偶然发现了 Clutter.Model that looks a lot like Gtk.TreeModel。
是否有"high level"clutter
ui组件使用了Model
?
使用基于 clutter
的组件实现此类功能的推荐方法是什么?
edit: I found code showing how to use Clutter.Model
in the toys repository: object-store
ClutterModel
及其具体的classClutterListModel
只是GtkTreeModel
和GtkListStore
的简化版。它本身实际上毫无用处,并且可能会在 Clutter 1.24 中弃用。
没有使用 ClutterModel
的 Clutter 演员的例子;一些更高级别的工具包,如 Mx 和 Moblin/MeeGo 上网本用户体验有一些小部件显示 ClutterListModel
支持的列表。
我想使用 clutter 支持 Listview
。
我需要的功能是:
- 多选
- 键盘导航
- 滚动
- 延迟加载(例如
Gtk.TreeView
具有固定高度的行)
我偶然发现了 Clutter.Model that looks a lot like Gtk.TreeModel。
是否有"high level"clutter
ui组件使用了Model
?
使用基于 clutter
的组件实现此类功能的推荐方法是什么?
edit: I found code showing how to use
Clutter.Model
in the toys repository: object-store
ClutterModel
及其具体的classClutterListModel
只是GtkTreeModel
和GtkListStore
的简化版。它本身实际上毫无用处,并且可能会在 Clutter 1.24 中弃用。
没有使用 ClutterModel
的 Clutter 演员的例子;一些更高级别的工具包,如 Mx 和 Moblin/MeeGo 上网本用户体验有一些小部件显示 ClutterListModel
支持的列表。