clutter-gtk 和 clutter-gsk 的 Python 绑定
我正在使用 python,想要在混乱阶段嵌入 gtk3 小部件。但是,似乎 pyclutter-gtk 和 pyclutter-gsk 已停止一段时间。我们可以在 python 中使用任何替代绑定吗? 我尝试谷歌但没有运气。只有一个项目(http://code.google.com/p/pyclutter-widgets/)看起来很有趣,但它已经一年不活跃了......
I'm using python and want to embed gtk3 widgets in clutter stage. However, it seems pyclutter-gtk and pyclutter-gsk has been stopped for a while. Is there any alternative binding that we can use in python?
I tried google but with no luck. There's only one project(http://code.google.com/p/pyclutter-widgets/) seems interesting but it's inactive for a year...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
gtk3 和 clutter 的所有 python 绑定都已移至基于内省的 pygobject;您应该能够通过简单地执行以下操作来使用 pygobject >= 2.30 中的 Clutter-Gtk 和 Clutter-Gst:
from gi.repository import GtkClutter
您可以按照 IntrospectionPorting 的 Gnome wiki 条目。
All python bindings for gtk3 and clutter have been moved to the introspection-based pygobject; you should be able to use Clutter-Gtk and Clutter-Gst from pygobject >= 2.30 by simply doing:
from gi.repository import GtkClutter
You can follow the documentation on the Gnome wiki entry for IntrospectionPorting.
以下是如何使用 Clutter-gtk 1.2.x 和 python-3.x 将 GtkClutter 阶段和滚动Actor 添加到 Gtk.HBox
Here's how to add a GtkClutter stage and scrollActor to a Gtk.HBox with Clutter-gtk 1.2.x and python-3.x