]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/doxygen/overviews/python.h
Further refine of #15226: wxRichTextCtrl: Implement setting properties with undo...
[wxWidgets.git] / docs / doxygen / overviews / python.h
index 0517b04dcb6c96f709d3949825267b22ae2cc888..cc3b132a36626b777d37970f60d4d2ff391c0193 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        python.h
 // Purpose:     topic overview
 // Author:      wxWidgets team
 // Name:        python.h
 // Purpose:     topic overview
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 
 @page overview_python wxPython Overview
 
 
 @page overview_python wxPython Overview
 
+@tableofcontents
+
 This topic was written by Robin Dunn, author of the
 <a href="http://www.python.org/">wxPython</a> wrapper.
 
 This topic was written by Robin Dunn, author of the
 <a href="http://www.python.org/">wxPython</a> wrapper.
 
-@li @ref overview_python_what
-@li @ref overview_python_why
-@li @ref overview_python_othergui
-@li @ref overview_python_using
-@li @ref overview_python_classes
-@li @ref overview_python_help
-
-
-<hr>
-
-
 @section overview_python_what What is wxPython?
 
 wxPython is a blending of the wxWidgets GUI classes and the Python programming
 @section overview_python_what What is wxPython?
 
 wxPython is a blending of the wxWidgets GUI classes and the Python programming
@@ -206,8 +196,6 @@ python DialogUnits.py
 62:         frame = MyFrame(NULL, -1, "This is a test")
 63:         frame.Show(true)
 64:
 62:         frame = MyFrame(NULL, -1, "This is a test")
 63:         frame.Show(true)
 64:
-65:         # Tell wxWidgets that this is our main window
-66:         self.SetTopWindow(frame)
 67:
 68:         # Return a success flag
 69:         return true
 67:
 68:         # Return a success flag
 69:         return true
@@ -257,8 +245,7 @@ Destroy() method as shown on line 36.
 
 Just like wxWidgets in C++, wxPython apps need to create a class derived from
 @c wxApp (line 56) that implements a method named @c OnInit, (line 59.) This
 
 Just like wxWidgets in C++, wxPython apps need to create a class derived from
 @c wxApp (line 56) that implements a method named @c OnInit, (line 59.) This
-method should create the application's main window (line 62) and use
-wxApp.SetTopWindow() (line 66) to inform wxWidgets about it.
+method should create the application's main window (line 62) and show it.
 
 And finally, at line 72 an instance of the application class is created. At
 this point wxPython finishes initializing itself, and calls the @c OnInit
 
 And finally, at line 72 an instance of the application class is created. At
 this point wxPython finishes initializing itself, and calls the @c OnInit
@@ -469,4 +456,3 @@ Or you can send mail directly to the list using this address:
 wxpython-users@lists.wxwidgets.org
 
 */
 wxpython-users@lists.wxwidgets.org
 
 */
-