From 50f1724dac9a4c2f469c5270979d2ad865b3bdf9 Mon Sep 17 00:00:00 2001 From: Ajinkya Date: Tue, 1 May 2012 17:45:09 +0530 Subject: [PATCH] stylized according to the guide style guide --- docs/scenarios/gui.rst | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/scenarios/gui.rst b/docs/scenarios/gui.rst index 90d882a..ff945fb 100644 --- a/docs/scenarios/gui.rst +++ b/docs/scenarios/gui.rst @@ -3,38 +3,38 @@ GUI Applications Qt -:: +-- Qt is a cross-platform application framework that is widely used for developing software with a GUI but can also be used for non-GUI applications. PySide ------- +~~~~~~ http://developer.qt.nokia.com/wiki/PySideDownloads/ PyQt ----- +~~~~ .. note:: If your software does not fully comply with the GPL you will need a commercial license! http://www.riverbankcomputing.co.uk/software/pyqt/download Cocoa -::::: +----- .. note:: The Cocoa framework is only available on Mac OSX. Don't pick this if you're writing a cross-platform application! PyObjC ------- +~~~~~~ .. note:: Only available on Mac OSX. Don't pick this if you're writing a cross-platform application. wxPython -:::::::: +-------- Install (Stable) ----------------- +~~~~~~~~~~~~~~~~ *Go to http://www.wxpython.org/download.php#stable and download the appropriate package for your OS.* Gtk -::: +--- PyGTK provides Python bindings for the GTK+ toolkit. Like the GTK+ library itself, it is currently licensed under the GNU LGPL. It is worth noting that PyGTK only currenty supports the Gtk-2.X API (NOT Gtk-3.0). It is currently @@ -42,7 +42,7 @@ recommended that PyGTK is not used for new projects and existing applications be ported from PyGTK to PyGObject. Tk -:: +-- Tkinter is a thin object-oriented layer on top of Tcl/Tk. It has the advantage of being included with the Python standard library, making it the most convenient and compatible toolkit to program with.