From 90805926b75bcdc8466b1736df4413c7581cdc30 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 26 Mar 2004 21:27:23 +0000 Subject: [PATCH] Other doc updates git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26380 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/docs/BUILD.html | 7 +- wxPython/docs/CHANGES.html | 21 +++- wxPython/docs/CHANGES.txt | 19 ++-- wxPython/docs/INSTALL.html | 4 +- wxPython/docs/MigrationGuide.html | 133 ++++++++++++++++++++++++-- wxPython/docs/PyManual.html | 12 +-- wxPython/docs/PyManual.txt | 10 +- wxPython/docs/README.html | 2 +- wxPython/docs/screenshots/PyShell.png | Bin 0 -> 35825 bytes wxPython/docs/wxPackage.html | 96 ++++++++++++++++++- wxPython/docs/wxPackage.txt | 14 +-- wxPython/docs/wxPythonManual.html | 2 +- wxPython/docs/wxPythonManual.txt | 48 +++++----- wxPython/samples/simple/simple.py | 14 ++- 14 files changed, 305 insertions(+), 77 deletions(-) create mode 100644 wxPython/docs/screenshots/PyShell.png diff --git a/wxPython/docs/BUILD.html b/wxPython/docs/BUILD.html index 277c698c51..8134625b8e 100644 --- a/wxPython/docs/BUILD.html +++ b/wxPython/docs/BUILD.html @@ -244,8 +244,9 @@ wxUSE_AFM_FOR_POSTSCRIPT 0 wxUSE_DISPLAY 1 -
  • Make a %WXWIN%BIN directory and add it to the PATH. My build -scripts will copy the wxWidgets DLLs there.

    +
  • Make sure that %WXWIN%libvc_dll directory is on the PATH. The +wxWidgets DLLs will end up there as part of the build and so you'll +need it on the PATH for them to be found at runtime.

  • Change to the %WXWIN%buildmsw directory and copy my build scripts there.

    @@ -325,7 +326,7 @@ python demo.py diff --git a/wxPython/docs/CHANGES.html b/wxPython/docs/CHANGES.html index ecdf638c5b..cb93d3d182 100644 --- a/wxPython/docs/CHANGES.html +++ b/wxPython/docs/CHANGES.html @@ -11,7 +11,7 @@

    CHANGES.txt for wxPython

    -

    2.5.1.1

    +

    2.5.1.2

    (See also the MigrationGuide.txt file for details about some of the big changes that have happened in this release and how you should adapt your code.)

    @@ -73,6 +73,23 @@ MacPrintFile, MacNewFile, and MacReopenApp.

    Added wx.PlatformInfo which is a tuple containing strings that describe the platform and build options of wxPython. See the MigrationGuide for more details.

    +

    Created a new extension module "activex" from Lindsay Mathieson's +newest wxActiveX class. (The existing iewin module used an older +version of this code, but only exposed the wxIEHtmlWin class.) This +new module will (in theory ;-) ) allow you to host arbitrary ActiveX +controls in a wx.Window, without requiring the use of the win32com +and other PyWin32 modules! This should eliminate the cronic problems +that have resulted from minor mismatches in how PyWin32 handles the +GIL and tstate when making callbacks, etc. The older iewin module +will be left in this release as the new stuff is not fully backwards +compatible, but you should migrate your code to the new IEHtmlWindow +in wx.lib.iewin, so the old one can be eventually removed. +Additionally, I've always considered that the wx.lib.activexwrapper +module is an ugly hack that I only included in the lib because I +couldn't figure out anything better. Well now we have something that, +if it isn't already, has the potential to be better. So consider +migrating away from using activexwrapper as well. Please see the +MigrationGuide for more details on using the new module.

    2.4.2.4

    @@ -1227,7 +1244,7 @@ version segfault shortly after starting up.

    diff --git a/wxPython/docs/CHANGES.txt b/wxPython/docs/CHANGES.txt index b1d028aced..6c92a79c9c 100644 --- a/wxPython/docs/CHANGES.txt +++ b/wxPython/docs/CHANGES.txt @@ -1,7 +1,7 @@ CHANGES.txt for wxPython ===================================================================== -2.5.1.1 +2.5.1.2 ------- (See also the MigrationGuide.txt file for details about some of the @@ -96,15 +96,14 @@ and other PyWin32 modules! This should eliminate the cronic problems that have resulted from minor mismatches in how PyWin32 handles the GIL and tstate when making callbacks, etc. The older iewin module will be left in this release as the new stuff is not fully backwards -compatible, but you should migrate your code to the wx.activex version -of IEHtmlWindow, or the implementation in wx.lib.iewin, so the old one -can be eventually removed. Additionally, I've always considered that -the wx.lib.activexwrapper module is an ugly hack that I only included -in the lib because I couldn't figure out anything better. Well now we -have something that, if it isn't already, has the potential to be -better. So consider migrating away from using activexwrapper as well. -Please see the MigrationGuide for more details on using the new -module. +compatible, but you should migrate your code to the new IEHtmlWindow +in wx.lib.iewin, so the old one can be eventually removed. +Additionally, I've always considered that the wx.lib.activexwrapper +module is an ugly hack that I only included in the lib because I +couldn't figure out anything better. Well now we have something that, +if it isn't already, has the potential to be better. So consider +migrating away from using activexwrapper as well. Please see the +MigrationGuide for more details on using the new module. .. _wxActiveX: http://members.optusnet.com.au/~blackpaw1/wxactivex.html diff --git a/wxPython/docs/INSTALL.html b/wxPython/docs/INSTALL.html index 983cd11505..0aa8a246c2 100644 --- a/wxPython/docs/INSTALL.html +++ b/wxPython/docs/INSTALL.html @@ -128,7 +128,7 @@ python setup.py install found at runtime by the extension modules without requiring that they be installed on the PATH:

    -copy %WXWIN%\BIN\wx*h_*.dll c:\Python23\Lib\site-pacakges\wx
    +copy %WXWIN%\lib\vc_dll\wx*h_*.dll c:\Python23\Lib\site-pacakges\wx
     
  • @@ -136,7 +136,7 @@ copy %WXWIN%\BIN\wx*h_*.dll c:\Python23\Lib\site-pacakges\wx diff --git a/wxPython/docs/MigrationGuide.html b/wxPython/docs/MigrationGuide.html index 0c01a56e5d..c2e13cbea7 100644 --- a/wxPython/docs/MigrationGuide.html +++ b/wxPython/docs/MigrationGuide.html @@ -393,6 +393,107 @@ way. If there are any other platform/toolkit/build flags that make sense to add to this tuple please let me know.

    BTW, wx.Platform will probably be deprecated in the future.

    +
    +

    ActiveX

    +

    Lindsay Mathieson's newest wxActiveX class has been wrapped into a new +extension module called wx.activex. It is very generic and dynamic +and should allow hosting of arbitray ActiveX controls within your +wxPython apps. So far I've tested it with IE, PDF, and Flash +controls, (and there are new samples in the demo and also library +modules supporting these.)

    +

    The new wx.activex module contains a bunch of code, but the most +important things to look at are ActiveXWindow and ActiveXEvent. +ActiveXWindow derives from wxWindow and the constructor accepts a +CLSID for the ActiveX Control that should be created. (There is also +a CLSID class that can convert from a progID or a CLSID String.) The +ActiveXWindow class simply adds methods that allow you to query some +of the TypeInfo exposed by the ActiveX object, and also to get/set +properties or call methods by name. The Python implementation +automatically handles converting parameters and return values to/from +the types expected by the ActiveX code as specified by the TypeInfo, +(just bool, integers, floating point, strings and None/Empty so far, +but more can be handled later.)

    +

    That's pretty much all there is to the class, as I mentioned before it +is very generic and dynamic. Very little is hard-coded and everything +that is done with the actual ActiveX control is done at runtime and +referenced by property or method name. Since Python is such a dynamic +language this is a very good match. I thought for a while about doing +some Python black-magic and making the specific methods/properties of +the actual ActiveX control "appear" at runtime, but then decided that +it would be better and more understandable to do it via subclassing. +So there is a utility class in wx.activex that given an existing +ActiveXWindow instance can generate a .py module containing a derived +class with real methods and properties that do the Right Thing to +reflect those calls to the real ActiveX control. There is also a +script/tool module named genaxmodule that given a CLSID or progID and +a class name, will generate the module for you. There are a few +examples of the output of this tool in the wx.lib package, see +iewin.py, pdfwin.py and flashwin.py.

    +

    Currently the genaxmodule tool will tweak some of the names it +generates, but this can be controled if you would like to do it +differently by deriving your own class from GernerateAXModule, +overriding some methods and then using this class from a tool like +genaxmodule. [TODO: make specifying a new class on genaxmodule's +command-line possible.] The current default behavior is that any +event names that start with "On" will have the "On" dropped, property +names are converted to all lower case, and if any name is a Python +keyword it will have an underscore appended to it. GernerateAXModule +does it's best when generating the code in the new module, but it can +only be as good as the TypeInfo data available from the ActiveX +control so sometimes some tweaking will be needed. For example, the +IE web browser control defines the Flags parameter of the Navigate2 +method as required, but MSDN says it is optional.

    +

    It is intended that this new wx.activex module will replace both the +older version of Lindsay's code available in iewin.IEHtmlWindow, and +also the wx.lib.activexwraper module. Probably the biggest +differences you'll ecounter in migrating activexwrapper-based code +(besides events working better without causing deadlocks) is that +events are no longer caught by overriding methods in your derived +class. Instead ActiveXWindow uses the wx event system and you bind +handlers for the ActiveX events exactly the same way you do for any wx +event. There is just one extra step needed and that is creating an +event ID from the ActiveX event name, and if you use the genaxmodule +tool then this extra step will be handled for you there. For example, +for the StatusTextChange event in the IE web browser control, this +code is generated for you:

    +
    +wxEVT_StatusTextChange = wx.activex.RegisterActiveXEvent('StatusTextChange')
    +EVT_StatusTextChange = wx.PyEventBinder(wxEVT_StatusTextChange, 1)
    +
    +

    and you would use it in your code like this:

    +
    +self.Bind(iewin.EVT_StatusTextChange, self.UpdateStatusText, self.ie)
    +
    +

    When the event happens and your event handler function is called the +event properties from the ActiveX control (if any) are converted to +attributes of the event object passed to the handler. (Can you say +'event' any more times in a single sentence? ;-) ) For example the +StatusTextChange event will also send the text that should be put into +the status line as an event parameter named "Text" and you can access +it your handlers as an attribute of the event object like this:

    +
    +def UpdateStatusText(self, evt):
    +    self.SetStatusText(evt.Text)
    +
    +

    Usually these event object attributes should be considered read-only, +but some will be defined by the TypeInfo as output parameters. In +those cases if you modify the event object's attribute then that value +will be returned to the ActiveX control. For example, to prevent a +new window from being opened by the IE web browser control you can do +this in the handler for the iewin.EVT_NewWindow2 event:

    +
    +def OnNewWindow2(self, evt):
    +    evt.Cancel = True   
    +
    +

    So how do you know what methods, events and properties that am ActiveX +control supports? There is a funciton in wx.activex named GetAXInfo +that returns a printable summary of the TypeInfo from the ActiveX +instance passed in. You can use this as an example of how to browse +the TypeInfo provided, and there is also a copy of this function's +output appended as a comment to the modules produced by the +genaxmodule tool. Beyond that you'll need to consult the docs +provided by the makers of the ActiveX control that you are using.

    +

    Other Stuff

    Instead of over a dozen separate extension modules linked together @@ -422,18 +523,34 @@ wxPyTypeCast at all.

    there are compatibility aliases for much of the above items.

    The wxWave class has been renamed to wxSound, and now has a slightly different API.

    -

    Instead of a very small 20x20 the default window size is now a more -reasonable size, (currently 400x250 but that may change...) If you -don't specify a size, and the window/control class does not have any -definition of it's own "best size" (most controls do) then the new -default will be used. If you have code that accidentally depends on -the smaller size then things will look a bit odd. To work around this -just give those windows an explicit size when created.

    +

    wx.TaskbarIcon works on wxGTK-based platforms now, however you have to +manage it a little bit more than you did before. Basically, the app +will treat it like a top-level frame in that if the wx.TaskBarIcon +still exists when all the frames are closed then the app will still +not exit. You need to ensure that the wx.TaskBarIcon is destroyed +when your last Frame is closed. For wxPython apps it is usually +enough if your main frame object holds the only reference to the +wx.TaskBarIcon, then when the frame is closed Python reference +counting takes care of the rest.

    +

    If you are embedding wxPython in a C++ app, or are writing wxPython +compatible extensions modules, then the usage of wxPyBeginAllowThreads +and wxPyEndAllowThreads has changed slightly. wxPyBeginAllowThreads +now returns a boolean value that must be passed to the coresponding +wxPyEndAllowThreads function call. This is to help do the RightThing +when calls to these two functions are nested, or if calls to external +code in other extension modules that are wrapped in the standard +Py_(BEGIN|END)_ALLOW_THERADS may result in wx event handlers being +called (such as during the call to os.startfile.)

    +

    The bulk of wxPython's setup.py has been moved to another module, +wx/build/config.py. This module will be installed as part of wxPython +so 3rd party modules that wish to use the same setup/configuration +code can do so simply by importing this module from their own setup.py +scripts.

    diff --git a/wxPython/docs/PyManual.html b/wxPython/docs/PyManual.html index 1020b0a8a1..5469646b4d 100644 --- a/wxPython/docs/PyManual.html +++ b/wxPython/docs/PyManual.html @@ -111,8 +111,8 @@ point where I thought the original PyCrust name was too confining. I was using the PyCrust code base to develop programs that weren't just Python shells any more.

    Around that same time, the wxPython folks asked me if I'd be willing -to move all my wxPython-related projects into the wxPython CVS -repository, and become part of the wxPython/wxWindows developer team. +to move all my wxPython-related projects into the wxPython CVS +repository, and become part of the wxPython/wxWidgets developer team. I decided the time was right to restructure the PyCrust project. During the move, the PyCrust package was renamed to "py" (lowercase "p") and the collection of programs and modules as a whole became @@ -182,8 +182,8 @@ underlying filling module.

    as PyCrust, but doesn't have any of the extra features that appear in the PyCrust notebook interface.

    -

    /screenshots/PyShell.png

    -

    PyShell running on Mandrake Linux 9.1.

    +

    screenshots/PyShell.png

    +

    PyShell running on Mandrake Linux.

    @@ -238,7 +238,7 @@ programs and modules, since the beginning.

    * wxPython Docs * wxSTC Docs

    Fixed Calltip tab refresh problem on Windows.

    -

    shell.autoCompleteAutoHide added with default of True.

    +

    shell.autoCompleteAutoHide added with default of False.

    Changed default namespace of Shell to __main__.__dict__, instead of an empty dictionary.

    @@ -700,7 +700,7 @@ needed. PyCrust had to happen...

    diff --git a/wxPython/docs/PyManual.txt b/wxPython/docs/PyManual.txt index dc33a20fa4..9ff2209bab 100644 --- a/wxPython/docs/PyManual.txt +++ b/wxPython/docs/PyManual.txt @@ -67,15 +67,15 @@ Python shells any more. Around that same time, the wxPython folks asked me if I'd be willing to move all my wxPython-related projects into the `wxPython CVS -repository`_, and become part of the wxPython_/wxWindows_ developer team. +repository`_, and become part of the wxPython_/wxWidgets_ developer team. I decided the time was right to restructure the PyCrust project. During the move, the PyCrust package was renamed to "py" (lowercase "p") and the collection of programs and modules as a whole became known as "Py" (with a capital "P"). -.. _wxPython CVS repository: http://cvs.wxwindows.org +.. _wxPython CVS repository: http://cvs.wxWidgets.org .. _SourceForge: http://www.sf.net/projects/pycrust/ -.. _wxWindows: http://www.wxwindows.org/ +.. _wxWidgets: http://www.wxWidgets.org/ The original goal of PyCrust was to be the best interactive, graphical Python shell (of course, I claimed it was the "flakiest" Python @@ -155,9 +155,9 @@ PyShell is an interactive, Python shell. It shares the same base code as PyCrust, but doesn't have any of the extra features that appear in the PyCrust notebook interface. -.. figure:: /screenshots/PyShell.png +.. figure:: screenshots/PyShell.png - PyShell running on Mandrake Linux 9.1. + PyShell running on Mandrake Linux. PyWrap diff --git a/wxPython/docs/README.html b/wxPython/docs/README.html index c899a28851..7b37cfa50a 100644 --- a/wxPython/docs/README.html +++ b/wxPython/docs/README.html @@ -60,7 +60,7 @@ Robin Dunn diff --git a/wxPython/docs/screenshots/PyShell.png b/wxPython/docs/screenshots/PyShell.png new file mode 100644 index 0000000000000000000000000000000000000000..d0c9dd36f12cddc99a9f44fa8bec98bf24b4e4b9 GIT binary patch literal 35825 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

    Where can I find example programs using the new wx syntax?

    -

    Example programs are included in the wxPython/samples/wx_examples -directory, and are documented in the wxPythonExamples documentation -file. Also, all the code in the py package uses the new wx syntax. -You can learn more about these in the PyManual.

    +

    The wxPython demo application and most of the sample apps have been +converted to use the new import wx style of programming with +wxPython, so there are lots of examples to look at and to play with. +Here is one of them, it is the simple sample.

    +
    +#----------------------------------------------------------------------
    +# A very simple wxPython example.  Just a wxFrame, wxPanel,
    +# wxStaticText, wxButton, and a wxBoxSizer, but it shows the basic
    +# structure of any wxPython application.
    +#----------------------------------------------------------------------
    +
    +import wx
    +
    +
    +class MyFrame(wx.Frame):
    +    """
    +    This is MyFrame.  It just shows a few controls on a wxPanel,
    +    and has a simple menu.
    +    """
    +    def __init__(self, parent, title):
    +        wx.Frame.__init__(self, parent, -1, title,
    +                          pos=(150, 150), size=(350, 200))
    +
    +        # Create the menubar
    +        menuBar = wx.MenuBar()
    +
    +        # and a menu 
    +        menu = wx.Menu()
    +
    +        # add an item to the menu, using \tKeyName automatically
    +        # creates an accelerator, the third param is some help text
    +        # that will show up in the statusbar
    +        menu.Append(wx.ID_EXIT, "E&xit\tAlt-X", "Exit this simple sample")
    +
    +        # bind the menu event to an event handler
    +        self.Bind(wx.EVT_MENU, self.OnTimeToClose, id=wx.ID_EXIT)
    +
    +        # and put the menu on the menubar
    +        menuBar.Append(menu, "&File")
    +        self.SetMenuBar(menuBar)
    +
    +        self.CreateStatusBar()
    +        
    +
    +        # Now create the Panel to put the other controls on.
    +        panel = wx.Panel(self)
    +
    +        # and a few controls
    +        text = wx.StaticText(panel, -1, "Hello World!")
    +        text.SetFont(wx.Font(14, wx.SWISS, wx.NORMAL, wx.BOLD))
    +        text.SetSize(text.GetBestSize())
    +        btn = wx.Button(panel, -1, "Close")
    +        funbtn = wx.Button(panel, -1, "Just for fun...")
    +
    +        # bind the button events to handlers
    +        self.Bind(wx.EVT_BUTTON, self.OnTimeToClose, btn)
    +        self.Bind(wx.EVT_BUTTON, self.OnFunButton, funbtn)
    +
    +        # Use a sizer to layout the controls, stacked vertically and with
    +        # a 10 pixel border around each
    +        sizer = wx.BoxSizer(wx.VERTICAL)
    +        sizer.Add(text, 0, wx.ALL, 10)
    +        sizer.Add(btn, 0, wx.ALL, 10)
    +        sizer.Add(funbtn, 0, wx.ALL, 10)
    +        panel.SetSizer(sizer)
    +        panel.Layout()
    +
    +
    +    def OnTimeToClose(self, evt):
    +        """Event handler for the button click."""
    +        print "See ya later!"
    +        self.Close()
    +
    +    def OnFunButton(self, evt):
    +        """Event handler for the button click."""
    +        print "Having fun yet?"
    +
    +
    +class MyApp(wx.App):
    +    def OnInit(self):
    +        frame = MyFrame(None, "Simple wxPython App")
    +        frame.Show(True)
    +        self.SetTopWindow(frame)
    +        return True
    +        
    +app = MyApp(True)
    +app.MainLoop()
    +
    +
    +
    diff --git a/wxPython/docs/wxPackage.txt b/wxPython/docs/wxPackage.txt index efd675b06b..35e6e0b64e 100644 --- a/wxPython/docs/wxPackage.txt +++ b/wxPython/docs/wxPackage.txt @@ -157,10 +157,12 @@ replace. Where can I find example programs using the new wx syntax? ========================================================== -Example programs are included in the wxPython/samples/wx_examples -directory, and are documented in the wxPythonExamples_ documentation -file. Also, all the code in the py package uses the new wx syntax. -You can learn more about these in the PyManual_. +The wxPython demo application and most of the sample apps have been +converted to use the new ``import wx`` style of programming with +wxPython, so there are lots of examples to look at and to play with. +Here is one of them, it is the ``simple`` sample. + + +.. include:: ../samples/simple/simple.py + :literal: -.. _wxPythonExamples: wxPythonExamples.html -.. _PyManual: PyManual.html diff --git a/wxPython/docs/wxPythonManual.html b/wxPython/docs/wxPythonManual.html index 58672d05cb..5d898ca4fc 100644 --- a/wxPython/docs/wxPythonManual.html +++ b/wxPython/docs/wxPythonManual.html @@ -1074,7 +1074,7 @@ As such, it adheres to the same license, which is provided here:

    diff --git a/wxPython/docs/wxPythonManual.txt b/wxPython/docs/wxPythonManual.txt index f01b493fc6..af36ab6b2f 100644 --- a/wxPython/docs/wxPythonManual.txt +++ b/wxPython/docs/wxPythonManual.txt @@ -23,12 +23,12 @@ Introduction This is a guide to the wxPython GUI toolkit, written **by** a Python programmer **for** his fellow Python programmers. It began as a -simple translation of the wxWindows documentation (which is written +simple translation of the wxWidgets documentation (which is written for C++ programmers), and evolved from there. And while there's nothing wrong with C++... Okay, you got me there. I hate C++. That's why I use Python. If you -like C++, go read the wxWindows documentation. If you'd rather read a +like C++, go read the wxWidgets documentation. If you'd rather read a guide that's written with Python programmers in mind, keep reading this one. If you like it, feel free to send me freshly roasted coffee beans, dark chocolate, and large denomination currency. Better yet, @@ -43,9 +43,9 @@ wxPython is a GUI toolkit for the Python programming language. It allows Python programmers to create programs with a robust, highly functional graphical user interface, simply and easily. It is implemented as a Python extension module (native code) that wraps the -popular wxWindows cross platform GUI library, which is written in C++. +popular wxWidgets cross platform GUI library, which is written in C++. -Like Python and wxWindows, wxPython is Open Source, which means that +Like Python and wxWidgets, wxPython is Open Source, which means that it is free for anyone to use and the source code is available for anyone to look at and modify. And anyone can contribute fixes or enhnacments to the project. @@ -86,15 +86,15 @@ Mac OS X * At least ?? MB of disk space. -What is wxWindows? +What is wxWidgets? ================== -wxWindows is a C++ framework providing GUI (Graphical User Interface) +wxWidgets is a C++ framework providing GUI (Graphical User Interface) and other facilities on more than one platform. Version 2 currently supports all desktop versions of MS Windows, Unix with GTK+, Unix with Motif, and MacOS. An OS/2 port is in progress. -wxWindows was originally developed at the Artificial Intelligence +wxWidgets was originally developed at the Artificial Intelligence Applications Institute, University of Edinburgh, for internal use, and was first made publicly available in 1992. Version 2 is a vastly improved version written and maintained by Julian Smart, Robert @@ -108,7 +108,7 @@ variants, unless otherwise stated. All trademarks are acknowledged. Why another cross-platform development tool? ============================================ -wxWindows was developed to provide a cheap and flexible way to +wxWidgets was developed to provide a cheap and flexible way to maximize investment in GUI application development. While a number of commercial class libraries already existed for cross-platform development, none met all of the following criteria: @@ -118,14 +118,14 @@ development, none met all of the following criteria: * simplicity of programming * support for a wide range of compilers -Since wxWindows was started, several other free or almost-free GUI +Since wxWidgets was started, several other free or almost-free GUI frameworks have emerged. However, none has the range of features, flexibility, documentation and the well-established development team -that wxWindows has. +that wxWidgets has. -As open source software, wxWindows has benefited from comments, ideas, +As open source software, wxWidgets has benefited from comments, ideas, bug fixes, enhancements and the sheer enthusiasm of users. This gives -wxWindows a certain advantage over its commercial competitors (and +wxWidgets a certain advantage over its commercial competitors (and over free libraries without an independent development team), plus a robustness against the transience of one individual or company. This openness and availability of source code is especially important when @@ -141,17 +141,17 @@ The importance of using a platform-independent class library cannot be overstated, since GUI application development is very time-consuming, and sustained popularity of particular GUIs cannot be guaranteed. Code can very quickly become obsolete if it addresses the wrong -platform or audience. wxWindows helps to insulate the programmer from -these winds of change. Although wxWindows may not be suitable for +platform or audience. wxWidgets helps to insulate the programmer from +these winds of change. Although wxWidgets may not be suitable for every application (such as an OLE-intensive program), it provides access to most of the functionality a GUI program normally requires, plus many extras such as network programming, PostScript output, and HTML rendering; and it can of course be extended as needs dictate. As a bonus, it provides a far cleaner and easier programming interface than the native APIs. Programmers may find it worthwhile to use -wxWindows even if they are developing on only one platform. +wxWidgets even if they are developing on only one platform. -It is impossible to sum up the functionality of wxWindows in a few +It is impossible to sum up the functionality of wxWidgets in a few paragraphs, but here are some of the benefits: * Low cost (free, in fact!) @@ -232,10 +232,10 @@ Help. GUI applications aren't all graphical wizardry. You'll also need lists and hash tables. But since you're working with Python, you should use the ones Python provides (list, tuple, dict), rather than -the wxWindows versions. Same goes for the database related classes. +the wxWidgets versions. Same goes for the database related classes. The basic rule of thumb is this: If you can do it directly in Python, you probably should. If there is a reason not to use a Python data -type, wxPython will provide a wrapper for the wxWindows class. +type, wxPython will provide a wrapper for the wxWidgets class. You will undoubtedly need some platform-independent file functions, and you may find it handy to maintain and search a list of paths using @@ -248,7 +248,7 @@ See also Classes by Category for a list of classes. Utilities and libraries supplied with wxPython ============================================== -In addition to the core wxWindows library, a number of further +In addition to the core wxWidgets library, a number of further libraries and utilities are supplied with each distribution. [Need to list these.] @@ -265,14 +265,14 @@ Creating and deleting wxPython objects so you don't need to delete these descendants explicitly. .. When deleting a frame or dialog, use Destroy rather than delete so - that the wxWindows delayed deletion can take effect. This waits + that the wxWidgets delayed deletion can take effect. This waits until idle time (when all messages have been processed) to actually delete the window, to avoid problems associated with the GUI sending events to deleted windows. .. If you decide to allocate a C++ array of objects (such as wxBitmap) - that may be cleaned up by wxWindows, make sure you delete the array - explicitly before wxWindows has a chance to do so on exit, since + that may be cleaned up by wxWidgets, make sure you delete the array + explicitly before wxWidgets has a chance to do so on exit, since calling delete on array members will cause memory problems. .. wxColour can be created statically: it is not automatically cleaned @@ -1002,7 +1002,7 @@ Submitting changes to the source document Some items in the source text file look like this:: - .. This is text from the wxWindows documentation that needs to be + .. This is text from the wxWidgets documentation that needs to be translated into something appropriate for the wxPython version. The two dots followed by uniformly indented text turns this paragraph into a reStructuredText comment, so it doesn't appear @@ -1033,7 +1033,7 @@ name): License ======= -This document began as a translation of the wxWindows documentation. +This document began as a translation of the wxWidgets documentation. As such, it adheres to the same license, which is provided here: .. include:: ../licence/licendoc.txt diff --git a/wxPython/samples/simple/simple.py b/wxPython/samples/simple/simple.py index 95df6d5073..ee27c45d71 100644 --- a/wxPython/samples/simple/simple.py +++ b/wxPython/samples/simple/simple.py @@ -13,7 +13,8 @@ class MyFrame(wx.Frame): and has a simple menu. """ def __init__(self, parent, title): - wx.Frame.__init__(self, parent, -1, title, size=(350, 200)) + wx.Frame.__init__(self, parent, -1, title, + pos=(150, 150), size=(350, 200)) # Create the menubar menuBar = wx.MenuBar() @@ -70,8 +71,13 @@ class MyFrame(wx.Frame): print "Having fun yet?" -app = wx.PySimpleApp() -frame = MyFrame(None, "Simple wxPython App") -frame.Show(True) +class MyApp(wx.App): + def OnInit(self): + frame = MyFrame(None, "Simple wxPython App") + frame.Show(True) + self.SetTopWindow(frame) + return True + +app = MyApp(True) app.MainLoop() -- 2.47.2