]> git.saurik.com Git - wxWidgets.git/blob - docs/changes.txt
changed wxImage::ComputeHistogram to use wxHashMap
[wxWidgets.git] / docs / changes.txt
1 wxWindows 2 Change Log
2 ----------------------
3
4 INCOMPATIBLE CHANGES SINCE 2.2.x
5 ================================
6
7 wxBase:
8
9 - wxArray<T>::Remove(size_t) has been removed to fix compilation problems
10 under 64 bit architectures, please replace it with RemoveAt() in your
11 code.
12
13 - wxObject::CopyObject() and Clone() methods were removed because they
14 simply don't make sense for all objects
15
16 - wxEvent now has a pure virtual Clone() method which must be implemented
17 by all derived classes, if you have user-defined event classes please
18 add "wxEvent *Clone() const { return new MyEvent(*this); }" line to them
19
20 All (GUI):
21
22 - the event type constants are not constants any more but are dynamically
23 allocated during run-time which means that they can't be used as case labels
24 in the switch()es, you must rewrite them to use if()s instead
25
26 You may also define WXWIN_COMPATIBILITY_EVENT_TYPES to get the old behaviour
27 but this is strongly discouraged, please consider changing your codei
28 instead!
29
30 - wxDialog does not derive from wxPanel any longer - if you were using it in
31 your code, please update it. The quick fix for the most cases is to replace
32 the occurences of wxPanel with wxWindow.
33
34 - wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
35 have changed (to fix some unfortunate clashes), please check your code to
36 ensure that no tests for wxYES or wxNO are broken: for example, the following
37 will *NOT* work any longer:
38
39 if ( flags & wxYES_NO )
40 ... do something ...
41 if ( flags & wxYES )
42 ... do something else ...
43
44 - wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
45
46 - wxGridCellAttrProvider class API changed, you will need to update your code
47 if you derived any classes from it
48
49 - wxImage::ComputeHistogram()'s signature changed to
50 unsigned long ComputeHistogram(wxImageHistogram&) const
51
52 wxMSW:
53
54 - build system changed: setup.h is not a static file in include/wx any more
55 but is created as part of the build process under lib/<toolkit>/wx/include
56 where <toolkit> is of the form (msw|univ)[dll][u][d]. You'll need to update
57 the include path in your make/project files appropriately.
58
59 - child frames appear in the taskbar by default now, use wxFRAME_NO_TASKBAR
60 style to avoid it, wxFRAME_FLOAT_ON_PARENT style is now obsolete and has no
61 effect
62
63 - all overloads of wxDC::SetClippingRegion() combine the given region with the
64 previously selected one instead of replacing it
65
66 Unix ports:
67
68 - You should use `wx-config --cxxflags` in your makefiles instead of
69 `wx-config --cflags` for compiling C++ files. CXXFLAGS contains CFLAGS
70 and the compiler flags for C++ files only, CFLAGS should still be used
71 to compile pure C files.
72
73
74 OTHER CHANGES
75 =============
76
77 2.3.3
78 -----
79
80 wxBase:
81
82 - fixes to the command line parsing error and usage messages
83 - modified wxFileName::CreateTempFileName() to open the file atomically
84 (if possible) and, especially, not to leak the file descriptors under Unix
85 - memory leak in wxHTTP fixed (Dimitri)
86 - fixes to AM_PATH_WXCONFIG autoconf macro
87 - added wxHashMap class that replaces type-unsafe wxHashTable and is modelled
88 after STL hash_map
89
90 Unix (Base/GUI):
91
92 - wxWindows may be built using BSD and Solaris (and possibly other) make
93 programs and not only GNU make
94
95 All (GUI):
96
97 - wxImage::ComputeHistogram() now uses wxImageHistogram instead of type-unsafe
98 wxHashTable
99 - significantly improved native font support
100 - added IFF image handler
101 - fixed using custom renderers in wxGrid which was broken in 2.3.2
102 - support for multiple images in one file added to wxImage (TIFF and ICO formats)
103 - support for CUR and ANI files in wxImage added (Chris Elliott)
104 - wxTextCtrl::GetRange() added
105 - added wxGetFontFromUser() convenience function
106
107 wxMSW:
108
109 - small appearance fixes for native look under Windows XP
110 - huge (40*) speed up in wxMask::Create() (=> much faster toolbar creation)
111 - fixed flicker in wxTreeCtrl::SetItemXXX()
112 - fixed redraw problems in dynamically resized wxStaticText
113 - improvements to wxWindows applications behaviour when the system colours
114 are changed
115 - fixed wxProgressDialog for ranges > 65535
116 - wxFontEnumerator now returns all fonts, not only TrueType ones
117 - bugs in handling wxFrame styles (border/caption related) fixed
118 - showing a dialog from EVT_RADIOBUTTON handler doesn't lead to an infinite
119 recursion any more
120 - wxTextCtrl with wxTE_RICH flag scrolls to the end when text is appended to it
121
122 wxGTK:
123
124 - wxDirDialog now presents the file system in standard Unix way
125 - wxButton now honours wxBU_EXACTFIT
126 - wxStaticBox now honours wxALIGN_XXX styles
127
128 wxHTML:
129
130 - fixed wxHtmlHelpController's cache files handling on big endian machines
131 - added blocking and redirecting capabilities to wxHtmlWindow via
132 wxHtmlWindow::OnOpeningURL()
133
134 2.3.2
135 -----
136
137 New port: wxUniv for Win32/GTK+ is now included in the distribution.
138
139 wxBase:
140
141 - wxRegEx class added
142 - wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
143 - wxTextBuffer and wxTextFile(wxStream) added (Morten Hanssen)
144 - more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
145 glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
146 capabilities at runtime instead of in the configure script.
147
148 All (GUI):
149
150 - support for virtual list control added
151 - column images in report mode of the list control
152 - wxFindReplaceDialog added (based on work of Markus Greither)
153 - wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
154 - polygon support in wxRegion (Klaas Holwerda)
155 - wxStreamToTextRedirector to allow easily redirect cout to wxTextCtrl added
156 - fixed bug with using wxExecute() to capture huge amounts of output
157 - new wxCalendarCtrl styles added (Søren Erland Vestø)
158 - wxWizard changes: loading from WXR support, help button (Robert Cavanaugh)
159 - wxDirSelector() added (Paul A. Thiessen)
160 - wxGrid cell editing veto support (Roger Gammans)
161 - wxListCtrl ITEM_FOCUSED event added
162 - support for ICO files in wxImage added (Chris Elliott)
163
164 wxMSW:
165
166 - support for the DBCS fonts (CP 932, 936, 949, 950) (Nathan Cook)
167 - new library naming convention under VC++ -- please change your application
168 project files
169
170 wxGTK:
171
172 - fixed popup menu positioning bug
173
174 wxHTML:
175
176 - new HTML parser with correct parsing of character entities and fixes
177 to tags parsing
178 - added support for animated GIFs
179
180 2.3.1
181 -----
182
183 wxBase:
184
185 - Fixes for gcc 3.0
186 - Fixed new charset detection code
187 - ODBC Informix fixes (submitted by Roger Gammans)
188 - Added ODBC date support to wxVariant
189 - Added wxDir::Traverse
190 - Added wxSingleInstanceChecker class
191 - Removed redundant wxDebugContext functions using C++ streams,
192 so now standard stream usage should be unnecessary
193
194 All (GUI):
195
196 - Added wxDbGrid class for displaying ODBC tables
197 - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
198 user code can get access to the edit control when it is created, (to
199 push on a custom event handler for example)
200 - Added wxTextAttr class and SetStyle, SetDefaultStyle and
201 GetDefaultStyle methods to wxTextCtrl
202 - Added wxSingleInstanceChecker
203 - Improvements to Tex2RTF
204 - Added Paul and Roger Gammans' grid controls
205 - Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
206 first-time saved
207 - Fixed memory leak in textcmn.cpp
208 - Various wxXML enhancements
209 - Removed wxCLIP_CHILDREN style from wxSplitterWindow
210 - Fixed memory leak in DoPrint, htmprint.cpp
211 - Fixed calendar sample bug with using wxCommandEvent::GetInt()
212 instead of GetId()
213 - Added wxDbGrid combining wxODBC classes with wxGrid
214 - Added more makefiles and project files for contrib hierarchy
215
216 wxMSW:
217
218 - Fixed wxApp::ProcessMessage so controls don't lose their
219 accelerators when the accelerators are redefined elsewhere
220 - Accelerators consisting of simple keystrokes (without control,
221 alt or shift) now work
222 - Compile fixes for Watcom C++ added
223 - Compile fixes for Cygwin 1.0 added
224 - Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop()
225 - Replaced wxYield() call in PopupMenu() by a much safer
226 wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones
227 - Enter processing in wxSpinCtrl fixed
228 - Fixed bug in determining the best listbox size
229 - Fix for wxFrame's last focus bug
230 - We now send iconize events
231 - Fixed wxFrame::SetClientSize() with toolbar bug
232 - Added mousewheel processing
233 - Added wxSystemSettings::Get/SetOption so we can configure
234 wxWindows at run time; used this to implement no-maskblt option
235 in wxDC
236 - Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI
237 child frame styles are honoured
238
239 wxGTK:
240
241 - Fixed slider rounding bug
242 - Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding()
243 - We now send iconize events
244 - Fix for discrepancies between wxNotebookEvent and wxNotebook
245 GetSelection() results
246
247 2.3.0
248 -----
249
250 wxBase:
251
252 - fixed problem with wxURL when using static version of the library
253 - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
254 - wxMimeTypesManager now can create file associations too (Chris Elliott)
255 - wxCopyFile() respects the file permissions (Roland Scholz)
256 - wxFTP::GetFileSize() added (Søren Erland Vestø)
257 - wxDateTime::IsSameDate() bug fixed
258 - wxTimeSpan::Format() now behaves more as expected, see docs
259 - wxLocale now provides much more convenient API for setting language and
260 detecting current system language. New API is more abstracted and truly
261 cross-platform, independent of underlying C runtime library.
262
263 All (GUI):
264
265 - new wxToggleButton class (John Norris, Axel Schlueter)
266 - wxCalendarCtrl not highlighting the date with time part bug fixed
267 - wxADJUST_MINSIZE sizer flag added
268 - FindOrCreateBrush/Pen() bug fix for invalid colour values
269 - new wxXPMHandler for reading and writing XPM images
270 - added new (now recommended) API for conversion between wxImage and wxBitmap
271 (wxBitmap::ConvertToImage() and wxBitmap::wxBitmap(wxImage&) instead of
272 wxImage methods and ctor)
273 - ODBC classes now support DB2, Interbase, and Pervasive SQL
274 - ODBC documentation complete!!
275 - ODBC classes have much Unicode support added, but not complete
276 - ODBC experimental BLOB support added, but not completely tested
277 - ODBC NULL column support completed (Roger/Paul Gammans)
278 - ODBC All "char *" and char arrays removed and replaced with wxString use
279
280 wxMSW:
281
282 - threads: bug in wxCondition::Broadcast fixed (Pieter van der Meulen)
283 - fixed bug in MDI children flags (mis)handling
284 - it is possible to compile wxCHMHelpController with compilers
285 other than Visual C++ now and hhctrl.ocx is loaded at runtime
286
287 wxGTK:
288
289 - added support for wchar_t (wxUSE_WCHAR_T) under Unix
290
291 wxHTML:
292
293 - mew feature, wxHtmlProcessor for on-the-fly modification of HTML markup
294 - visual enhancements to contents panel of wxHtmlHelpController
295
296 2.2.0
297 -----
298
299 wxBase:
300
301 - Fixed bug with directories with trailing (back)slashes in wxPathExists
302 - wxString: added wxArrayString::operator==() and !=()
303 - Fixes for wxCmdLineParser
304 - Added wxGetLocalTimeMillis
305 - Completed Czech translations
306 - Some stream corrections
307 - added missing consts to wxPoint operators
308 - wxDateTime ParseFormat fixes
309 - wxFile::Open(write_append) will create file if it doesn't exist
310 - small fixes to MIME mailcap test command handling, more MIME tests in the sample
311
312 All (GUI):
313
314 - wxGenericDragImage now allows virtual image drawing, and
315 flicker-free dragging is now possible
316 - Added wxPrinter::GetLastError
317 - Fixed wxLogGui reentrancy problem
318 - Paper names now translated
319 - wxGrid fixes
320 - Generic validator now caters for more cases (integers in
321 wxTextCtrl, strings in wxChoice, wxComboBox)
322 - Fixed crash when docview On... functions return FALSE. Show
323 error message when an non-existent filename is typed into the Open
324 File dialog.
325 - Corrected Baltic font encoding handling
326 - wxImage: enhanced TIFF code, added new platform-independent BMP
327 writing code
328 - wxKeyEvent::GetKeyCode() and HasModifiers() added and documented
329 - Fixed wxPropertyForm crashes in sample
330 - wxWizard now calls TransferDataFromWindow() before calling
331 wxWizardPage::GetNext() fixing an obvious bug
332
333 wxMSW:
334
335 - wxWindow::GetCharWidth/Height now calculated accurately.
336 This will affect all .wxr dialog resources, so for
337 backward compatibility, please set
338 wxDIALOG_UNIT_COMPATIBILITY to 1 in setup.h
339 - wxListCtrl: set item text in LIST_ITEM_ACTIVATED events
340 - wxTextCtrl: implemented setting colours for rich edit controls
341 - wxColour now accepts both grey and gray
342 - BC++ DLL compilation fixed
343 - Watcom C++ makefiles improved for JPEG and TIFF compilation
344 - Fixed submenu accelerator bug
345 - Fixed dialog focus bug (crash if the previous window to have
346 the focus was destroyed before the dialog closed)
347 - Too-small default wxTextCtrl height fixed
348 - fixed "missing" initial resize of wxMDIChildFrame
349 - wxFrame restores focus better
350 - Now ignore wxTHICK_FRAME in wxWindow constructor: only relevant to
351 frames anddialogs, interferes with other window styles otherwise
352 (sometimes you'd get a thick frame in a subwindow)
353 - wxTextCtrl insertion point set to the beginning of the control by SetValue
354 - Fix so wxMDIParentFrame is actually shown when Show(TRUE) is called.
355 - wxFileDialog: adjusts struct size if there's an error (struct
356 sizes can be different on different versions of Windows)
357 - wxImageList::GetSize() documented and added to wxMSW
358 - fixed default dialog style to make them non resizeable again
359 - fixed wxFrame::IsShown() which always returned TRUE before
360
361 wxGTK:
362
363 - Please see docs/gtk/changes.txt.
364
365 wxMotif:
366
367 - Small compilation fixes
368
369 Documentation:
370
371 - wxCaret documented
372
373 2.1.16
374 ------
375
376 wxBase:
377
378 All (GUI):
379
380 wxMSW:
381
382 - Various bug fixes
383 - Added wxCHMHelpController, for invoking MS HTML Help
384 files. This works under VC++ only
385 - Modal dialog handling improved
386 - Printer dialog now modal
387
388 wxGTK:
389
390 - Various bug fixes
391
392 wxMotif:
393
394 - Various bug fixes
395
396 2.1.15
397 ------
398
399 Documentation:
400
401 - Added docs/tech for technical notes
402
403 File hierarchy:
404
405 - Started new contrib hierarchy that mirrors
406 the main lib structure; moved OGL and MMedia into it
407
408 wxBase:
409
410 - wxSocket support
411 - wxDateTime replaces and extends old wxDate and wxTime classes (still
412 available but strongly deprecated) with many new features
413 - wxLongLong class provides support for (signed) 64 bit integers
414 - wxCmdLineParser class for parsing the command line (supporting short and
415 long options, switches and parameters of different types)
416 - it is now possible to build wxBase under Win32 (using VC++ only so far)
417 and BeOS (without thread support yet)
418 - wxThread class modified to support both detached and joinable threads, also
419 added new GetCPUCount() and SetConcurrency() functions (useful under Solaris
420 only so far)
421 - wxDir class for enumerating files in a directory
422 - wxLog functions are now (more) MT-safe
423 - wxStopWatch class, timer functions have more chances to return correct
424 results for your platform (use ANSI functions where available)
425 - wxString::ToLong, ToULong, ToDouble methods and Format() static one added
426 - buffer overflows in wxString and wxLog classes fixed (if snprintf() function
427 is available)
428 - wxArray::RemoveAt() replaces deprecated wxArray::Remove(index)
429
430 all (GUI):
431
432 - Added wxImage::Rotate.
433 - new wxCalendarCtrl class for picking a date interactively
434 - wxMenu(Bar)::Insert() and Remove() functions for dynamic menu menagament
435 - wxToolBar supports arbitrary controls (not only buttons) and can be
436 dynamically changed (Delete/Insert functions)
437 - vertical toolbars supported by MSW and GTK native wxToolBar classes
438 - wxTreeCtrl and wxListCtrl allow setting colour/fonts for individual items
439 - "file open" dialog allows selecting multiple files at once (contributed by
440 John Norris)
441 - wxMimeTypesManager uses GNOME/KDE MIME database to get the icons for the
442 MIME types if available (Unix only)
443 - wxDC::DrawRotatedText() (based on contribution by Hans-Joachim Baader)
444 - TIFF support added (libtiff required and included in the distribution)
445 - PCX files can now be written (256 and 24 bits)
446 - validators may work recursively if wxWS_EX_VALIDATE_RECURSIVELY is set
447 - wxScrolledWindow now has keyboard interface
448 - wxTextEntryDialog may be used for entering passwords (supports wxTE_PASSWORD)
449 - added wxEncodingConverter and improved wxFontMapper
450 for dealing with convertions between different encodings,
451 charsets support in wxLocale and wxHTML
452 - wxDragImage class added
453 - samples/help improved to show standard and advanced HTML help
454 controllers, as well as native help
455 - moved wxTreeLayout class to main lib
456
457 wxMSW:
458
459 - wxFrame::MakeFullScreen added.
460 - support for enhanced metafiles added, support for copying/pasting metafiles
461 (WMF and enhanced ones) fixed/added.
462 - implemented setting colours for push buttons
463 - wxStatusBar95 may be now used in dialogs, panels (not only frames) and can be
464 positioned along the top of the screen and not only at the bottom
465 - wxTreeCtrl::IsVisible() bug fixed (thanks to Gary Chessun)
466 - loading/saving big (> 32K) files in wxTextCtrl works
467 - tooltips work with wxRadioBox
468 - wxBitmap/wxIcon may be constructed from XPM included into a program, as in
469 Unix ports
470 - returning FALSE from OnPrintPage() aborts printing
471 - VC++ makefiles and project files made (mostly) consistent
472 - wxSetCursorEvent added
473
474 wxGTK:
475
476 - wxFontMapper endless recursion bug (on some systems) fixed
477 - wxGTK synthesizes wxActivateEvents
478 - UpdateUI handlers may be used with wxTextCtrl
479
480 wxMotif:
481
482 - wxMenu::Enable works
483 - wxToolBar bugs fixed
484 - OGL samples made to work again
485
486 wxHTML:
487
488 - almost complete rewrite of wxHtmlHelpController,
489 including faster search, bookmarks, printing, setup dialog
490 and cross-platform binary compatible .cached files for faster
491 loading of large helpbooks, case insensitive search
492 splitted into 3 parts: wxHtmlHelpData, Frame and Controller
493 - added support for charsets and <meta> tag
494 - added support for font faces and justified paragraphs,
495 taken some steps to prepare wxHTML for frames
496 - added dynamic pushing/poping of wxHtmlParser tag handlers
497 - improved HTML printing
498 - added extensive table of HTML characters substitutions (&nbsp; etc.)
499 - fixed wxHtmlWindow flickering, several minor bugfixes
500 - added some tags: <address>, <code>, <kbd>, <samp>, <small>, <big>,
501 fixed handling of relative and absolute font sizes in <font size>
502
503
504 NOTE: for changes after wxWindows 2.1.0 b4, please see the CVS
505 change log.
506
507 2.1.0, b4, May 9th 1999
508 -----------------------
509
510 wxGTK:
511
512 - JPEG support added.
513 - Many fixes and changes not thought worth mentioning in this file :-)
514
515 wxMSW:
516
517 - wxNotebook changes: can add image only; wxNB_FIXEDWIDTH added;
518 SetTabSize added.
519 - JPEG support added.
520 - Fixes for Cygwin compilation.
521 - Added wxGA_SMOOTH and wxFRAME_FLOAT_ON_PARENT styles.
522 - Many fixes people didn't tell this file about.
523
524 wxMotif:
525
526
527 General:
528
529 - Some changes for Unicode support, including wxchar.h/cpp.
530
531
532 2.0.1 (release), March 1st 1999
533 -------------------------------
534
535 wxGTK:
536
537 - wxGLCanvas fixes.
538 - Slider/spinbutton fixes.
539
540 wxMSW:
541
542 - Fixed problems with <return> in dialogs/panels.
543 - Fixed window cursor setting.
544 - Fixed toolbar sizing and edge-clipping problems.
545 - Some makefile fixes.
546
547 wxMotif:
548
549 - None.
550
551 General:
552
553 - Added wxUSE_SOCKETS.
554 - More topic overviews.
555 - Put wxPrintPaperType, wxPrintPaperDatabase into
556 prntbase.h/cpp for use in non-PostScript situations
557 (e.g. Win16 wxPageSetupDialog).
558
559
560 Beta 5, February 18th 1999
561 --------------------------
562
563 wxGTK:
564
565 - wxExecute improved.
566
567 wxMSW:
568
569 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
570 expected).
571 - Changed VC++ makefiles (.vc) so that it's possible to have
572 debug/release/DLL versions of the library available simultaneously,
573 with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
574 - Added BC++ 5 IDE files and instructions.
575 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
576 - Fixed focus-related crash.
577
578 wxMotif:
579
580 - Cured asynchronous wxExecute crash.
581 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
582
583 General:
584
585 - wxLocale documented.
586 - Added include filenames to class reference.
587 - wxHelpController API changed: SetBrowser becomes SetViewer,
588 DisplaySection works for WinHelp, help sample compiles under Windows
589 (though doesn't display help yet).
590
591 Beta 4, February 12th 1999
592 --------------------------
593
594 wxGTK:
595
596 - Miscellaneous fixes.
597
598 wxMSW:
599
600 - Makefiles for more compilers and samples; Cygwin makefiles
601 rationalised.
602 - Added VC++ project file for compiling wxWindows as DLL.
603
604 wxMotif:
605
606 - Added OnEraseBackground invocation.
607 - Added wxRETAINED implementation for wxScrolledWindow.
608 - Cured scrolling display problem by adding XmUpdateDisplay.
609 - Tried to make lex-ing in the makefile more generic (command line
610 syntax should apply to both lex and flex).
611 - Changed file selector colours for consistency (except for buttons:
612 crashes for some reason).
613 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
614 of malloc, which causes memory problems).
615
616 General:
617
618 - Further doc improvements.
619 - wxGenericValidator added.
620 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
621 automatically.
622
623 Beta 3, January 31st 1999
624 -------------------------
625
626 wxGTK:
627
628 - wxClipboard/DnD API changes (still in progress).
629 - wxToolTip class added.
630 - Miscellaneous fixes.
631
632 wxMSW:
633
634 - wxRegConfig DeleteAll bug fixed.
635 - Makefiles for more compilers.
636 - TWIN32 support added.
637 - Renamed VC++ makefiles from .nt to .vc, and
638 factored out program/library settings.
639 - Fixed wxIniConfig bug.
640
641 wxMotif:
642
643 - A few more colour fixes.
644 - wxGLCanvas and OpenGL samples working.
645 - Some compiler warnings fixed.
646 - wxChoice crash fix.
647 - Dialog Editor starting to work on Motif.
648
649 General:
650
651 - wxBusyCursor class added.
652 - Added samples/dde.
653 - More doc improvements, incl. expanding docs/html/index.htm.
654
655 Beta 2, January 1999
656 --------------------
657
658 wxGTK:
659
660 wxMSW:
661
662 - 16-bit BC++ compilation/linking works albeit without the resource system.
663
664 wxMotif:
665
666 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
667 the right place.
668 - Cured some widget table clashes.
669 - Added thread support (Robert).
670 - wxPoem sample now works.
671
672 General:
673
674 - Rearranged documentation a bit.
675 - Sash window uses area of first frame/dialog to paint over when drawing
676 the dragged sash, not just the sash window itself (it clipped to the right
677 or below).
678 - Made resource sample use the correct Cancel button id.
679 - Moved wxProp to main library (generic directory), created proplist
680 sample.
681 - Added bombs and fractal samples.
682
683 Beta 1, December 24th 1998
684 --------------------------
685
686 wxGTK:
687
688 - Various
689
690 wxMSW, wxMotif: not in sync with this release.
691
692
693 Alpha 18, December 29th 1998
694 ----------------------------
695
696 wxMSW:
697
698 - Win16 support working again (VC++ 1.5)
699 - Win16 now uses generic wxNotebook, wxListCtrl,
700 wxTreeCtrl -- more or less working now, although
701 a little work on wxNotebook is still needed.
702 Under 16-bit Windows, get assertion when you click
703 on a tab.
704 - Wrote 16-bit BC++ makefiles: samples don't yet link.
705 - Added CodeWarrior support to distribution courtesy
706 of Stefan Csomor.
707
708 wxMotif:
709
710 - Cured scrolling problem: scrollbars now show/hide themselves
711 without (permanently) resizing the window.
712 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
713 that disabled scrollbar paging.
714 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
715 colours correctly.
716 - Removed major bug whereby dialogs were unmanaged automatically
717 when any button was pressed.
718 - Fixed colours of wxWindow scrollbars, made list and text controls
719 have a white background.
720 - Fixed dialog colour setting.
721 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
722 they have sensible colours by default.
723 - Fixed a bug in wxStaticBox.
724 - Cured wxTreeCtrl bug: now works pretty well!
725 - Debugged DrawEllipticArc (a ! in the wrong place).
726 - Added SetClippingRegion( const wxRegion& region ).
727 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
728
729 Alpha 17, November 22nd 1998
730 ----------------------------
731
732 wxMSW:
733
734 - More documentation updates, especially for
735 wxLayoutWindow classes and debugging facilities.
736 - Changed wxDebugContext to use wxDebugLog instead
737 of wxTrace.
738 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
739 However, DLL support may be broken for BC++ since
740 VC++ 6 required changing of WXDLLEXPORT keyword
741 position.
742 - Numerous miscellaneous changes.
743
744 wxMotif:
745
746 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
747 were too buggy (probably not design for dynamic addition/removal of
748 child frames).
749 - Some improvements to the wxNotebook implementation.
750 - wxToolBar now uses a bulletin board instead of a form, in an attempt
751 to make it possible to add ordinary wxControls to a toolbar.
752 - Cured problem with not being able to use global memory operators,
753 by defining two more global operators, so that the delete will match
754 the debugging implementation.
755 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
756 global memory operators (usually OK) and #defining new to be
757 WXDEBUG_NEW (sometimes it might not be OK).
758 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
759 - Added a parent-existance check to popup menu code to make it not crash.
760 - Added some optimization in wxWindow::SetSize to produce less flicker.
761 It remains to be seen whether this produces any resize bugs.
762
763 It's a long time since I updated this file. Previously done:
764
765 - wxFrame, wxDialog done.
766 - wxScrolledWindow done (but backing pixmap not used at present).
767 - wxBitmap done though could be tidied it up at some point.
768 - Most basic controls are there, if not rigorously tested.
769 - Some MDI support (menus appear on child frames at present).
770 - wxNotebook almost done.
771 - wxToolBar done (horizontal only, which would be easy to extend
772 to vertical toolbars).
773
774 More recently:
775
776 - Colour and font changing done (question mark over what happens
777 to scrollbars).
778 - Accelerators done (for menu items and buttons). Also event loop
779 tidied up in wxApp so that events are filtered through ProcessXEvent.
780 - wxWindow::GetUpdateRegion should now work.
781
782 Alpha 16, September 8th 1998
783 ----------------------------
784
785 wxMSW:
786
787 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
788 sample.
789 - Guilhem's socket classes added, plus wxsocket sample.
790 - A few more makefiles added.
791 - GnuWin32/BC++ compatibility mods.
792 - Further doc updates.
793 - wxProp updates for correct working with wxGTK.
794
795 wxMotif:
796
797 - First start at Motif port.
798 - Made makefiles for wxMotif source directory and minimal sample.
799 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
800 wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
801 wxMenu, wxMenuItem, wxMenuBar
802
803 Alpha 15, August 31st 1998
804 --------------------------
805
806 wxMSW:
807
808 - wxBitmap debugged.
809 - wxDC::GetDepth added.
810 - Contribution added whereby wxBitmap will be
811 converted to DC depth if they don't match.
812 - wxConfig API improved, documentation updated.
813 - Printing classes name conventions cleaned up.
814 - wxUpdateUIEvent now derives from wxCommandEvent
815 so event can travel up the window hierachy.
816
817 Alpha 14, July 31st 1998
818 ------------------------
819
820 wxMSW:
821
822 - Toolbar API has been simplified, and now
823 wxFrame::GetClientArea returns the available client
824 area when toolbar, status bar etc. have been accounted for.
825 wxFrame::CreateToolBar added in line with CreateStatusBar.
826 - Documentation updates, incl. for wxToolBar.
827 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
828 - Various additions from other folk, e.g. streams, wxConfig
829 changes, wxNotebook.
830 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
831
832 Alpha 13, July 8th 1998
833 -----------------------
834
835 wxMSW:
836
837 - Implemented wxPoint as identical to POINT on Windows, and
838 altered wxDC wxPoint functions to use wxPoint directly in
839 Windows functions, for efficiency.
840 - Cured wxASSERT bug in wxStatusBar95.
841 - #ifdefed out some bits in oleutils.cpp for compilers that
842 don't support it.
843 - Added some operators to wxPoint, wxSize.
844 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
845
846 Alpha 12, July 7th 1998
847 -----------------------
848
849 wxMSW:
850
851 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
852 have flat toolbars on Win98 or Win95 with IE >= 3 installed.
853
854 Alpha 11, July 3rd 1998
855 -----------------------
856
857 wxMSW:
858
859 - Added thread.h, thread.cpp.
860 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
861 wxMenuBar.
862 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
863 SetTextColor to SetTextColour, and added or made public several
864 wxMenuItem accessors.
865 - Added two overloads to wxRegion::Contains. Added
866 wxRegion::IsEmpty for a more consistent naming convention.
867 - Added Vadim's wxDataObject and wxDropSource.
868 - ENTER/LEAVE events now work.
869 - Cured wxMemoryDC bug where the DC wasn't being deleted.
870 - Cured wxGauge SetSize major bugginess.
871 - Cured problem where if a GDI object was created on the stack,
872 then went out of scope, then another object was selected into
873 the DC, GDI objects would leak. This is because the assignment
874 to e.g. wxDC::m_pen would delete the GDI object without it first
875 being selected out of the DC. Cured by selecting the old DC object
876 first, then doing the assignment.
877 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
878 - Various other bug fixes and additions.
879
880 Generic:
881
882 - Major work on Dialog Editor (still plenty to go).
883 - Expanded documentation a bit more.
884
885 Alpha 10, May 7th 1998
886 ----------------------
887
888 wxMSW:
889
890 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
891 and wxIcon functions so that you can specify what size of
892 icon should be loaded. Probably will remain a Windows-specific thing.
893 - wxStatusBar95 now works for MDI frames.
894 - Toolbars in MDI frames now behave normally. They still
895 require application-supplied positioning code though.
896 - Changed installation instructions, makefiles and batch files
897 for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
898 change to support Mingw32/EGCS. Bison now used by default.
899
900 Alpha 9, April 27th 1998
901 ------------------------
902
903 wxMSW:
904
905 - Cured bug in wxStatusBar95 that caused a crash if multiple
906 fields were used.
907 - Added Gnu-Win32 b19/Mingw32 support by changing resource
908 compilation and pragmas.
909 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
910 commands because VZ changed the id setting in wxMenu::MSWCommand.
911
912 Generic:
913
914 - Corrected some bugs, such as the wxModule compilation problem.
915 - Added Gnu-Win32 b19/Mingw32 support by changing resource
916 compilation and pragmas.
917 - Changed SIZEOF to WXSIZEOF.
918
919 Alpha 8, April 17th 1998
920 ------------------------
921
922 wxMSW:
923
924 - Added IsNull to wxGDIObject to check if the ref data is present or not.
925 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
926 some reason :-(
927 - Added wxJoystick class and event handling, and simple demo.
928 - Added simple wxWave class. Needs Stop() function.
929 - Added wxModule (module.h/module.cpp) to allow definition
930 of modules to be initialized and cleaned up on wxWindows
931 startup/exit.
932 - Start of Mingw32 compatibility (see minimal and dialogs samples
933 makefile.m95 files, and install.txt).
934 - Note: Windows printing has stopped working... will investigate.
935 VADIM'S CHANGES:
936 - Updated wxString: bug fixes, added wxArrayString, some
937 compatibility functions.
938 - Updated log.h/cpp, added wxApp::CreateLogTarget.
939 - file.h: new wxTempFile class.
940 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
941 - statbr95: wxStatusBar95 control.
942 - registry.h/cpp: wxRegKey class for Win95 registry.
943 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
944 - wxConfig and wxFileConfig classes.
945
946 Generic:
947
948 - Added src/other/png, src/other/zlib directories.
949 - Added samples/png.
950 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
951 Porters, please check particularly your wxTreeCtrl and wxListCtrl
952 header files.
953 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
954
955 Alpha 7, March 30th 1998
956 ------------------------
957
958 wxMSW:
959
960 - Added tab classes, tab sample.
961 - Now can return FALSE from OnInit and windows will be
962 cleaned up properly before exit.
963 - Improved border handling so panels don't get borders
964 automatically.
965 - Debugged MDI activation from Window menu.
966 - Changes to memory debug handling, including checking for
967 memory leaks on application exit - but see issues.txt for
968 unresolved issues.
969 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
970 to allow maintenance of an icon in the Windows 95 taskbar
971 tray area.
972 - Got MFC sample working (MFC and wxWindows in the same
973 application), partly by tweaking ntwxwin.mak settings.
974 - Got DLL compilation working again (VC++).
975 - Changed wxProp/Dialog Editor filenames.
976
977 Generic:
978
979 - Added tab classes, tab sample.
980 - Revised memory.cpp, memory.h slightly; memory.h now #defines
981 new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
982 now checks for leaks on exit. Added memcheck sample.
983 See src/msw/issues.txt for more details.
984 - resource.h, resource.cpp changed to make wxDefaultResourceTable
985 a pointer. Now initialize resource system with
986 wxInitializeResourceSystem and wxCleanUpResourceSystem, to
987 allow better control of memory.
988 - wxString now derives from wxObject, to enable memory leak
989 checking.
990 - Added some #include fixes in various files, plus changed
991 float to long in wxToolBar files.
992
993 Alpha 6, March 10th 1998
994 ------------------------
995
996 wxMSW:
997
998 - Found stack error bug - stopped unwanted OnIdle recursion.
999 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
1000 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
1001 check if the number of top-level windows is zero before
1002 exiting. Also, wxApp::GetTopWindow will return either
1003 m_topWindow or the first member of wxTopLevelWindows, so you
1004 don't have to call wxApp::SetTopWindow.
1005 - Added dynarray.h/dynarray.cpp (from Vadim).
1006 - Added first cut at OLE drag and drop (from Vadim). dnd sample
1007 added. Drop target only at this stage. See src/msw/ole/*.cpp,
1008 wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
1009 Doesn't work with GnuWin32 - no appropriate headers e.g. for
1010 IUnknown.
1011 Doesn't work with BC++ either - crashes on program startup.
1012 - Added Vadim's owner-draw modifications - will probably remain
1013 Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
1014 - Added wxLB_OWNERDRAW for owner-draw listboxes.
1015 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
1016 Doesn't entirely work for WIN16.
1017 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
1018 can also be used as an argument to wxMenu::Append, not just for
1019 internal implementation.
1020 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
1021 in makeg95.env, together with mingw32.bat). However, resource
1022 binding is not working yet so most apps with dialogs crash.
1023
1024 Generic:
1025
1026 - Added Vadim's dynarray.h, dynarray.cpp.
1027 - Added Vadim's menuitem.cpp.
1028 - Added Windows-specific wxCheckListBox,
1029 owner-draw wxListBox, and drag-and-drop
1030 (see docs/msw/changes.txt).
1031
1032 Alpha 5, 14th February 1998
1033 --------------------------
1034
1035 wxMSW:
1036
1037 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
1038 DISTRIBUTIONS. This change log will therefore now refer to
1039 the Windows-specific code only. See docs/changes.txt for generic
1040 changes.
1041 - Removed Windows-specific reference counting system (GDI
1042 resources were cleaned up in idle time) - minimal
1043 advantages now we have a wxWin reference counting system.
1044 - Added missing WXDLLEXPORT keywords so DLL compilation works
1045 again.
1046 - Removed most warnings for GnuWin32 compilation.
1047 - Added wxRegion/wxRegionIterator, but haven't yet used it in
1048 e.g. wxDC.
1049
1050 Generic:
1051
1052 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
1053 DISTRIBUTIONS. This change log will therefore now refer to
1054 the generic code only. See docs/msw/changes.txt for Windows-specific
1055 changes.
1056 - Readmes, change logs and installation files now go in
1057 platform-specific directories under docs, e.g. docs/msw,
1058 docs/gtk.
1059 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
1060 created dynamically, not as a global object.
1061 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
1062 - Changed names of some include/wx/generic headers to be
1063 consistent and to conform to gcc pragma conventions. Also
1064 changed choicesg.cpp to choicdgg.cpp.
1065 - Added gcc pragmas.
1066 - Added gtk inclusion in include/wx headers.
1067 - Added consistent file headings to source and headers.
1068 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
1069 added a few references to wxTransString.
1070 - Added operator to wxTransString that converts automatically
1071 to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
1072 - samples/internat now works (minimally).
1073 - Added wxMouseEvent::GetPosition and
1074 wxMouseEvent::GetLogicalPosition, both returning wxPoints.
1075 - Made wxSize and wxRect contain longs not ints.
1076 - Cured some lemory leaks (thanks Vadim).
1077 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
1078 will only keep processing OnIdle if it returns TRUE from
1079 MoreRequested.
1080
1081 Alpha 4, 31st January 1998
1082 --------------------------
1083
1084 All:
1085
1086 - Changed wxDC functions to take longs instead of floats. GetSize now takes
1087 integer pointers, plus a version that returns a wxSize.
1088 - const keyword added to various wxDC functions.
1089 - Under Windows, wxDC no longer has any knowledge of whether
1090 an associated window is scrolled or not. Instead, the device
1091 origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
1092 - wxScrolledWindow applications can optionally override the virtual OnDraw
1093 function instead of using the OnPaint event handler. The wxDC passed to
1094 OnDraw will be translated by PrepareDC to reflect scrolling.
1095 When drawing outside of OnDraw, must call PrepareDC explicitly.
1096 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
1097 scrolling toolbars.
1098 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
1099 to help printing with multiple pages.
1100 - IPC classes given base classes (wxConnectionBase etc.) which
1101 define the API used by different implementations. DDE
1102 implementation updated to use these base classes.
1103 - wxHelpInstance now separated into wxHelpControllerBase (base
1104 for all implementations), wxWinHelpController (uses standard
1105 WinHelp), wxXLPHelPController (talks to wxHelp by DDE or
1106 TCP/IP). There will be others eventually, such as
1107 wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
1108 - Added Vadim Zeitlin's wxString class plus
1109 internationalization code (gettext simulation, wxLocale, etc.).
1110 New files from Vadim:
1111 include\wx\string.h
1112 include\wx\debug.h
1113 include\wx\file.h
1114 include\wx\log.h
1115 include\wx\intl.h
1116 src\common\string.cpp
1117 src\common\log.cpp
1118 src\common\intl.cpp
1119 src\common\file.cpp
1120 No longer use GNU wxString files.
1121 - Split off file-related functions into include\wx\filefn.h and
1122 src\common\filefn.cpp.
1123 - Borland C++ support (WIN32) for main library and
1124 samples, using makefile.b32 files.
1125 - Preparation done for allowing BC++ to compile wxWin as a DLL,
1126 including changes to defs.h.
1127 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
1128 introduced.
1129 - Added wxShowEvent (generated when window is being shown or
1130 hidden).
1131 - Got minimal, docview, mdi samples working for 16-bit VC++ and
1132 cured 16-bit problem with wxTextCtrl (removed global memory
1133 trick).
1134 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
1135
1136 Alpha 3, September 1997
1137 -----------------------
1138
1139 All:
1140
1141 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
1142 - Instigated new file hierarchy, split files and classes up more logically.
1143 - PrologIO and some other utils now put into core library.
1144 - Revamped print/preview classes, added wxPageSetupDialog.
1145 - Started documentation.
1146
1147 Alpha 2, 30th April 1997
1148 ------------------------
1149
1150 All:
1151
1152 - EVT_... macros now have at least one argument, for conformance
1153 with MetroWerks compiler.
1154 - Added ids to .wxr file format.
1155 - Got Dialog Editor compiled and running again but need
1156 to extend functionality to be in line with new controls.
1157 Added dialoged\test app to allow dynamic loading of .wxr files
1158 for testing purposes.
1159 - Rewrote wxBitmap to allow installable file type
1160 handlers.
1161 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
1162 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
1163 fully).
1164 - Added back wxRadioBox.
1165 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
1166 a separate file.
1167
1168 Alpha 1, 5th April 1997
1169 -----------------------
1170
1171 Generic:
1172
1173 At this point, the following has been achieved:
1174
1175 - A lot, but not all, of the code has been revamped for better
1176 naming conventions, protection of data members, and use of
1177 wxString instead of char *.
1178 - Obsolete functionality deleted (e.g. default wxPanel layout,
1179 old system event system) and code size reduced.
1180 - Class hierarchy changed (see design doc) - base classes such
1181 as wxbWindow now removed.
1182 - No longer includes windows.h in wxWin headers, by using stand-in
1183 Windows types where needed e.g. WXHWND.
1184 - PrologIO revised.
1185 - wxScrolledWindow, wxStatusBar and new MDI classes added.
1186 MDI is now achived using separate classes, not window styles.
1187 - wxSystemSettings added, and made use of to reflect standard
1188 Windows settings.
1189 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
1190 settings mucho rationalised.
1191 - All windows are now subclassed with the same window proc to make
1192 event handling far more consistent. Old internal wxWnd and derived
1193 classes removed.
1194 - API for controls revised, in particular addition of
1195 wxValidator parameters and removal of labels for some controls.
1196 - 1 validator written: see examples/validate.
1197 - Event table system introduced (see most samples and
1198 wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
1199 made more flexible, with Push/PopEventHandler allowing a chain
1200 of event handlers.
1201 - wxRadioBox removed - will be added back soon.
1202 - Toolbar class hierarchy revised:
1203 wxToolBarBase
1204 wxToolBarSimple (= old wxToolBar)
1205 wxToolBar95 (= old wxButtonBar under Win95
1206 wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
1207 - Constraint system debugged somewhat (sizers now work properly).
1208 - wxFileDialog, wxDirDialog added; other common dialogs now
1209 have class equivalents. Generic colour and font dialogs
1210 rewritten to not need obsolete panel layout.
1211 - .wxr resource system partially reinstated, though needs
1212 an integer ID for controls. Hopefully the resource system
1213 will be replaced by something better and more efficient
1214 in the future.
1215 - Device contexts no longer stored with window and accessed
1216 with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
1217 variables instead.
1218 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
1219 determines whether labels are shown. Other Win95-specific flags
1220 introduced, e.g. for showing ticks.
1221 - Styles introduced for dealing with 3D effects per window, for
1222 any window: all Win95 3D effects supported, plus transparent windows.
1223 - Major change to allow 3D effect support without CTL3D, under
1224 Win95.
1225 - Bitmap versions of button and checkbox separated out into new
1226 classes, but unimplemented as yet because I intend to remove
1227 the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
1228 - utils/wxprop classes working (except maybe wxPropertyFormView)
1229 in preparation for use in Dialog Editor.
1230 - GNU-WIN32 compilation verified (a month or so ago).
1231
1232