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