]> git.saurik.com Git - wxWidgets.git/blame - wxPython/CHANGES.txt
Removed initial startup dependency on the OpenGL DLLs so only the
[wxWidgets.git] / wxPython / CHANGES.txt
CommitLineData
6d75ea8f
RD
1CHANGES.txt for wxPython
2
3----------------------------------------------------------------------
4
19cf4f80
RD
5?????
6-----
7Removed initial startup dependency on the OpenGL DLLs so only the
8glcanvasc.pyd depends on them.
9
10Changed wxFont, wxPen, wxBrush to not implicitly use the
11wxThe[Font|Pen|Brush]List behind the scenes, but to use normal ctor
12and dtors.
13
14Exposed the wxThe[Font|Pen|Brush]List to wxPython.
15
16Also wxTheColourDatabase and added a library module (in the
17wxPython.lib.colourdb module) to load LOTS more colour names into the
18colour database.
19
20
21
22
b075a3bb
RD
232.2.6
24-----
25
26No changes happened in the Python wrappers for this release, only
27changes and fixes in the wxWindows library.
28
1b62f00d 29
19cf4f80 30
1b62f00d 312.2.5
185d7c3e
RD
32-----
33
34New typemaps for wxString when compiling for Python 2.0 and beyond
35that allow Unicode objects to be passed as well as String objects. If
36a Unicode object is passed PyString_AsStringAndSize is used to convert
37it to a wxString using the default encoding.
38
39Fixed the generic buttons so tool tips work for them.
40
41Fixed a bug in the demo's tree control.
42
43Added a listbox to the listbox demo that shows how to find items with
1e7ecb7b 44a matching prefix as keys are typed.
185d7c3e
RD
45
46Added code to the wxListCtrl demo to show how to get text from a
47column in report mode.
48
49Added code to the toolbar demo to clear the long help from the status
50bar after 2 seconds.
51
52Added wxJoystick.
53
54Fixed wxTimer so it can be used as described in the docs, either with
55a Notify method in a subclass, or sending an event to a wxEvtHandler
56object, (usually a window.)
57
58Added wxNotifyEvent.Allow()
59
de20db99
RD
60Fixed GOBS of reference leaks.
61
1e7ecb7b
RD
62Massive code changes and cleanup to allow wxPython to be split into
63multiple extension modules again. A Python CObject is used to allow
1b62f00d
RD
64the "export" of SWIG functions and other common helper functions from
65the wxc module to other modules, even if they are in separate shared
1e7ecb7b
RD
66libraries. Should also be usable from 3rd party code, just include
67wxPython/src/export.h
68
69Changed the default setup so the following are built as separate
70extension modules: calendar, glcanvas, grid, html, ogl, stc, and
71utils. Will probably add more later.
72
1b62f00d
RD
73Changed the wxPrinterDC to use the new constructor taking a
74wxPrintData object. The old ctor is still there using the
75wxPrinterDC2 name.
76
77Added wxPython.lib.anchors.py from Riaan Booysen. It contains a class
78that implements Delphi's Anchors with wxLayoutConstraints.
79
80Added wxPython.lib.fancytext from Timothy Hochberg.
81
82Changed the GenericButtons to send their event in idle time, so the
83mouse won't be captured when the event handler is called.
84
85Added wxPython.lib.rpcMixin from Greg Landrum, although it's not
86integrated with the demo yet. It allows a wxPython GUI to be an
87XML-RPC server.
88
185d7c3e
RD
89
90
c368d904
RD
91New in 2.2.2
92------------
93
94Significantly changed how the wxStyledtextCtrl code that wraps
95Scintilla is implemented. Most of it is now automatically generated
96from an interface definition file provided by Scintilla. This means
97that it will be much easier to stay in sync with new Scintilla
98releases, but also means that some of the method and identifier names
99have changed. See wxPython/demo/data/stc.h for a copy of the C++
100interface from which the Python interface is generated. There is now
101some inline documentation in that file that should really help explain
102how things work.
103
104I am now using the Python Distutils to build wxPython and to make some
105of the distribution files. (See http://www.python.org/sigs/distutils-sig/)
106This means no more messing with my kludgy build.py/Makefile hack,
107builds will be more consistent with other Python extensions that also
108use Distutils, and will hopefully make wxPython easier to build for
109platforms where there have been troubles before. If you are building
110wxPython for Python 1.5.2 or for 1.6, then you will need to get and
111install version 1.0 of Distutils from the website above. If you are
112using Python 2.0 then you already have it.
113
114Added wxInputStream and the wxFileSystem family of classes,
115contributed by Joerg Baumann.
116
117Added wxProcess and support for it to wxExecute. wxProcess lets you
118get notified when an asyncronous child process terminates, and also to
119get input/output streams for the child process's stdout, stderr and
120stdin.
121
122Removed the old python sizers.
123
124Added __add__, __sub__ and __cmp__ (equality check only) for wxPoint
125and wxRealPoint.
126
127Changed the build to make one big extension module instead of one for
128the core and each contrib. This allowed me to do away with the
129libwxPyHelpers.so on unix systems.
130
131Lots of little fixes here and there.
132
133Some hacks on wxGTK to try and make the AutoComplete listbox in the
134wxStyledTextCtrl to behave better. It's still not as nice as on
135wxMSW, but at least it's a bit more usable now.
136
137
138
139
3ca6a5f0
BP
140New in 2.2.1
141------------
142
143Various tweaks, fixes, missing methods, etc.
144
c368d904
RD
145Added example use of wxTaskBarIcon to the demo.
146
3ca6a5f0
BP
147
148
f6bcfd97
BP
149New in 2.2.0
150------------
151
152Added wxLog and friends.
153
154Added wxFrame.ShowFullScreen for MSW.
155
156Added PyShellWindow to the wxPython.lib package.
157
158
159
160New in 2.1.16
161-------------
162
163Added an attribute named labelDelta to the generic buttons that
164specifies how far to offset the label when the button is in the
165depressed state.
166
167Added wxTipProvider and friends. See the demo for an example.
168
169wxGrid can now change the cell highlight colour.
170
171Added wxDragImage.
172
173Fixed printing on wxGTK.
174
175Added wxDateTime, wxTimeSpan, and wxDateSpan to wxPython.utils.
176
177Added wxCalendarCtrl.
178
179WARNING: A while back I asked what should be done about the Magic
180Method Names. (Methods that are automatically turned into event
181handlers by virtue of their name.) The consensus was that it is more
182confusing to have them than to try and expand them to have greater
183coverage. I am finally getting around to removing the code that
184generates the event binding. This means that if you are using any of
185the following method names without a EVT_* call that you need to
186modify your code to add the EVT_* to hook the event to the method.
187
188 OnChar
189 OnSize
190 OnEraseBackground
191 OnSysColourChanged
192 OnInitDialog
193 OnPaint
194 OnIdle
195 OnActivate
196 OnMenuHighlight
197 OnCloseWindow
198 OnScroll
199
200Added wxSpinCtrl.
201
202
203
204
205New in 2.1.15
164b735b
RD
206-------------
207
208Fixed wxTreeCtrl.HitTest to return both the tree item as well as the
209flags that clairify where the click was in relation to the item.
210
854862f5
RD
211Fixed thread state problem in wxTreeCtrl.GetBoundingBox and
212GetSelections.
164b735b 213
99ab9f3b
RD
214Fixed some problems in OGL. Also wxShape.SetClientData and
215.GetClientData can now deal with Python objects.
714d23b4 216
dcd38683 217Added wxListCtrl.SortItems and changed the demo to show how to use it.
714d23b4 218
f6bcfd97
BP
219Plugged a memory leak.
220
221Wrapped the new wxGrid and friends. The old wxGrid class is no longer
222available. There are some incompatibilities, and unfortunately the
223new classes are not documented yet, (however the methods are more
224consistent with each other now so you may be able to guess pretty
225good...)
226
227Updated filebrowsebutton.py and calendar.py with changes from their
228authors. There is now a FileBrowseButtonWithHistory class (what a
229mouthful!) and wxCalendar has printing support.
230
231Added ActiveXWrapper to the library, and some good demos of it too.
232It works great for embedding a COM (a.k.a OCX, a.k.a ActiveX) control
233in a window and calling its methods. It actually creates a new class
234on the fly that derives from wxWindow, the COM CoClass and others
235needed to make it all work. The resulting class can be instantiated
236just like wxWindow, used in sizers, etc. It also responds to all COM
237method calls, properties, etc., and if the class or a mix-in has
238matching method names, then the COM events will be propogated back to
239them.
240
241Created a typemap that allows a string to be used for parameters
242expecting a wxColour type. The string is either a colour name as
243defined in the wxColourDatabase, or a colour spec of the form
244"#RRGGBB". See the wxStyledTextCtrl demo for an example.
245
246I almost forgot to mention the wxStyledTextCtrl! Yes, the
247wxStyledTextCtrl is finally in wxPython!! (And the crowd goes
248wild...) There's no documentaTion yet (the crowd boos and hisses...)
249but I've included a very readable source file in the
250wxPython/demo/data directory, a couple fairly good examples, and you
251can also refer to the Scintilla documentaion at
252http://www.scintilla.org/ScintillaDoc.html to help fill in the gaps
253until the docs are done. (The croud murmers contentedly as the tool
254provider smiles convincingly and removes his flame-proof suit.)
255
164b735b
RD
256
257
258
9e57c2a0 259What's new in 2.1.13
6d75ea8f 260--------------------
9e57c2a0
RD
261Skipped a version number to match what has been released for wxGTK.
262
6d75ea8f
RD
263Updated wxMVCTree and added a demo for it, also fixed layout on GTK
264and some flicker problems.
265
266Added a wrapper class for the Visualization ToolKit (or VTK) in the
267wxPython.lib.vtk module. (http://www.kitware.com/)
268
269Fixed wxTreeCtrl.SetItemImage and GetItemImage to recognise the new
270"which" parameter.
271
272Added wxPython.lib.spashscreen from Mike Fletcher.
273
274Added wxPython.lib.filebrowsebutton also from Mike Fletcher.
275
276Renamed wxTreeCtrl.GetParent to GetItemParent to avoid a name clash
277with wxWindow.GetParent.
278
279Added wxIntersectRect to compute the intersection of two wxRect's.
280It is used like this:
281
282 intersect = wxIntersectRect(rect1, rect2)
283
284If r1 and r2 don't intersect then None is returned, otherwise the
285rectangle representing the intersection is returned.
286
287Some bug fixes for Clipboard and Drag-n-Drop.
288
9b3d3bc4 289Rotated text!!! WooHoo! (See wxDC.DrawRotatedText())
6999b0d8
RD
290
291Added a set of Generic Buttons to the library. These are simple
292window classes that look and act like native buttons, but you can have
293a bit more control over them. The bezel width can be set in addition
294to colours, fonts, etc. There is a ToggleButton as well as Bitmap
9e57c2a0
RD
295versions too. They should also serve as a good example of how to
296create your own classes derived from wxControl.
6d75ea8f 297
9b3d3bc4
RD
298The C++ wxToolBar classes have been redone, and so have the wxPython
299wrappers. There have been slight modifications to some of the methods
300but shouldn't impact anybody too much. I took the opportunity to add
301support for setting user data on each toolbar tool. The new AddTool
302methods look like this:
303
304 def AddTool(ID,
305 bitmap,
306 pushedBitmap = wxNullBitmap,
307 toggle = FALSE,
308 clientData = NULL,
309 shortHelpString = "",
310 longHelpString = "")
311
312 def AddSimpleTool(ID,
313 bitmap,
314 shortHelpString = "",
315 longHelpString = "",
316 toggle=FALSE)
317
318
319There are also coresponding InsertTool and InsertSimpleTool methods
320that additionally take an integer position as the first parameter.
321
9e57c2a0 322Added a wrapper for the new PCX and TIFF ImageHandlers.
9b3d3bc4
RD
323
324wxRect now simulates attributes named left, right, top and bottom.
325
d2103cf2
RD
326Removed all non wx stuff from the glcanvas module since DA's PyOpenGL
327is better and compatible with the wxGLCanvas. You can get it at
328http://starship.python.net:9673/crew/da/Code/PyOpenGL.
9b3d3bc4 329
3af4e610 330Added some missing EVT_ functions.
9b3d3bc4 331
1b55cabf
RD
332Added Dirk Holtwic's editor classes to the wxPython.lib.editor
333package.
334
eec92d76
RD
335Changed all the "LIST" parameter names to "choices" to match the docs.
336
fe366bc9
RD
337More fixes for the wxFloatBar, and it now works on wxGTK even better
338than wxMSW! (The feat is accomplished by using the wxTB_DOCKABLE
339style flag instead of trying to float it ourselves.)
340
9b3d3bc4 341
6d75ea8f
RD
342
343
344What's new in 2.1.11
345--------------------
346Skipped a few version numbers so wxMSW, wxGTK and wxPython are all
347syncronized.
348
349wxImage.SetData now makes a copy of the image data before giving it to
350wxImage. I mistakenly thought that wxImage would copy the data
351itself.
352
353Fixed wxMSW's notebook so the pages get their size set as they are
354being added. This should remove the need for our
355wxNotebook.ResizeChildren hack.
356
357wxPanels now support AutoLayout, and wxNotebooks and wxSplitterWindows
358no longer tell their children to Layout() themselves. This will
359probably only effect you if you have a wxWindow with AutoLayout inside
360a notebook or splitter. If so, either change it to a wxPanel or add
361an EVT_SIZE handler that calls Layout().
362
363Fixed deadlock problem that happened when using threads.
364
365Added new HTML printing classes.
366
367Added wxWindow.GetHandle
368
369Apparently wxMouseEvent.Position has been depreciated in wxWindows as
370it is no longer available by default. You can use GetPositionTuple
371(returning a tuple with x,y) instead, or GetPosition (returning a
372wxPoint.)
373
374Added wxPostEvent function that allows events to be posted and then
375processed later. This is a thread-safe way to interact with the GUI
376thread from other threads.
377
378Added Clipboard and Drag-and-Drop classes.
379
380Added wxFontEnumerator.
381
382Many updates to wxMenu, wxMenuBar.
383
384wxPyEvent and wxPyCommandEvent derived classes now give you the actual
385Python object in the event handler instead of a new shadow.
386
387Added a Calendar widget from Lorne White to the library.
388
389Made some fixes to the wxFloatbar. It still has some troubles on
390wxGTK...
391
392Added an MVC tree control from Bryn Keller to the library.
393
394
395
396
397What's new in 2.1.5
398-------------------
399This is a quick bug-fix release to take care of a few nasties that
400crept in at the last minute before 2.1.4 was called done. No new
401major features.
402
403
404
405What's new in 2.1.4
406--------------------
407
408This release is NOT syncronized with a snapshot release of wxGTK or
409wxMSW. For MSW this isn't much of a problem since you can get the
410binaries from the web site. For other platforms you'll have to build
411wxGTK from CVS. (See http://web.ukonline.co.uk/julian.smart/wxwin/cvs.htm)
412To get the same set of sources from CVS that I used, checkout using
413the wxPy-2-1-4 tag.
414
415Now back to what's new...
416
417Much more support for event-less callbacks and add-on modules.
418
419Created add-on module with wxOGL classes.
420
421Added wxWindow.GetChildren(). Be careful of this. It returns a *copy*
422of the list of the window's children. While you are using the list if
423anything changes in the real list (a child is deleted, etc.) then the
424list you are holding will suddenly have window references to garbage
425memory and your app will likely crash. But if you are careful it works
426great!
427
428Added a bunch of new and missing methods to wxTreeCrtl. The
429SortChildren method is now supported, but currently only for the
430default sort order.
431
432Added typemaps for wxSize, wxPoint, wxRealPoint, and wxRect that allow
433either the actual objects or Python sequence values to be used. For
434example, the following are equivallent:
435
436 win = wxWindow(parent, size = wxSize(100, 100))
437 win = wxWindow(parent, size = (100, 100))
438
439Super-charged the wxHtml module. You can now create your own tag
440handlers and also have access to the parser and cell classes. There
441is a tag handler in the library at wxPython.lib.wxpTag that
442understands the WXP tag and is able to place wxPython windows on HTML
443pages. See the demo for an example.
444
445A bunch of the methods of wxMenuBar were previously ifdef'd out for
446wxGTK. Added them back in since the methods exist now.
447
448Wrapped the wxHtmlHelpController and related classes.
449
450Wrapped the C++ versions of wxSizer and friends. The Python-only
451versions are still in the library, but depreciated. (You will get a
452warning message if you try to use them, but the warning can be
453disabled.) The usage of the C++ versions is slightly different, and
454the functionality of wxBorderSizer is now part of wxBoxSizer. I have
455added a few methods to wxSizer to try and make the transition as
456smooth as possible, I combined all Add methods into a single method
457that handles all cases, added an AddMany method, etc. One step I did
458not take was to make the default value of flag in the Add method be
459wxGROW. This would have made it more backward compatible, but less
460portable to and from wxWin C++ code. Please see the docs and demo for
461further details.
462
463Added wxPyEvent and wxPyCommandEvent classes, derived from wxEvent and
464wxCommandEvent. Each of them has SetPyData and GetPyData methods that
465accept or return a single Python object. You can use these classes
466directly or derive from them to create your own types of event objects
467that can pass through the wxWindows event system without loosing their
468Python parts (as long as they are stored with SetPyData.) Stay tuned
469for more info and examples in future releases.
470
471Added wxPython.lib.grids as an example of how to derive a new sizer
472from the C++ sizers. In this module you will find wxGridSizer and
473wxFlexGridSizer. wxGridSizer arrainges its items in a grid in which
474all the widths and heights are the same. wxFlexgridSizer allows
475different widths and heights, and you can also specify rows and/or
476columns that are growable. See the demo for a couple examples for how
477to use them.
478
479Added the wxValidator class, and created a class named wxPyValidator
480that should be used for the base class of any Python validators. See
481the demo for an example. Please note that you MUST implement a Clone
482method in your validator classes because of the way some things work
483in the underlying C++ library. I did not add wxTextValidator because
484of some issues of how it transfers data to and from a wxString, which
485in wxPython is automatically translated to and from Python strings, so
486there would never be a concrete wxString that would hang around long
487enough for the validator to do its job. On the other hand, it should
488be real easy to duplicate the functionality of wxTextValidator in a
489pure Python class derived from wxPyValidator.
490
491I've finally added a feature that has been on my list for close to two
492years! Ever wondered what that zero is for when you create your app
493object? Well now you can leave it out or explicitly set it to a true
494value. This value now controls what is to be done with sys.stdout and
495sys.stderr. A false value leaves them alone, and a true value sets
496them to an instance of wxPyOnDemandOutputWindow. (On windows the
497default is true, on unix platforms the default is false.) This class
498creates a frame containing a wxTextCtrl as soon as anything is written
499to sys.stdout or sys.stderr. If you close the window it will come
500back again the next time something is written. (You can call
501app.RestoreStdio to turn this off.) If you would rather that the stdio be
502redirected to a file, you can provide a second parameter to your app
503object's constructor that is a filename. If you want to use your own
504class instead of wxPyOnDemandOutputWindow you can either implement
505RedirectStdio() in you app class or change the value of
506wxApp.outputWindowClass like this:
507
508 class MyApp(wxApp):
509 outputWindowClass = MyClass
510
511 def OnInit(self):
512 frame = MyFrame()
513 self.SetTopWindow(frame)
514 return true
515
516Please see the implementation of wxPyOnDemandOutputWindow and wxApp in
517wx.py for more details. A few words of caution: if you are running
518your app in a debugger, changing sys.stdout and sys.stderr is likely
519to really screw things up.
520
521Added wxCaret. Unfortunately it's author has still not documented it
522in the wxWindows docs...
523
524Some new 3rd party contributions in wxPython.lib. PyShell, in
525shell.py is an interesting implementaion of an interactive Python
526shell in wxWindows. floatbar.py has a class derived from wxToolBar
527that can sense mouse drags and then reparent itself into another
528frame. Moving the new frame close to where it came from puts the tool
529bar back into the original parent. (Unfortunately there is currently
530a bug in wxGTK's wxFrame.SetToolBar so the FloatBar has some
531problems...)
532
533
534
535
536What's new in 2.1b3
537--------------------
538
539This release is syncronized with release 2.1 snapshot 9 of wxWindows.
540
541Switched to using SWIG from CVS (see http://swig.cs.uchicago.edu/cvs.html)
542for some of the new features and such. Also they have encorporated my
543patches so there is really no reason to stick with the current (very
544old) release... This version of SWIG gives the following new
545features:
546
547 1. Keyword arguments. You no longer have to specify all the
548 parameters with defaults to a method just to specify a
549 non-default value on the end. You can now do this instead:
550
551 win = wxWindow(parent, -1, style = mystyle)
552
553 2. There is now an an equivalence between Python's None and C++'s
554 NULL. This means that any methods that might return NULL will
555 now return None and you can use none where wxWindows might be
556 expecting NULL. This makes things much more snake-ish.
557
558
559There is a new build system based on a new Python program instead of
560raw makefiles. Now wxPython builds are virtually the same on MSW or
561Unix systems. See the end of this file for new build instructions and
562see distrib/build.py for more details.
563
564wxDC.Bilt now includes the useMask parameter, and has been split into
565two different versions. wxDC.BlitXY is like what was there before and
566takes raw coordinants and sizes, and the new wxDC.Blit is for the new
567interface using wxPoints and a wxSize.
568
569
570
571
572
573What's new in 2.1b2
574--------------------
575
576Added the missing wxWindow.GetUpdateRegion() method.
577
578Made a new change in SWIG (update your patches everybody) that
579provides a fix for global shadow objects that get an exception in
580their __del__ when their extension module has already been deleted.
581It was only a 1 line change in .../SWIG/Modules/pycpp.cxx at about
582line 496 if you want to do it by hand.
583
584It is now possible to run through MainLoop more than once in any one
585process. The cleanup that used to happen as MainLoop completed (and
586prevented it from running again) has been delayed until the wxc module
587is being unloaded by Python.
588
589I fixed a bunch of stuff in the C++ version of wxGrid so it wouldn't
590make wxPython look bad.
591
592wxWindow.PopupMenu() now takes a wxPoint instead of x,y. Added
593wxWindow.PopupMenuXY to be consistent with some other methods.
594
595Added wxGrid.SetEditInPlace and wxGrid.GetEditInPlace.
596
597You can now provide your own app.MainLoop method. See
598wxPython/demo/demoMainLoop.py for an example and some explaination.
599
600Got the in-place-edit for the wxTreeCtrl fixed and added some demo
601code to show how to use it.
602
603Put the wxIcon constructor back in for GTK as it now has one that
604matches MSW's.
605
606Added wxGrid.GetCells
607
608Added wxSystemSettings static methods as functions with names like
609wxSystemSettings_GetSystemColour.
610
611Removed wxPyMenu since using menu callbacks have been depreciated in
612wxWindows. Use wxMenu and events instead.
613
614Added alternate wxBitmap constructor (for MSW only) as
615 wxBitmapFromData(data, type, width, height, depth = 1)
616
617Added a helper function named wxPyTypeCast that can convert shadow
618objects of one type into shadow objects of another type. (Like doing
619a down-cast.) See the implementation in wx.py for some docs.
620
621Fixed wxImage GetData and SetData to properly use String objects for
622data transfer.
623
624Added access methods to wxGridEvent.
625
626New Makefile/Setup files supporting multiple dynamic extension modules
627for unix systems.
628
629Fixes for the wxGLCanvas demo to work around a strange bug in gtk.
630
631SWIG support routines now compiled separately instead of being bundled
632in wx.cpp.
633
634
635
636
637
638What's new in 2.1b1
639--------------------
640Fixed wxComboBox.SetSelection so that it actually sets the selected
641item. (Actually just removed it from wxPython and let it default to
642wxChoice.SetSelection which was already doing the right thing.)
643
644Added the Printing Framework.
645
646Switched back to using the wxWindows DLL for the pre-built Win32
647version. The problem was needing to reinitialize static class info
648data after loading each extension module.
649
650Lots of little tweaks and additions to reflect changes to various
651wxWindows classes.
652
653Fixed a bug with attaching objects to tree items. Actually was a
654symptom of a larger problem with not obtaining the interpreter lock
655when doing any Py_DECREFs.
656
657wxSizer and friends. Sizers are layout tools that manage a colection
658of windows and sizers. Different types of sizers apply different
659types of layout algorithms. You saw it here first! These classes are
660not even in the wxWindows C++ library yet!
661
662
663
664What's new in 2.0b9
665-------------------
666Bug fix for ListCtrl in test4.py (Was a missing file... DSM!)
667
668Bug fix for occassional GPF on Win32 systems upon termination of a
669wxPython application.
670
671Added wxListBox.GetSelections returning selections as a Tuple.
672
673Added a wxTreeItemData that is able to hold any Python object and be
674associated with items in a wxTreeCtrl. Added test pytree.py to show
675this feature off.
676
677Added wxSafeYield function.
678
679OpenGL Canvas can be optionally compiled in to wxPython.
680
681Awesome new Demo Framework for showing off wxPython and for learning
682how it all works.
683
684The pre-built Win32 version is no longer distributing the wxWindows
685DLL. It is statically linked with the wxWindows library instead.
686
687Added a couple missing items from the docs.
688
689Added wxImage, wxImageHandler, wxPNGHandler, wxJPEGHandler,
690wxGIFHandler and wxBMPHandler.
691
692Added new methods to wxTextCtrl.
693
694Fixed some problems with how SWIG was wrapping some wxTreeCtrl
695methods.
696
697
698
699What's new in 2.0b8
700-------------------
701Support for using Python threads in wxPython apps.
702
703Several missing methods from various classes.
704
705Various bug fixes.
706
707
708
709What's new in 2.0b7
710-------------------
711Added DLG_PNT and DLG_SZE convienience methods to wxWindow class.
712
713Added missing constructor and other methods for wxMenuItem.
714
715
716
717What's new in 2.0b6
718-------------------
719Just a quickie update to fix the self-installer to be compatible with
720Python 1.5.2b2's Registry settings.
721
722
723What's new in 2.0b5
724-------------------
725Well obviously the numbering scheme has changed. I did this to
726reflect the fact that this truly is the second major revision of
727wxPython, (well the third actually if you count the one I did for
728wxWindows 1.68 and then threw away...) and also that it is associated
729with the 2.0 version of wxWindows.
730
731I have finally started documenting wxPython. There are several pages
732in the wxWindows documentation tree specifically about wxPython, and I
733have added notes within the class references about where and how wxPython
734diverges from wxWindows.
735
736Added wxWindow_FromHWND(hWnd) for wxMSW to construct a wxWindow from a
737window handle. If you can get the window handle into the python code,
738it should just work... More news on this later.
739
740Added wxImageList, wxToolTip.
741
742Re-enabled wxConfig.DeleteAll() since it is reportedly fixed for the
743wxRegConfig class.
744
745As usual, some bug fixes, tweaks, etc.
746
747
748
749What's new in 0.5.3
750-------------------
751Added wxSashWindow, wxSashEvent, wxLayoutAlgorithm, etc.
752
753Various cleanup, tweaks, minor additions, etc. to maintain
754compatibility with the current wxWindows.
755
756
757
758What's new in 0.5.0
759-------------------
760Changed the import semantics from "from wxPython import *" to "from
761wxPython.wx import *" This is for people who are worried about
762namespace pollution, they can use "from wxPython import wx" and then
763prefix all the wxPython identifiers with "wx."
764
765Added wxTaskbarIcon for wxMSW.
766
767Made the events work for wxGrid.
768
769Added wxConfig.
770
771Added wxMiniFrame for wxGTK.
772
773Changed many of the args and return values that were pointers to gdi
774objects to references to reflect changes in the wxWindows API.
775
776Other assorted fixes and additions.
777
778
779
780
781What's new in 0.4.2
782-------------------
783
784wxPython on wxGTK works!!! Both dynamic and static on Linux and
785static on Solaris have been tested. Many thanks go to Harm
786<H.v.d.Heijden@phys.tue.nl> for his astute detective work on tracking
787down a nasty DECREF bug. Okay so I have to confess that it was just a
788DSM (Dumb Stupid Mistake) on my part but it was nasty none the less
789because the behavior was so different on different platforms.
790
791The dynamicly loaded module on Solaris is still segfaulting, so it
792must have been a different issue all along...
793
794
795
796What's New in 0.4
797-----------------
798
7991. Worked on wxGTK compatibility. It is partially working. On a
800Solaris/Sparc box wxPython is working but only when it is statically
801linked with the Python interpreter. When built as a dyamically loaded
802extension module, things start acting weirdly and it soon seg-faults.
803And on Linux both the statically linked and the dynamically linked
804version segfault shortly after starting up.
805
8062. Added Toolbar, StatusBar and SplitterWindow classes.
807
8083. Varioius bug fixes, enhancements, etc.
809
810----------------------------------------------------------------------