]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/docs/wxPackage.html
HandlePrintClient shouldn't go above a top-level window
[wxWidgets.git] / wxPython / docs / wxPackage.html
index 8969840b2006ee31fbb3e6c60941f32813dd2d6f..82d666958c555435cde5f9ecf2ceff2a20a8181c 100644 (file)
@@ -3,7 +3,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
-<meta name="generator" content="Docutils 0.3.1: http://docutils.sourceforge.net/" />
+<meta name="generator" content="Docutils 0.3.7: http://docutils.sourceforge.net/" />
 <title>The wxPython wx Package</title>
 <meta name="author" content="Patrick K. O'Brien" />
 <meta name="author" content="Robin Dunn" />
 <title>The wxPython wx Package</title>
 <meta name="author" content="Patrick K. O'Brien" />
 <meta name="author" content="Robin Dunn" />
@@ -34,7 +34,7 @@
 </tbody>
 </table>
 <div class="contents topic" id="contents">
 </tbody>
 </table>
 <div class="contents topic" id="contents">
-<p class="topic-title"><a name="contents">Contents</a></p>
+<p class="topic-title first"><a name="contents">Contents</a></p>
 <ul class="simple">
 <li><a class="reference" href="#introduction" id="id2" name="id2">Introduction</a></li>
 <li><a class="reference" href="#why-change-anything" id="id3" name="id3">Why change anything?</a></li>
 <ul class="simple">
 <li><a class="reference" href="#introduction" id="id2" name="id2">Introduction</a></li>
 <li><a class="reference" href="#why-change-anything" id="id3" name="id3">Why change anything?</a></li>
@@ -72,7 +72,7 @@ this release.</p>
 <div class="section" id="why-change-anything">
 <h1><a class="toc-backref" href="#id3" name="why-change-anything">Why change anything?</a></h1>
 <p>This change is being made for a couple of reasons.  The first reason
 <div class="section" id="why-change-anything">
 <h1><a class="toc-backref" href="#id3" name="why-change-anything">Why change anything?</a></h1>
 <p>This change is being made for a couple of reasons.  The first reason
-is to discourage the use of <tt class="literal"><span class="pre">import</span> <span class="pre">*</span></tt>, which is a dangerous
+is to discourage the use of <tt class="docutils literal"><span class="pre">import</span> <span class="pre">*</span></tt>, which is a dangerous
 technique that can create name conflicts and bloated namespaces.</p>
 <p>The second reason is to remove what some perceive to be a &quot;wart.&quot;  For
 example, the following code is rather ugly in that the &quot;wx&quot; prefix on
 technique that can create name conflicts and bloated namespaces.</p>
 <p>The second reason is to remove what some perceive to be a &quot;wart.&quot;  For
 example, the following code is rather ugly in that the &quot;wx&quot; prefix on
@@ -164,13 +164,13 @@ replace.</p>
 <div class="section" id="where-can-i-find-example-programs-using-the-new-wx-syntax">
 <h1><a class="toc-backref" href="#id9" name="where-can-i-find-example-programs-using-the-new-wx-syntax">Where can I find example programs using the new wx syntax?</a></h1>
 <p>The wxPython demo application and most of the sample apps have been
 <div class="section" id="where-can-i-find-example-programs-using-the-new-wx-syntax">
 <h1><a class="toc-backref" href="#id9" name="where-can-i-find-example-programs-using-the-new-wx-syntax">Where can I find example programs using the new wx syntax?</a></h1>
 <p>The wxPython demo application and most of the sample apps have been
-converted to use the new <tt class="literal"><span class="pre">import</span> <span class="pre">wx</span></tt> style of programming with
+converted to use the new <tt class="docutils literal"><span class="pre">import</span> <span class="pre">wx</span></tt> style of programming with
 wxPython, so there are lots of examples to look at and to play with.
 wxPython, so there are lots of examples to look at and to play with.
-Here is one of them, it is the <tt class="literal"><span class="pre">simple</span></tt> sample.</p>
+Here is one of them, it is the <tt class="docutils literal"><span class="pre">simple</span></tt> sample.</p>
 <pre class="literal-block">
 #----------------------------------------------------------------------
 <pre class="literal-block">
 #----------------------------------------------------------------------
-# A very simple wxPython example.  Just a wxFrame, wxPanel,
-# wxStaticText, wxButton, and a wxBoxSizer, but it shows the basic
+# A very simple wxPython example.  Just a wx.Frame, wx.Panel,
+# wx.StaticText, wx.Button, and a wx.BoxSizer, but it shows the basic
 # structure of any wxPython application.
 #----------------------------------------------------------------------
 
 # structure of any wxPython application.
 #----------------------------------------------------------------------
 
@@ -244,11 +244,14 @@ class MyFrame(wx.Frame):
 class MyApp(wx.App):
     def OnInit(self):
         frame = MyFrame(None, &quot;Simple wxPython App&quot;)
 class MyApp(wx.App):
     def OnInit(self):
         frame = MyFrame(None, &quot;Simple wxPython App&quot;)
-        frame.Show(True)
         self.SetTopWindow(frame)
         self.SetTopWindow(frame)
+
+        print &quot;Print statements go to this stdout window by default.&quot;
+
+        frame.Show(True)
         return True
         
         return True
         
-app = MyApp(True)
+app = MyApp(redirect=True)
 app.MainLoop()
 
 
 app.MainLoop()