如何使用滚动条滚动 Clutter.ScrollActor?

How can I scroll a Clutter.ScrollActor with a scrollbar?

我有一个 GtkClutter.Embed,其中包含杂乱演员的完整图表。最重要的 actor 是 container_actor,它包含可变数量的 actor(用 FlowLayout 布局),可能会溢出分配给 parent 嵌入的高度。

在某些时候,container_actor 登台 并成为唯一出现的演员(与其 children 一起)。

此时我希望能够滚动浏览 container_actor 的内容。

使我的嵌入实现 Gtk.Scrollable gives the ability to have a scrollbar. Also I've noticed that Clutter proposes a Clutter.ScrollActor

使用这两个 类 是推荐的方法吗?

或者我需要使用工具 Gtk.Scrollable 并在 vadjustment.value_changed 上手动移动我的 container_actor 吗?

edit: here's a sample in c for ScrollActor

ClutterScrollActorGtkScrollableGtkAdjustment 一无所知,因此您将不得不手动实现滚动。没有必要实现 GtkScrollable — 你只需要一个 GtkScrollbar 小部件,一个 GtkAdjustment 和一些连接到 GtkAdjustment::value-changed 信号的代码来确定你想要到达的点滚动 ClutterScrollActor.

的内容