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