Python GUI 兼容 GTK2 和 GTK3

发布于 2024-12-19 02:37:53 字数 437 浏览 1 评论 0原文

我想用 GTK+ 在 python2 中创建一个图形界面。

现在我使用 gobject-introspection 来使用 GTK3,但如果可能的话,我也希望与 GTK2 兼容。

#!/usr/bin/python2
try:
    from gi.repository import Gtk
except:
    try:
        import gtk as Gtk
    except:
        print("You need GTK")

我在窗口中使用了 Grid,但 GTK2 中似乎不存在 Gtk.Grid 。另一方面,Gtk.Table 存在于两个版本中。

是否值得尝试使应用程序兼容两个版本的 GTK(以及如何?),否则我将不得不编写几乎两倍的代码?

谢谢

I'd like to create a graphical interface in python2 with GTK+.

For now I'm using gobject-introspection to use GTK3 but I'd like, if possible, to be compatible with GTK2 as well.

#!/usr/bin/python2
try:
    from gi.repository import Gtk
except:
    try:
        import gtk as Gtk
    except:
        print("You need GTK")

I was using a Grid for my window but it seems Gtk.Grid doesn't exist in GTK2. On the other hand Gtk.Table exists in both version.

Is it worth the try to make an app compatible for both version of GTK (and how ?) or I'll have to write almost twice more code ?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浪推晚风 2024-12-26 02:37:53

基本上,选择可以归结为:

  1. 直接为 GTK2 编写(GTK3 向后兼容)
  2. 为 GTK2 中不可用的那些小部件编写 UI 部分的替代实现。

在第二种情况下,如果您在界面和逻辑之间使用良好的分离,则无需编写“两倍”的代码,只需重新实现部分 UI 即可。

Substantially the choice boils down to:

  1. Write for GTK2 directly (GTK3 is backward compatible)
  2. Write alternate implementations of parts of your UI for those widgets that are not available in GTK2.

In the second case, if you use good separation between your interface and your logic you won't need to write "twice as much" code, just reimplementing parts of the UI.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文