[Python-checkins] r81563 - python/trunk/Doc/faq/gui.rst

andrew.kuchling python-checkins at python.org
Thu May 27 15:30:09 CEST 2010


Author: andrew.kuchling
Date: Thu May 27 15:30:09 2010
New Revision: 81563

Log:
Remove top-level 'General Questions' section, pushing up the questions it contains

Modified:
   python/trunk/Doc/faq/gui.rst

Modified: python/trunk/Doc/faq/gui.rst
==============================================================================
--- python/trunk/Doc/faq/gui.rst	(original)
+++ python/trunk/Doc/faq/gui.rst	Thu May 27 15:30:09 2010
@@ -6,18 +6,15 @@
 
 .. contents::
 
-General GUI Questions
-=====================
-
 What platform-independent GUI toolkits exist for Python?
---------------------------------------------------------
+========================================================
 
 Depending on what platform(s) you are aiming at, there are several.
 
 .. XXX check links
 
 Tkinter
-'''''''
+-------
 
 Standard builds of Python include an object-oriented interface to the Tcl/Tk
 widget set, called Tkinter.  This is probably the easiest to install and use.
@@ -26,7 +23,7 @@
 Unix platforms.
 
 wxWidgets
-'''''''''
+---------
 
 wxWidgets (http://www.wxwidgets.org) is a free, portable GUI class
 library written in C++ that provides a native look and feel on a
@@ -46,7 +43,7 @@
 
 
 Qt
-'''
+---
 
 There are bindings available for the Qt toolkit (`PyQt
 <http://www.riverbankcomputing.co.uk/software/pyqt/>`_) and for KDE (`PyKDE <http://www.riverbankcomputing.co.uk/software/pykde/intro>`__).  If
@@ -57,13 +54,13 @@
 <http://www.trolltech.com>`_.
 
 Gtk+
-''''
+----
 
 PyGtk bindings for the `Gtk+ toolkit <http://www.gtk.org>`_ have been
 implemented by James Henstridge; see <http://www.pygtk.org>.
 
 FLTK
-''''
+----
 
 Python bindings for `the FLTK toolkit <http://www.fltk.org>`_, a simple yet
 powerful and mature cross-platform windowing system, are available from `the
@@ -71,7 +68,7 @@
 
 
 FOX
-'''
+----
 
 A wrapper for `the FOX toolkit <http://www.fox-toolkit.org/>`_ called `FXpy
 <http://fxpy.sourceforge.net/>`_ is available.  FOX supports both Unix variants
@@ -79,13 +76,13 @@
 
 
 OpenGL
-''''''
+------
 
 For OpenGL bindings, see `PyOpenGL <http://pyopengl.sourceforge.net>`_.
 
 
 What platform-specific GUI toolkits exist for Python?
------------------------------------------------------
+========================================================
 
 `The Mac port <http://python.org/download/mac>`_ by Jack Jansen has a rich and
 ever-growing set of modules that support the native Mac toolbox calls.  The port


More information about the Python-checkins mailing list