25.6. 其它的 GUI
****************

Python 可用的主要跨平台（Windows，Mac OS X，类Unix）GUI 工具：

也參考:

  PyGObject
     PyGObject provides introspection bindings for C libraries using
     GObject.  One of these libraries is the GTK+ 3 widget set. GTK+
     comes with many more widgets than Tkinter provides.  An online
     Python GTK+ 3 Tutorial is available.

  PyGTK
     PyGTK 提供了对较旧版本的库 GTK+ 2 的绑定。 它使用面向对象接口，比
     C 库的抽象层级略高。 此外也有对 GNOME 的绑定。 请参阅在线 教程。

  PyQt
     PyQt 是一个针对 Qt 工具集通过 **sip** 包装的绑定。 Qt 是一个庞大
     的 C++ GUI 应用开发框架，同时适用于 Unix, Windows 和 Mac OS X。
     **sip** 是一个用于为 C++ 库生成 Python 类绑定的库，它是针对
     Python 特别设计的。

  PySide
     PySide is a newer binding to the Qt toolkit, provided by Nokia.
     Compared to PyQt, its licensing scheme is friendlier to non-open
     source applications.

  wxPython
     wxPython 是一个针对 Python 的跨平台 GUI 工具集，它基于热门的
     wxWidgets (原名 wxWindows) C++ 工具集进行构建。 它为 Windows, Mac
     OS X 和 Unix 系统上的应用提供了原生的外观效果，在可能的情况下尽量
     使用各平台的原生可视化部件。 （在类 Unix 系统上使用 GTK+）。 除了
     包含庞大的可视化部件集，wxPython 还提供了许多类用于在线文档和上下
     文感知帮助、打印、HTML 视图、低层级设备上下文绘图、拖放操作、系统
     剪贴板访问、基于 XML 的资源格式等等，并且包含一个不断增长的用户贡
     献模块库。

PyGTK, PyQt, and wxPython, all have a modern look and feel and more
widgets than Tkinter. In addition, there are many other GUI toolkits
for Python, both cross-platform, and platform-specific. See the GUI
Programming page in the Python Wiki for a much more complete list, and
also for links to documents where the different GUI toolkits are
compared.
