replaced all int/size_t indices in wxControlWithItems API with unsigned int (committi...
[wxWidgets.git] / docs / changes.txt
1 ---------------------------------------------------------------
2 wxWidgets Change Log - For more verbose changes, see the manual
3 ---------------------------------------------------------------
4
5 INCOMPATIBLE CHANGES SINCE 2.6.x
6 ================================
7
8 - wxFontData::GetColour() now returns a const colour
9 - wxDC objects can't be created directly now (this never worked, now it doesn't
10   even compile)
11 - For all wxInputStreams, Eof() becomes true after an attempt has been made
12   to read _past_ the end of file.
13 - wxCHECK family of macros now must be followed by a semicolon
14
15
16 Deprecated methods since 2.6.x and their replacements
17 -----------------------------------------------------
18
19 - wxGetWorkingDirectory() deprecated in favour of wxGetCwd()
20 - wxDC::BeginDrawing() and wxDC::EndDrawing() deprecated, just don't use them
21
22
23 2.7.0
24 -----
25
26 All:
27
28 - wxLaunchDefaultBrowser() now supports wxBROWSER_NEW_WINDOW flag.
29 - Added wxStringTokenizer::GetLastDelimiter(); improved documentation.
30 - Speed improvements to wxRegEx when matching is done in a loop such as
31   during a search and replace.
32 - Fix regerror and regfree name conficts when built-in regex and system regex
33   are both used in the same program.
34 - Basic authentication supported added to wxHTTP.
35 - wxCondition::WaitTimeout() now returns correct value when timeout occurs.
36 - Fixed occasional wxThread cleanup crash.
37 - Bug in wxLogStream::DoLogString in Unicode builds fixed.
38 - Added support for memo fields to wxODBC.
39 - Fixed Unicode builds using SunPro compiler by defining__WCHAR_TYPE__.
40 - wxFileName now also looks for TMPDIR on Unix.
41 - Fixed build error in list.h with VC++ 2005.
42 - Fixed wxODBC buffer overflow problem in Unicode builds.
43 - Fixed wxSocketBase::InterruptWait on wxBase.
44 - Important code cleanup (Paul Cornett).
45 - Added support for wxLongLong in wx stream classes (Mark Junker).
46 - wxSOCKET_REUSEADDR can be used with wxSocketClient.
47 - Overloaded Connect() and SetLocal() methods for binding to local address/port.
48 - All GetCount() methods now return unsigned int and not int
49 - Albanian translation added (Besnik Bleta)
50 - Assert messages now show the function in which assert failed
51 - wxApp::OnAssertFailure() should now be used instead the old wxApp::OnAssert()
52 - Fixed several bugs in wxDateTime::ParseDate()
53
54 All (GUI):
55
56 - Added wxTreebook (uses a wxTreeCtrl to control pages).
57 - Added wxDC::GradientFillLinear/Concentric()
58 - Added wxKeyEvent::GetModifiers()
59 - Added wxDialog::SetEscapeId().
60 - wxItemContainerImmutable::FindString unified (affects wxRadioBox, wxListBox,
61   wxComboBox and wxChoice).
62 - wxWindow::Fit() now works correctly for frames and dialogs too.
63 - Added access to the border size between pages and controller in book
64   based controls (wxBookCtrlBase::Get/SetInternalBorder).
65 - Added initial wxRichTextCtrl implementation.
66 - All book based controls (notebook, treebook etc.) share now the same
67   options for orientation (wxBK_TOP, wxBK_DEFAULT, ...) instead of duplicated
68   wxLB_TOP, wxNB_TOP, wxCHB_TOP, wxTBK_TOP.
69 - Added parent window parameter to wxHelpController constructor
70   and added SetParentWindow/GetParentWindow.
71 - wxMultiChoiceDialog uses now wxCheckListBox if possible, wxListBox if not.
72 - Added wxBitmapButton::SetHoverBitmap().
73 - Access to titles through Get/SetTitle is available now only for top level
74   windows (wxDialog, wxFrame).
75 - Fixed memory leak of pending events in wxEvtHandler.
76 - Added wxRadioBox::IsItemEnabled/Shown()
77 - Added space after list item number in wxHTML.
78 - Implemented <sub> and <sup> handling in wxHTML (based on patch
79   by Sandro Sigala).
80 - Added caption parameter to wxGetFontFromUser and wxGetColourFromUser.
81 - Added wxGetMouseState function.
82 - Added wxHtmlHelpWindow, wxHtmlHelpDialog and wxHtmlModalHelp classes,
83   allowing HTML help to be embedded in an application.
84 - wxCalendarCtrl positioning and hit-testing fixes for dimensions other than
85   best size.
86 - wxCalendarCtrl colour schema changed and adjusted to system settings.
87 - More checking of image validity before loading into wxImage.
88 - Added wxImage::ConvertToGreyscale.
89 - Added ability to use templates with static event tables
90   with BEGIN_EVENT_TABLE_TEMPLATEn() macros.
91 - Added play, pause, and state change events to wxMediaCtrl.
92 - Added double-buffering to wxVListBox and fixed a scrolling issue.
93 - Added wxToolbook (uses a wxToolBar to control pages).
94 - Added SetSheetStyle to wxPropertySheetDialog and allowed it to
95   behave like a Mac OS X settings dialog.
96 - Added <disabled> XRC tag for wxToolBar elements and <bg> for wxToolBar itself.
97 - Fixed centering of top level windows on secondary displays.
98 - Implemented wxDisplay::GetFromWindow() for platforms other than MSW.
99 - UpdateUI handler can now show/hide the window too (Ronald Weiss).
100 - More than one filter allowed in in wxDocTemplate filter.
101 - Added wxListBox::HitTest().
102 - Added wxDisplay::GetClientArea().
103
104 wxMSW:
105
106 - Fixed crash with ownerdrawn menu items accelerators (Perry Miller).
107 - wxFileDialog respects absence of wxCHANGE_DIR flag under NT (Brad Anderson).
108 - Switching page of a hidden notebook doesn't lose focus (Jamie Gadd).
109 - Removed wxImageList *GetImageList(int) const.
110 - Fixed MDI context menu problem.
111 - Removed __WIN95__ define
112 - Create msw/rcdefs.h in setup.h's directory, which can be included by
113   resource files. It containts platform/compiler specific defines (such as
114   target cpu) which can be used in #ifs in .rc files.
115 - Add support for Win64 manifests and VC++ 8 automatic manifests (see the
116   wxMSW faq for details).
117 - New TARGET_CPU=amd64 (or 'ia64') option for the makefile.vc files which
118   puts 64-bit builds in their own directory and adds /machine:amd64 or ia64
119   to the link command.
120 - wxStatusBar::GetFieldRect now returns correct values under XP.
121 - wxStatusBar no longer corrupts surrounding windows on resize.
122 - Enable wxListCtrl in report mode to be able to use images in other
123   columns, if ComCtl32 >= 470.
124 - Fixed problem where using SetValue and wxTE_RICH2 would cause control to
125   show.
126 - Numpad special keys are now distinguished from normal keys.
127 - Fixed GDI leak in wxStaticBitmap when setting images after
128   initial construction.
129 - Menu codes now stripped before measuring control labels.
130 - MFC sample now compiles in Unicode mode.
131 - Fixed SetScrollbar thumb size setting bug (set orientation before triggering
132   events).
133 - Fixed icon to cursor conversion problem for bitmaps with masks.
134 - Fixed wxToolBar background colour problem for some video cards.
135 - wxGenericDirCtrl now shows volume name.
136 - Added XP theme support for DrawHeaderButton, DrawTreeItemButton.
137 - Made the wxActiveXContainer class public and documentated.
138 - Added a Windows Media Player 9/10 backend for wxMediaCtrl.
139 - Multiline notebook tab label change now resizes the control
140   correctly if an extra row is removed or added.
141 - Fixed a crash when dismissing wxPrintDialog under VC++ 7.1.
142 - Fixed out by one error in wxTextCtrl::GetStyle.
143 - Fixed problem with getting input in universal/unicode build of wxMSW.
144 - Link oleacc.lib conditionally.
145 - Drag and drop now works inside static boxes.
146 - Fall back to unthemed wxNotebook if specified orientation not available.
147 - wxListCtrl and wxTreeCtrl now resize their standard font if the user
148   changes the system font.
149 - wxDisplay doesn't require multimon.h now and is enabled by default (Olly Betts).
150 - Fixed wxChoice/wxComboBox slow appending and infinite recursion
151   if its size is set within a paint handler (for example when embedded in a
152   wxHtmlWindow).
153
154 wxGTK:
155
156 - wxEVT_MENU_CLOSE and wxEVT_MENU_OPENED for popup menus are now generated.
157 - Implemented wxCURSOR_BLANK support.
158 - wxSlider generates all scroll events now and not only wxEVT_SCROLL_THUMBTRACK.
159 - Fixed a host of bugs in wxMediaCtrl as well as added a GStreamer 0.10
160   implementation.
161 - Improved configure checks for GStreamer. You may also now specify
162   --enable-gstreamer8 to force configure to check for GStreamer 0.8.
163 - Fixed problem with choice editor in wxGrid whereby the editor
164   lost focus when the combobox menu was shown.
165 - Fixed focusing with mnemonic accelerator keys on wxStaticText which
166   is now able to focus on wxComboBox and possibly other controls
167   previously unable to be focused before.
168 - Enabled mnemonics and the corresponding accelerator keys for 
169   wxStaticBox and wxRadioBox.
170 - Fixed problem trying to print from a preview, whereby wrong printer
171   class was used.
172 - Worked around pango crashes in strncmp on Solaris 10.
173 - Polygon and line drawing speeded up if there is no scaling.
174 - Fixed problems with CJK input method.
175 - Implemented ScrollLines/Pages() for all windows (Paul Cornett).
176 - Support underlined fonts in wxTextCtrl.
177
178 wxMac:
179
180 - Fixed problem with clipboard support for custom data flavors.
181 - Fixed focus handling for generic controls in carbon-cfm.
182 - Fixed a printing crash bug, for example using File->Print and changing
183   Popup from 'Copies & Pages' to e.g. 'Layout'.
184 - Improved support for help and application menu items.
185 - Added default implementations for wxTextCtrl::Replace and wxTextCtrl::Remove.
186 - Added support for 10.4 context menu.
187 - Added support for wxFRAME_EX_METAL and wxDIALOG_EX_METAL styles.
188 - Added wxNotebook::HitTest support.
189 - Corrected idle wake-up.
190 - Corrected wxExecute.
191 - Now makes use of full printer resolution.
192 - Corrected CGImage handling in wxBitmap.
193 - Now uses simple hide/show transition for top-level windows.
194 - Uses reasonable temporary path for wxFileName::CreateTempFileName.
195 - Added support for default key handling (escape, enter, command-period) even
196   if there is no control on the frame or dialog that has the focus.
197 - Fixed joystick bugs including a link error and a crash if no joysticks
198   were found.
199 - Removed an errorneous assertion from wxDir.
200 - Uses CoreFoundation based and thread-safe implementation for message boxes
201   under Mach-O.
202 - wxBitmapButton is created as a content icon if wxBORDER_NONE is
203   specified, otherwise as a bevel button.
204 - Mouse event ids set correctly (fixing problems with Connect in particular).
205 - Fixed wxZipInputStream read error on wxSocketInputStream which signals the
206   end of file with an error.
207 - Xcode wxWidgets and minimal sample project files updated to create Universal
208   binaries.
209 - Fix for setting wxMenuBar more than once.
210 - wxListBox minimum size bug fixed.
211 - Fixed wxNotebook off-by-one bug in HitTest.
212 - Fixed joystick GetXMin/Max bug.
213 - Fixed Unix domain socket problem in wxIPC.
214
215 wxCocoa:
216
217 - wxDirDialog is now native (Hiroyuki Nakamura).
218
219 wxWinCE:
220
221 - Pressing build-in joystick on WinCE phones fires wxEVT_JOY_BUTTON_DOWN event.
222 - Native wxCheckListBox implementation.
223 - All wxTopLevelWindows resizes accordingly to SIP visibility.
224 - ::wxGetUserName() implemented.
225 - wxDisplay enumeration support.
226 - Fixed wxFileDialog breakage on WinCE due to incorrect structure size.
227 - New wxSystemOption "wince.dialog.real-ok-cancel" to switch between WinCE
228   guidelines with Ok-only dialogs and dialogs using wxButtons.
229 - Checkable items in wxToolMenuBarTool supported.
230 - Fixed date formatting and mktime.
231 - Fixed getting standard folder paths on WinCE.
232 - Support for backspace key on Smartphone.
233 - Made both windows wxMediaCtrl Windows backends compilable with wxWinCE - it
234   is recommended that you use wxMEDIABACKEND_WMP10 on this platform
235   directly, however.
236 - Added support for the context menu event (wxContextMenuEvent)
237   and added platform-specific wxWindow::EnableContextMenu.
238 - Fixed wxGenericFileDialog to work with WinCE.
239 - Fixed compilation and menubar disappearance on Windows Mobile 5.
240
241 wxUniv:
242
243 - Send wxEVT_SCROLL_XXX events from wxSlider (Danny Raynor).
244
245 wxX11:
246
247 - Invisible text problem fixed.
248 - Bitmap clipping with masks and scaling improved.
249 - Fixed a crash bug in the generic timer.
250
251 Unix:
252
253 - NO_GCC_PRAGMA is not used any more, remove checks for it if you used it.
254
255
256 2.6.2
257 -----
258
259 All:
260
261 - Fixed wxScopeGuard to work with VC++, documented it.
262 - Fixed proxy handling in wxURL.
263 - Added wxEVT_MEDIA_LOADED event for wxMediaCtrl.
264 - Added new methods to wxMediaCtrl (wxURI version of Load, ShowPlayerControls).
265 - Added wxZipFSHandler::Cleanup() (Stas Sergeev).
266 - Added wxImage::RotateHue() and RGB <-> HSV conversions (John Anderson).
267 - Fixed compilation with IBM xlC compiler.
268 - wxABI_VERSION, see 'Backward Compatibility' topic overview in the manual.
269 - Added wxLongLong::ToDouble().
270 - Added wxDateTime::[Make]FromTimezone(), fixed several TZ-related bugs.
271 - Fixed bug in wxStreamBuffer::Read(wxStreamBuffer *) (Paul Cornett).
272 - Fixed wxListbook and wxChoicebook internal layout.
273
274 All (GUI):
275
276 - Added wxStaticText::Wrap()
277 - wxChoice and wxComboBox::GetSelection() now returns completed selection,
278   added a new GetCurrentSelection() function having the old behaviour.
279 - Added wxXmlResource::Unload().
280 - Possibility of modeless wxWizard dialog (with presentation in sample).
281 - Fixed a rare crash due to malformed HTML in wxHTML (Xavier Nodet).
282 - Ctrl+mouse wheel changes zoom factor in print preview (Zbigniew Zagórski).
283 - Cross-compile now supported for wxGTK, wxX11 and wxMotif.
284 - Cygwin compilation of wxX11, wxGTK and wxMotif now supported.
285 - Now reads "help" parameter for all windows (context help text).
286 - wxWizard adapts to PDA-sized screens.
287 - Unicode fixes for IPC and a new IPC sample (Jurgen Doornik).
288
289 wxMSW:
290
291 - wxMSW now builds with (beta of) MSVC 8 (a.k.a. 2005).
292 - Separators are now correctly shown in the toolbars under Windows XP.
293 - Fixed multiline tooltips handling.
294 - Fixed wxSlider::GetSelEnd() (Atilim Cetin).
295 - Fixed accelerators of menu items added to already attached submenus.
296 - Position of wxEVT_MOUSEWHEEL events is now in client, not screen, coordinates.
297 - Handle absence of wxListCtrl column image better (Zbigniew Zagórski).
298 - Fixed asynchronous playback of large sound files in wxSound.
299 - Added wxDynamicLibrary::GetSymbolAorW().
300 - Fixed default size of wxStaticText controls with border being too small.
301 - Fixed bugs with wxStatusBar positioning (with or withour sizers) (Jamie Gadd).
302 - Mouse move events are now generated for all static controls (Jamie Gadd).
303 - Fixed nested static box display and splitter sash on some themes (Jamie Gadd).
304 - Made wxJoystick::GetProductName() more useful (John Ratliff).
305 - Native spline drawing implementation (Wlodzimierz ABX Skiba).
306
307 wxGTK:
308
309 - ShowFullScreen() shows the window if it was still hidden (rpedroso).
310 - Implemented wxTopLevelWindow::RequestUserAttention() (Mart Raudsepp).
311 - Base library is now binary compatible when built with wxGTK and wxMotif.
312 - wxTextCtrl::XYToPosition, PositionToXY and GetLineLength calls are now
313   instantaneous in case of GTK 2.x multi-line controls (Mart Raudsepp).
314 - Added support for left, centre and right text alignment attributes under
315   GTK+2 multi-line text controls (Mart Raudsepp).
316 - Various wxFont improvements for GTK 2.x builds (Mart Raudsepp).
317 - Changed order of child deletion in window destructor and
318   removed focus handlers to avoid spurious events (David Surovell).
319 - Fixed domain socket handling.
320
321 wxMac:
322
323 - First implementation of native HIToolbar support.
324 - Added text control context menu (ported from wxMSW).
325 - More CoreGraphics implementation improvements.
326 - Various text control bug fixes.
327 - Automatic menu management improved.
328 - Fixed crash when wxRadioButton is deleted from a group of radio buttons,
329   due to dangling cycle pointers.
330 - Native spline drawing implementation for CoreGraphics (Robert J. Lang).
331 - Made wxDialog::IsModal meaning the same as other ports (true only when
332   showing modally).
333
334 wxOS2
335
336 - Adjustments for building with Open Watcom C++.
337
338 wxUniv:
339
340 - Window creation now honours wxVSCROLL.
341 - Standalone scrollbars generate events of correct type (Jochen Roemmler).
342
343 wxMotif:
344
345 - Base library is now binary compatible when built with wxGTK and wxMotif.
346 - wxMotif can now display Japanese text under Japanese locale.
347 - Fixed button size in common dialogs.
348 - Made wxFileDialog translatable.
349 - All top level windows should now have a border unless the wxNO_BORDER
350   flag has been specified.
351 - Improved wxNotebook support for sizers. It requires the wxNotebook to
352   be created with a "sensible" initial width.
353 - Made wxDialog::IsModal meaning the same as other ports (true only when
354   showing modally).
355
356 wxMGL:
357
358 - Fixed crash on exit.
359 - Fixed drawing problems when windows are resized.
360
361 wxX11:
362
363 - Various wxFont improvements for unicode builds (Mart Raudsepp).
364
365
366 2.6.1
367 -----
368
369 All:
370
371 - Added wxLaunchDefaultBrowser.
372 - Added wxPLURAL() macro in addition to _() (Jonas Rydberg)
373
374 All (GUI):
375
376 - Fixed potential infinite loop when adjusting wxScrolledWindow scrollbars.
377 - Radio in menus do not send menu event for selections of already selected item.
378 - Fixed wrong positioning of marks and enumerations in lists of wxHTML.
379 - wxImage::Rotate90 respects alpha channel.
380 - Added wxEVT_SCROLL_CHANGED as synonym for wxEVT_SCROLL_ENDSCROLL.
381 - Replaced artwork for some cursors, icons and toolbar buttons.
382 - Fixed sizing problem in generic wxCalendarCtrl for short day abbreviations.
383 - Fixed wxWindow::DoGetBestSize to keep original best size.
384 - PNM now supports ASCII and raw grey formats.
385 - wxGrid focus and edit key improvements.
386
387 wxMSW:
388
389 - Fixed erroneous selection of content in wxComboBox when within a wxStaticBox
390   (checking for selection caused by WM_STYLECHANGED).
391 - Added deferred positioning to wxRadioBox, wxSlider and wxSpinCtrl and thereby
392   eliminated some refresh glitches when resizing.
393 - Eliminated further refresh glitches caused by wxRadioBox (to nearby controls)
394   by refreshing parent when the radio box moves.
395 - Added ability set the system option "msw.staticbox.optimized-paint" to 0 to
396   allow a panel to paint graphics around controls within a static box.
397 - Refresh exposed areas when resizing, using WM_WINDOWPOSCHANGED.
398 - Worked around an apparent bug in deferred window positioning (moving a
399   window from (x, y) to (a, b) and back to (x, y) misses the last step) by
400   checking window positions against corresponding sizer state, if any.
401 - A control's text colour now reflects the system colour setting.
402 - Fixed wxFileName::GetLongPath() to behave correctly during the first call too.
403 - Fixed alpha blitting to take into account source position.
404 - Setting foreground colour for wxCheckBox now works when using XP themes too.
405 - wxStaticBox label can use custom foreground colour.
406 - Now uses newer font MS Shell Dlg 2 if possible.
407 - Compiles again with WIN64.
408 - Winelib compilation now works.
409 - When converting a wxIcon to a bitmap check if the icon has an alpha
410   channel and set the bitmap to use it.
411 - wxSlider now also sends wxEVT_SCROLL_CHANGED when using mouse wheel
412 - Miscellaneous wxMediaCtrl improvements.
413 - wxTopLevelWindow::ShowFullScreen logic error fixed.
414 - Fixed wxScrollBar background colour bug.
415 - Fixed problems with paper sizes being ignored.
416 - wxNotebook refresh problem fixed.
417 - DDE fixed for Unicode.
418 - Fixed ownerdrawn multiline buttons.
419 - wxCheckListBox item background fixed.
420 - Fixed error when trying to read a value from key not accessible for writing.
421 - Fixed keyboard cue visibility issues under Windows 2000/XP
422
423 wxWinCE:
424
425 - Fixed wxFileName::CreateTempFileName.
426
427 wxGTK:
428
429 - Added support for wxSTAY_ON_TOP (GTK 2.4+).
430 - Fixed wxTextCtrl::SetStyle for overlapping calls.
431 - Fixed scrollbar border colour.
432 - Added bitmap support in menus.
433
434 wxMac:
435
436 - Added support for launching 'APPL' bundles with wxExecute (usually they have a
437   .app extension and are the ones that reside in the Applications folder).
438 - Fixed a bug in wxGetKeyState where shift and some other keys were returning an
439   incorrect state.
440 - Fixed toolbar colour bug on Tiger.
441 - Fixed visual problems caused by removal of About menu item.
442 - Window menu now added automatically.
443 - Configure fixed for wxBase compilation.
444 - Modified function key support fixed.
445 - wxTopLevelWindow::Maximize improvements.
446
447 wxX11:
448
449 - Menu problems fixed.
450 - wxScrolledWindow scrolls any child windows.
451 - Fixed a font memory leak.
452 - Multiple wxTimers now work correctly.
453
454
455 2.6.0
456 -----
457
458 All:
459
460 - wxPathExists deprecated, use wxDirExists instead.
461 - Configure: --enable-std_iostreams, --enable-std_string are now the default.
462
463 All (GUI):
464
465 - Fixed ~wxStatusBar and ~wxToolBar which tried to check
466   non-existent wxFrameBase RTTI, causing a crash if not in a frame.
467
468 wxMSW:
469
470 - Fixed static box border when the label is empty.
471 - Fixed SetBackgroundColour() to change only label background, not entire box.
472 - wxHelpController is now aliased to wxCHMHelpController.
473
474 wxWinCE:
475
476 - Fixed device origin setting and clipping region setting.
477
478 wxGTK:
479 - New configure syntax for specifying the GTK+ version.
480     --with-gtk             Use GTK 2.x, no fallback
481     --with-gtk=1           Use GTK 1.2, no fallback
482     --with-gtk=2           Use GTK 2.x, no fallback
483     --with-gtk=any         Use any available GTK
484 - wxMenuItem::SetText() takes care of hotkeys, too.
485 - Reworked text wrapping for wxStaticText.
486
487 wxMac:
488 - Implemented most of the wxFileType and wxMimeTypesManager functions
489
490 2.5.5
491 -----
492
493 All:
494
495 - wxURI::GetUser() only returns the user name now, use GetUserInfo() to get
496   user and password as in 2.5.4; wxURI::GetPassword() added.
497 - Added wxDebugReport class.
498 - Added wxTempFileOutputStream by Stas Sergeev.
499 - Fixed wxDateTime::SetToWeekDayInSameWeek(Sun, Monday_First).
500 - Added WXK_SPECIAL keycodes for special hardware buttons.
501 - Fixed bug with wxFile::Seek(-1, wxFromCurrent).
502 - Added wxString/C array constructors to wxArrayString.
503 - Added wxMemoryInputStream(wxMemoryOutputStream&) constructor (Stas Sergeev)
504
505 All (GUI):
506
507 - Added GetIcon, GetBitmap to wxImageList. wxGenericImageList's original
508   GetBitmap is renamed GetBitmapPtr.
509 - Added XPM data constructor to wxImage.
510 - Added style parameter to wxBufferedDC to allow buffering just the client, or
511   the whole virtual area.
512 - Restored ability to set a custom splitter sash size with SetSashSize.
513 - Fixed wxScrolledWindow sizer behaviour so that the virtual size
514   isn't used to set the window size.
515 - Added wxTE_BESTWRAP (based on patch by Mart Raudsepp).
516 - wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED is now only sent once at the end of
517   splitter dragging and not after each CHANGING event (Jacobo Vilella Vilahur).
518 - Added wxImage::IsTransparent().
519
520 Unix:
521
522 - Fixed build on Linux/AMD64.
523
524 wxMSW:
525
526 - Added "orient" parameter to wxMDIParentFrame::Tile().
527 - wxTextCtrl with wxTE_RICH2 style now uses RichEdit 4.1 if available.
528 - fix handling Alt-key events in wxComboBox (reported by Joakim Roubert).
529 - wxWindow::Refresh() refreshes the window children as well.
530 - Improved static box and radio box refresh and background colour
531   handling (Jamie Gadd).
532
533 wxGTK:
534
535 - Improved wxSystemSettings::GetMetric() to work better with X11 (Mart Raudsepp).
536 - Corrected wxListBox selection handling.
537 - Corrected default button size handling for different themes.
538 - Corrected splitter sash size and look for different themes.
539 - Fixed keyboard input for dead-keys.
540 - Added support for more wrapping styles (Mart Raudsepp).
541 - GTK2.4+ wxFileDialog reimplemented to support non-modal usage better,
542   and fix all known bugs (Mart Raudsepp).
543
544 wxMac:
545
546 - Added wxFRAME_EX_METAL, wxDIALOG_EX_METAL for metallic-look windows.
547
548 wxPalmOS:
549
550 - Native wxRadioBox implementation.
551
552 wxWinCE:
553
554 - Added wxNB_FLAT for flat-look notebooks on Windows CE.
555 - Titlebar OK button on PocketPC now sends command set by SetAffirmativeId.
556   You can also override wxDialog::DoOK if you need more flexibility.
557 - Dialog size now takes into account SIP or menubar.
558 - Panels more naturally white on PocketPC.
559 - wxDIALOG_EX_CONTEXTHELP ignored on WinCE since it interferes
560   with correct titlebar style.
561 - Frames have Ctrl+Q accelerator set automatically, as per the
562   PocketPC guidelines
563 - Documented issues in manual under wxWinCE topic.
564 - Made (Un)RegisterHotKey WinCE-aware.
565 - Sends wxEVT_HIBERNATE event.
566 - Now fakes wxEVT_ACTIVATE_APP to be symmetrical with wxEVT_HIBERNATE.
567 - Added wxTE_CAPITALIZE for CAPEDIT controls.
568 - wxDialog::GetToolBar can be used if you need to add buttons
569   to the dialog's toolbar.
570
571 2.5.4
572 -----
573
574 All:
575
576 - wxEvent and derived classes don't have public members any more, you must
577   use accessors methods now (Mart Raudsepp)
578 - new classes for reading and writing ZIP files (M.J.Wetherell)
579 - large files support for wxFFile (M.J.Wetherell)
580 - classes in the manual are now cross-referenced (Zbigniew Zagórski)
581 - Norwegian (BokmÃ¥l) translation added (Hans F. Nordhaug)
582 - wxDynamicLibrary::HasSymbol() added
583 - added wxEXEC_NODISABLE flag to be used with wxExecute(wxEXEC_SYNC)
584 - added wxTextInputStream::operator>>(wchar_t) for compilers which support this
585 - added wxURI, a class for dealing with Uniform Resource Identifiers
586 - changed wxURL to inherit from wxURI and provide assignment and comparison
587 - implemented wxConvUTF7 (modified patch from Fredrik Roubert)
588 - added versions of MB2WC and WC2MB for wxMBConv that works for embedded null chars
589 - Unicode support in wxODBC is now fully implemented
590 - A new data type specific to wxWidgets called SQL_C_WXCHAR has been introduced.
591   SQL_C_WXCHAR should be used rather than SQL_C_CHAR to ensure transparent
592   behavior between Unicode and non-unicode builds
593 - BLOB example added to samples/db (thanks to Casey O'Donnell)
594 - use wxStream::GetLength() instead of deprecated GetSize()
595 - wxGetOsDescription() is now more precise (Olly Betts)
596 - XRC supports system fonts and colours (Ray Gilbert)
597 - Added flags argument to wxKill/wxProcess::Kill to kill child processes.
598 - Added wxPrintFactory classes so that it is possible to add a new
599   print system backend at run-time. This was required by the new GNOME
600   printing stuff in the GTK port.
601 - Deprecated print setup dialog.
602 - Added support to the wxODBC classes for Firebird 1.5 database
603 - The samples/db sample program now includes an optional example of using a BLOB
604   datatype (if BLOB support is enabled and supported by the database)
605 - added wxDynamicLibrary::ListLoaded()
606 - wxGetPowerType() and wxGetBatteryState() addition
607 - wxSystemSettings::GetSystem*() members deprecated and replaced with
608   wxSystemSettings::Get*()
609 - wxWindowBase::DoGetBestSize now includes the difference (if any) between
610   the client size and total size of the window.  Code that sets the
611   client size using the best size, or that added extra space to sizers
612   to compensate for this bug may need to be changed.
613 - Changed calculation of scrolling area to not clip away some bits
614   due to a rounding error.
615 - Changed GetVirtualSize() to return client size by default until
616   SetVirtualSize() gets called. From then on it will only return that.
617 - Various changes to how wxListCtrl and wxTreeCtrl react to right
618   mouse clicks and left mouse click for starting a drag operation.
619 - "Alt" key (VK_MENU) now results in WXK_ALT keyboard event, not WXK_MENU
620 - wxFFile::ReadAll() now takes an optional wxMBConv parameter
621 - wxCommandProcessor::MarkAsSaved() and IsDirty() added (Angela Wrobel)
622 - added wxStackWalker and related classes (Win32 and some Unix versions only)
623
624
625 All (GUI):
626
627 - added wxMediaCtrl
628 - added wxDatePickerCtrl
629 - wxHtmlWindow now supports background images given in <body> tag
630 - wxSplitterWindow now supports gravity parameter (Zbigniew Zagórski)
631 - recursive wxSizer::GetItem returns item of given window, sizer or nth index
632 - wxLayoutConstraints now use best size, not current size, for AsIs() condition
633 - wxSizer::Add/Insert etc. now returns pointer to wxSizerItem just added and this
634   item remembers its wxRect area (Brian A. Vanderburg II)
635 - wxBookCtrl renamed to wxBookCtrlBase, wxBookCtrl is reserved for most native
636   book control (for now wxChoicebook for MSSmartphone, wxNotebook for others).
637   Necessary event macros, types and styles mapped accordingly.
638 - new wxBrush::IsHatch() checking for brush type replaces IS_HATCH macro
639 - wxProgressDialog accepts smooth gauge again (wxPD_SMOOTH style)
640 - wxProgressDialog new style: wxPD_CAN_SKIP which provides skipping some parts
641   of the progress (with new "Skip" button in dialog)
642 - wxGenericListCtrl::SetItemState(-1) now changes the state of all items as
643   in wxMSW version (Gunnar Roth)
644 - added wxImage::InitAlpha()
645
646 Unix:
647
648 - wxPuts() now correctly outputs trailing new line in Unicode build
649
650 wxGTK:
651
652 - Added printing support by way of using libgnomeprint. The library
653   now checks at runtime, if the library is installed and will use it
654   if it is. Otherwise, it will fall back to the old PostScript printing
655   code, from which the Pango drawing code was removed.
656 - Implemented/improved wxDC::DrawRotatedText()
657 - fixed wxFileDialog::SetWildcard()
658 - native file dialog is now used if available (Zbigniew Zagorski)
659 - implemented wxTextCtrl::Freeze() and Thaw(). The GtkTextBuffer
660   is not a valid one during frozen state. Get a pointer to it right
661   after wxTextCtrl creation if you really need to. (Mart Raudsepp)
662 - Changed calls to GTK+ 2.4.x functions so that the code checks at
663   runtime, which library version is installed so that these functions
664   are only called with GTK+ 2.4.x installed and should yield linker
665   errors otherwise.
666 - wxTextCtrl text insertion efficiency fixed. (Mart Raudsepp)
667 - Added wxRawBitmap support
668 - Corrected Input method handler code (for Chinese etc.) and its
669   interaction with wxWidgets' events.
670 - wxTE_AUTO_URL implemention for wxGTK2 multiline wxTextCtrls (Mart Raudsepp)
671
672 wxMac:
673
674 - Vertical sliders oriented consistent with MSW/GTK (0 at top) (Kevin Hock)
675 - wxDynamicLibrary::GetDllExt() now returns ".bundle", not ".dylib"
676 - wxDynamicLibrary::GetSymbol() now prepends underscore to the symbol name
677 - wxJoystick now works on OSX
678
679 wxMSW:
680
681 - fixed enhanced metafiles loading from files (Andreas Goebel)
682 - wxRadioButtons no longer have to be consecutive in a group
683 - fixed spurious selection of combobox text during resize
684 - pass correct tool id (and not always -1) to EVT_TOOL_RCLICKED() handler
685 - added wxRegKey::Export(file)
686
687 wxWinCE:
688 - Added support for MS Handheld PC 2000. This was done before 2.5.4,
689   but not mentioned anywhere.
690 - Added (preliminary) support for sockets
691
692 wxUniv:
693
694 - wxBU_... button align flags support
695 - vertical notebook orientation support
696 - 3rd state support for checkboxes
697 - wxLB_SORT and wxCB_SORT now cause case-insensitive sorting
698
699 wxPalmOS:
700
701 - William Osborne has won and new port was born
702   (see: "wxPalmOS porting challenge")
703 - polishing of the port (unnecessary 2.4 API compatibility, removed
704   all wxMSW specific code which was base for the new port)
705 - enumeration of available volumes
706 - native wxPrefConfig around Preferences database
707 - native wxProgressDialog implementation
708 - native wxColourDialog implementation
709 - native wxSystemSettings colours
710 - native wxButton implementation
711 - native wxCheckBox implementation
712 - native wxSlider implementation
713 - native wxToggleButton implementation
714 - native wxRadioButton implementation
715 - native wxStaticText implementation
716 - native wxDatePickerCtrl implementation
717
718
719 2.5.3
720 -----
721
722 All:
723
724 - support for large (>2 Gb) files in wxFile (Tim Kosse)
725 - number of fixes to wxPluginManager (Rick Brice, Hans Van Leemputten)
726 - fixed memory leak in wxURL when using a proxy (Steven Van Ingelgem)
727 - fixed bug in wxDateTime::Set(jdn) when DST was in effect
728 - fixed fatal bug in wxString when wxUSE_STL==1 (Kurt Granroth)
729 - support msgids in charsets other than C and languages other than English
730   (based on patch by Stefan Kowski)
731 - added wxMicroSleep() and wxMilliSleep() replacing deprecated wxUsleep()
732 - basic UDP sockets support (Lenny Maiorani)
733 - fixed wxDateTime::GetWeekDayName() for some dates (Daniel Kaps)
734 - deprecated wxDateTime::SetToTheWeek() in favour of SetToWeekOfYear()
735 - active mode support in wxFTP (Randall Fox)
736 - sped up wxHTTP and wxFTP
737 - added wxStringInput/OutputStreams
738 - added wxFileConfig::Save(wxOutputStream)
739 - fixed wxString's behavior with inserted null characters
740
741 All (GUI):
742
743 - added wxWindow::MoveBefore/AfterInTabOrder() to change tab navigation order
744 - added wxTaskBarIcon::CreatePopupMenu which is now the recommended way
745   of showing a popup menu; calling wxTaskBarIcon::PopupMenu directly
746   is discouraged
747 - added ..._CMD_...(id) variants for wxGrid event table entry macros
748 - added wxWindow::Navigate for programmatic navigation to the next control
749 - wxTextCtrl::OnChar now inserts a tab character if wxTE_PROCESS_TAB is set
750 - added wxKeyEvent::GetUnicodeKey()
751 - added wxKeyEvent::CmdDown() and wxMouseEvent::CmdDown()
752 - implemented wxListCtrl::FindItem() for non-MSW (Robin Stoll)
753 - added status bar fields styles support (Tim Kosse)
754 - added convenience functions wxSizer::AddSpacer() and
755   wxSizer::AddStretchSpacer() (as well as Prepend and Insert variants)
756 - added samples/splash
757 - added support for stock buttons
758 - added wxTopLevelWindow::RequestUserAttention()
759 - support for comma in contrib gizmo wxLEDNumberCtrl (Grant Likely)
760 - recursive wxSizer::Show for subsizer and return value if element was found
761 - added wxChoicebook control
762 - smoother time estimation updates in wxProgressDialog (Christian Sturmlechner)
763 - the XRC contrib library was moved to the core
764 - wx(Choice/List/Note)book controls send CHANG(ED/ING) events in SetSelection
765 - it is now possible to create a wxFont with given size in pixels (d2walter)
766 - added wxTopLevelWindow::IsActive()
767 - wxSystemSettings::GetMetric now returns -1 for metrics that are not
768   supported, instead of zero.
769 - IMPLEMENT_DYNAMIC_CLASS2 macro compilation fixed (Serge Bakkal)
770
771 Unix:
772
773 - wxTaskBarIcon now supports freedesktop.org System Tray protocol
774 - security fixes to wxSingleInstanceChecker
775 - wx-config script was modified to allow choosing from multiple installed
776   builds of wxWidgets and to return flags/libs for selected libraries only
777 - wx-config has new --version-full option
778
779 wxCocoa:
780
781 - added Unicode compatibility layer for OSX 10.2
782 - fixed so that wxCocoa runs in OSX 10.2
783 - Tooltips now supported
784 - wxSound now supported
785 - wxDisplay now supported
786 - Some stock cursors now supported
787
788 wxMac:
789
790 - fixed MLTE text control GetLineText and GetLineLength on OSX
791 - added OSX wxTaskBarIcon implementation for the OSX Dock
792 - added Unicode compatibility layer for OSX 10.2
793 - wxGetKeyState now works with nearly all wx key codes
794
795 wxGTK:
796
797 - wxGTK uses GTK+ 2.x by default now, you have to pass --disable-gtk2 to
798   configure if you want to use GTK+ 1.2
799 - fixed many rendering artifacts and wrong colours with lots of GTK+ themes
800 - implemented wxColourDialog as native dialog
801 - implemented wxTextCtrl::HitTest() (GTK+ >= 2)
802 - implemented wxTextCtrl::ScrollLines() and ScrollPages for GTK+ 2.x
803 - wxTreeCtrl::GetCount() counts root as well now (compatible with MSW)
804 - added support for wxCHK_3STATE style (GTK2 only)
805 - implemented text underlining under GTK2
806 - implemented wxFRAME_NO_TASKBAR style (GTK >= 2.2)
807 - implemented support for wxSYS_DCLICK_?, wxSYS_DRAG_? and wxSYS_CURSOR_?
808   in wxSystemSettings::GetMetric (Mart Raudsepp)
809 - implemented wxTopLevel::IsMaximized() for GTK+2 and WMs that implement
810   freedesktop.org's wm-spec (Mart Raudsepp)
811 - wxEVT_CONTEXT_MENU is now generated for right mouse press, not release
812 - implemented alpha channel support in wxBitmap
813 - added native GTK+2 wxArtProvider implementation with ability to load
814   icons from icon theme in addition to recognized stock art
815 - fixed crash on 64 bit platforms (Paul Cornett)
816
817 wxMotif:
818
819 - added support for wxCHK_3STATE style (3 state checkbox)
820
821 wxMSW:
822
823 - fixed UNC paths handling in wxFileSystem (Daniel Nash)
824 - set wxKeyEvent::m_uniChar in Unicode build
825 - support for alpha channel in toolbar bitmaps (Jurgen Doornik)
826 - wxFileDialog can now be moved and centered (Randall Fox)
827 - restored (and improved) possibility to use wx with MFC broken in 2.5.2
828 - fixed wxTextCtrl::SetMaxLength for rich edit controls
829 - fixed flat style for toolbars under XP, Windows Classic style
830 - fixed truncation of transferred data in wxConnection under unicode build
831 - wxChoice and wxComboBox dropdown background can be set now too (Adrian Lupei)
832 - fixed wxMaximizeEvent generation in wxFrame
833 - don't send duplicate EVT_COMBOBOX events whenever selection changes any more
834 - implemented support for selecting printer bin (Steven Van Ingelgem)
835 - fixed wxListCtrl::SetSingleStyle() which was broken since a few releases
836 - fixed print setup problem (always uses default printer) in Unicode build
837
838 wxUniv/X11:
839
840 - fixed fatal crash when opening a menu
841
842 wxWinCE:
843
844 - added native WinCE driven smartphone wxTextCtrl implementation using spinners
845 - added native WinCE driven smartphone wxChoice implementation using spinners
846 - added automated but customizable handling of native WinCE driven smartphone menus
847 - fixed wxRadioBox and wxStaticBox
848
849 wxHTML:
850
851 - added support for nested index entries and index entries pointing to more
852   than one page to wxHtmlHelpController
853
854
855 2.5.2
856 -----
857
858 All:
859
860 - Hindi translation added (Dhananjaya Sharma)
861 - Brazilian Portuguese translation added (E. A. Tacao)
862 - wxDynamicCast() now uses static_cast<wxObject *> internally and so using it
863   with anything not deriving from wxObject will fail at compile time (instead
864   of run-time) now
865 - when wxUSE_STL == 1 and STL provides quasi-standard hash_map/hash_set,
866   wxHashMap/wxHashSet are just typedefs for them. This makes impossible
867   to forward declare these classes.
868
869 All (GUI):
870
871 - wxHtmlWindow now delays image scaling until rendering,
872   resulting in much better display of scaled images
873 - Added UpdateSize to wxSplitterWindow to allow layout while hidden
874 - implemented Freeze/Thaw() for wxGenericTreeCtrl (Kevin Hock)
875 - support for KOI8-U encoding added (Yuriy Tkachenko)
876 - The old wxADJUST_MINSIZE behaviour is now the default behaviour for
877   sizer items that are windows.  This means that GetAdjustedBestSize
878   will now be called by default to determine the minimum size that a
879   window in a sizer should have.  If you want to still use the initial
880   size (and not the BestSize) then use the wxFIXED_MINSIZE flag.  When
881   windows are added to a sizer their initial size is made the window's
882   min size using SetSizeHints, and calls to wxSizer::SetItemMinSize
883   are also forwarded to SetSizeHints for window items.
884 - added wxRegEx::GetMatchCount()
885 - it is now possible to display images in wxHtmlListBox
886
887 wxMSW:
888
889 - wxWindow::Freeze()/Thaw() can now be nested
890 - Added wxSP_NO_XP_THEME style to wxSplitterWindow to switch off
891   XP theming (some applications look bad without 3D borders)
892 - wxMenuBar::GetLabelTop() doesn't include '&'s in the label any more
893 - wxRegConf couldn't read global settings without admin privileges and didn't
894   even try to do it by default -- now it does
895 - wxTaskBarIcon must be explicitly destroyed now, otherwise the application
896   won't exit even though there are no top level windows
897 - wxFileName::GetModificationTime() works with opened files too now
898 - wxDC::GetClippingBox() now works even for clipping regions created by Windows
899 - fixed wxFileDataObject in Unicode build (Alex D)
900 - subindented paragraphs support (Tim Kosse)
901
902 wxGTK:
903
904 - added support for wxTE_RIGHT and wxTE_CENTRE styles under GTK2 (Mart Raudsepp)
905
906 wxMotif:
907
908 - removed wxMenuItem::DeleteSubMenu()
909 - wxButtons use Motif default size, which is smaller than it used to be
910   and closer to wxMSW/wxGTK look. This can be disabled by setting
911   motif.largebuttons system option to 1 (see wxSystemOptions).
912
913 wxUniv/X11:
914
915 - implemented DrawRoundedRectangle() (clawghoul)
916
917 wxHTML:
918
919 - improved tables and lists layout algorithms (Tim Kosse)
920 - <div> handling fix (Xavier Nodet)
921
922 Unix:
923
924 - fixed priorities of mailcap entries (David Hart)
925 - added "wx-config --libs=std,<extra>" syntax (i.e. support for "std")
926
927 wxODBC:
928
929 - Full Unicode support is now available
930 - BLOB support is working
931
932
933 2.5.1
934 -----
935
936 All:
937
938 - event table macros now do some minimal type safety checks (Michael Sögtrop)
939 - added wxGzipInput/OutputStream, bug fixes in wxZlibStreams (M.J.Wetherell)
940 - wxDateTime::ParseDateTime() implemented (Linus McCabe)
941 - wxHTTP::GetResponse() added (David Nock)
942 - added conversions to/from UTF 16/32 LE/BE (Andreas Pflug)
943 - added wxTextInputStream::ReadChar() (M.J.Wetherell)
944 - added translation to Afrikaans (Petri Jooste)
945 - Spanish translations updated (Javier San Jose)
946 - added gettext plural forms support to wxLocale (Michael N. Filippov)
947 - wxFileName::Normalize(wxPATH_NORM_ALL) doesn't lower filename case any more
948 - wxFileName::Normalize(wxPATH_NORM_ENV_VARS) now works
949 - check if file exists in wxFileConfig::DeleteFile() (Christian Sturmlechner)
950 - when wxUSE_STL == 1 wxHashTable will not be implemented using wxHashMap
951   (as in 2.5.0).
952 - added some extra convenience functions to wxRect such as
953   GetBottomRight (Hajo Kirchhoff)
954 - changed built-in regex library to a Unicode-compatible version based
955   on TCL sources (Ryan Norton, M. J. Wetherell)
956 - added extra convenience functions to wxPoint for adding a
957   wxSize (Wlodzimierz Skiba)
958 - intermediate wxIPaddress class added to prepare for
959   wxIPV6address (Ray Gilbert)
960 - added overloaded constructors and Create() methods taking wxArrayString
961   for wxChoice, wxComboBox, wxListBox, wxRadioBox, wxCheckListBox,
962   wxSingleChoiceDialog, wxMultipleChoiceDialog
963 - renamed wxWave class to wxSound
964
965 All (GUI):
966
967 - added 3-state checkboxes for MSW/Mac (Dimitri Schoolwerth)
968 - added some support for C++ exceptions in the library (do read the manual!)
969 - added wxListCtrl::GetViewRect()
970 - added wxTextCtrl::MarkDirty()
971 - wxToolBar::ToggleTool() now works for radio buttons (Dag Ã…gren)
972 - wxListCtrl now sends an END_LABEL event if editing was cancelled, too
973 - bug in wxRect ctor from two [out of order] wxPoints fixed (Steve Cornett)
974 - status text is now restored after wxMenu help is shown in it
975 - bug in wxWindow::RemoveEventHandler() fixed (Yingjun Zhang)
976 - make it possible to use wxRTTI macros with namespaces (Benjamin I. Williams)
977 - wxColourDatabase API now uses objects instead of pointers
978 - added resolution option to JPEG image handler (Jeff Burton)
979 - added wxCalendarEvent::SetDate, wxCalendarEvent::SetWeekDay
980 - wxGenericDirCtrl now accepts multiple wildcards
981 - added focus event forwarding to wxGrid (Peter Laufenberg)
982 - fixed scrollbar problem in wxGrid (not showing scrollbars
983   when sizing smaller) (Shane Harper)
984 - dbbrowse demo fixed for Unicode (Wlodzimierz Skiba)
985 - added wxStatusBar support to XRC (Brian Ravnsgaard Riis)
986 - wxMenu::Append and etc. return a pointer to the wxMenuItem that was
987   added or inserted, or NULL on failure.
988 - using a -1 (wxID_ANY) for menu or toolbar item IDs will now generate new id
989 - added option to generate C++ headers to wxrc utility (Eduardo Marques)
990 - added wxDC::DrawPolyPolygon() for MSW/PS (Carl-Friedrich Braun)
991 - wxBufferedDC now allows to preserve the background and is documented
992 - added wxDC::GetPartialTextExtents
993
994 wxMSW:
995
996 - wxWidgets now builds under Win64
997 - fixed DDE memory leaks
998 - fixed wxTE_*WRAP styles handling
999 - wxTextCtrl::GetValue() works with text in non default encoding
1000 - changed wxCrashReport to generate minidumps instead of text files
1001 - wxRadioButtons are now checked when they get focus (standard behaviour)
1002 - several fixes to owner drawn menu items (Christian Sturmlechner)
1003 - wxGauge now supports full 32 bit range (Miroslav Rajcic)
1004 - make it possible to give focus to the notebook tabs (Hajo Kirchhoff)
1005 - MDI child frames are not always resizeable any more (Andrei Fortuna)
1006 - fixed enumerating of entries/groups under '/' in wxRegConfig
1007 - added wxSYS_ICONTITLE_FONT (Andreas Pflug)
1008 - added wxPATH_NORM_SHORTCUT to wxFileName
1009 - wxComboBox::GetValue within a wxEVT_COMMAND_TEXT_UPDATED event
1010   should now pass the correct value even if the handler for
1011   wxEVT_COMMAND_COMBOBOX_SELECTED changed the selection
1012 - wxFileDialog now returns correct filter index for multiple-file dialogs
1013 - added wxTextCtrl::HitTest()
1014 - experimental wxURL implementation using WinInet functions (Hajo Kirchhoff)
1015 - fixed several bugs in wxNotebook with wxNB_MULTILINE style
1016 - accelerators are now initially hidden if appropriate (Peter Nielsen)
1017 - background colour of a wxComboBox may now be set
1018 - fixed wxListCtrl::GetItemText/BackgroundColour()
1019 - Esc can now be used to close menus in the dialogs (Hartmut Honisch)
1020 - Added msw.remap system option so colourful toolbar buttons
1021   aren't mangled if you set it to 0. The default is 1
1022 - Toolbar buttons are now centred if the bitmap size is smaller
1023   than the specified default size
1024 - Fixed a bug in wxSpinCtrl::DoGetBestSize that would make wxSpinCtrl too tall
1025
1026 wxGTK:
1027
1028 - fixes to wxTextCtrl scrolling under GTK2 (Nerijus Baliunas)
1029 - fix for crash when using user-dashed lines (Chris Borgolte)
1030 - fixed wxChoice::Delete() in presence of client data
1031 - allow calling wxWindow::SetFont if window not yet created
1032 - use same average character width as other ports when calculating dialog units
1033 - fixed mouse wheel handling under GTK2 (Hugh Fisher)
1034 - wxNotebook::HitTest() implemented (Daniel Lundqvist)
1035 - memory leaks fixes in wxFileDialog (John Labenski)
1036 - don't drop click events from triple clicks (Frode Solheim)
1037
1038 wxMac:
1039
1040 - use same average character width as other ports when calculating dialog units
1041 - implemented handling of mouse wheel
1042 - fix for long file names (longer than 32 characters) in file dialogs
1043 - use Unix sockets for Mach-o builds
1044
1045 wxMotif:
1046
1047 - look for Motif 2.1 headers before Motif 1.2 ones in configure
1048
1049 wxHTML:
1050
1051 - wxHtmlHelpController now supports compressed MS HTML Help files (*.chm)
1052   on Unix (Markus Sinner)
1053
1054 Unix:
1055
1056 - added XFree86 resolution changing using xf86vidmode extensions (Ryan Norton)
1057 - implemented asynchronous playback in wxSound and added SDL backend in
1058   addition to existing OSS one
1059 - it is now possible to send PostScript to any output stream (Zoltan Kovacs)
1060
1061
1062 2.5.0
1063 -----
1064
1065 All:
1066
1067 - It is now possible to build several smaller libraries instead of single
1068   huge wxWidgets library; wxBase is now dependency of GUI ports rather then
1069   separately compiled library
1070 - added wxDateSpan::operator==() and !=() (Lukasz Michalski)
1071 - added wxFileName::GetForbiddenChars() (Dimitri Schoolwerth)
1072 - use true/false throughout the library instead of TRUE/FALSE
1073 - wxStopWatch::Start() resumes the stop watch if paused, as per the docs
1074 - added wxDirTraverser::OnOpenError() to customize the error handling
1075 - added wxArray::SetCount()
1076 - wxFile, wxFFile, wxTextFile and wxTempFile now all use UTF-8 encoding
1077   by default in Unicode mode
1078 - bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed
1079 - added wx/math.h (John Labenski)
1080 - added Catalan translations (Pau Bosch i Crespo)
1081 - added Ukrainian translations (Eugene Manko)
1082 - fixed bug with deleting entries at root level in wxFileConfig
1083 - chkconf.h now includes platform-specific versions (for MSW
1084   and Mac) which contain some tests that were in setup.h
1085 - added event sink argument to wxEvtHandler::Connect()
1086 - added support for POST method and alt ports to wxHTTP (Roger Chickering)
1087 - added wxSocket::IPAddress() (Chris Mellon)
1088 - wxDataStreams can read/write many elements at once (Mickael Gilabert)
1089 - added wxRecursionGuard class
1090 - added wxThreadHelper class (Daniel Howard)
1091 - Added STL support (--enable-stl for configure, wxUSE_STL in setup.h).
1092   When enabled, wxString will derive from std::string, wxArray from,
1093   std::vector, wxList from std::list. In addition wxHashTable will be
1094   implemented in terms of wxHashMap.
1095 - Added wxList::compatibility_iterator. Can be used like wxNode* (except
1096   it can't be delete()d). It permits writing code which will work
1097   both with wxUSE_STL==1 and wxUSE_STL==0.
1098
1099 wxBase:
1100
1101 - added Watcom makefiles
1102 - fixed bug with searching in sorted arrays (Jürgen Palm)
1103
1104 All GUI ports:
1105
1106 - added wxVScrolledWindow, wxVListBox and wxHtmlLbox classes
1107 - added wxListbook control
1108 - added alpha channel support to wxImage
1109 - added wxRenderer class allowing to customize the drawing of generic controls
1110 - added wxCLOSE_BOX style for dialogs and frames
1111 - added wxSplitterWindow and wxWizard handlers to XRC
1112 - wxWizard is now sizer-friendly and may be made resizeable (Robert Vazan)
1113 - added proportion to wxFlexGridSizer::AddGrowableRow/Col (Maxim Babitski)
1114 - added wxFlexGridSizer::SetFlexibleDirection() (Szczepan Holyszewski)
1115 - implemented GetEditControl for wxGenericTreeCtrl (Peter Stieber)
1116 - improved contrib/utils/convertrc parsing (David J. Cooke)
1117 - fixed handling of URLs and filenames in wxFileSystem
1118 - implemented alignment for wxGrid bool editor and renderer
1119 - support wxListCtrl columns alignment for all platforms and not just MSW
1120 - added wxToolBar Add/InsertTool(tool) (Janusz Piwowarski)
1121 - added wxTB_HORZ_TEXT style for MSW and GTK (Axel Schlueter)
1122 - fixed user dash handling for MSW and GTK (Ken Edwards)
1123 - WXR resources can now be used in Unicode builds
1124 - it is now possible to use several wxFileHistory objects in the same menu
1125   by giving them different base IDs (Dimitri Schoolwerth)
1126 - Added wxTLW::SetShape with implementations for wxMSW and wxGTK (so far)
1127 - FL: removed const from EnableTool parameters
1128 - FL: signal child window when toolbar is closed
1129 - In various places, changed tests for pathsep on last char of string to call
1130   wxEndsWithPathSeparator(s)
1131 - Added to defs.h a couple of macros (wxPtrToULong & wxULongToPtr)
1132 - Minor improvements to document/view framework, including
1133   delayed deletion of a document (until after the user has chosen
1134   a new document), and more intelligent addition of filenames to
1135   the file history, including not adding filenames if not using the
1136   default extension for the template
1137 - sped up wxImage::Scale using fixed point arithmetic (Wade Brainerd)
1138 - Added BLOB support to wxDB (John Skiff)
1139 - wxWizard now validates when pressing Back or Next
1140 - Implemented wxNotebook::DoGetBestSize so Fit now works
1141 - Added FindItemByPosition to wxMenu
1142 - wxTimer now derives from wxEvtHandler and is its own owner object by default
1143 - Extended wxTextAttr and added wxTextCtrl::GetStyle stub
1144   to allow better rich text support.
1145 - implemented wxFlexGridSizer::Show() (Wade Brainerd)
1146 - Added m_ prefix to wxColourData and wxFontData members
1147 - Added wxHtmlPrintout::AddFilter so HTML printing can be subject to
1148   custom filters as well as HTML viewing.
1149 - Moved wxApp::SendIdleEvents and wxApp::ProcessIdle into common code.
1150 - wxWindow::OnInternalIdle is now used in all ports, and ensures that
1151   user OnIdle events do not interfere with crucial internal processing.
1152 - wxWindow::UpdateWindowUI is now a documented function that
1153   sends wxUpdateUIEvents, and can be overridden. It has a helper function
1154   DoUpdateWindowUI for taking appropriate wxUpdateUIEvent action.
1155 - Added functions to wxUpdateUIEvent: Set/GetMode, Set/GetUpdateInterval,
1156   CanUpdate, to assist with optimising update event frequency.
1157 - Added functions to wxIdleEvent: Set/GetMode, CanSend, to
1158   determine whether a window should receive idle events.
1159 - Added wxWS_EX_PROCESS_IDLE, wxWS_EX_PROCESS_UI_UPDATES window
1160   styles for use with conservative idle and update event modes.
1161 - send menu update events only when a menu is about to be used (MSW/GTK)
1162 - improved event processing performance (Hans Van Leemputten)
1163 - added wxMirrorDC class
1164 - printing improvements: GetPageInfo() gets called after the DC has
1165   been set and after OnPreparePrinting() has been called so it can
1166   report the number of pages accurately; doesn't try to set
1167   number of pages in print dialog, in common with other Windows apps;
1168   wxHTML easy printing's preview shows number of pages
1169   correctly; preview scrollbars are set correctly; keyboard navigation
1170   improved
1171
1172 Unix:
1173
1174 - fixed compilation on systems with zlib installed but < 1.1.3 version
1175 - fixed compilation on Solaris 7 with large files support enabled
1176 - added wxTaskBarIcon implementation for X11
1177 - added support for GNU/Hurd in configure
1178 - wxLocale::Init now tries to set .utf8 locale in Unicode mode (Andreas Pflug)
1179
1180 Generic controls:
1181
1182 - implemented wxListCtrl::Refresh() (Norbert Berzen)
1183 - support adding/removing columns dynamically (Donald C. Taylor)
1184 - wxToolBarSimple, property list classes, wxTreeLayout moved
1185   to contrib/src/deprecated
1186
1187 wxGTK:
1188
1189 - added support for label mnemonics to GTK+2 build (Michael Moss)
1190 - added native wxMessageDialog implementation for GTK+2 build
1191 - fixed wxMenu::Remove (John Skiff and Benjamin Williams)
1192 - made wxTextCtrl::EmulateKeyPress() work for Delete and Backspace
1193 - fixed wxTopLevelWindow::ShowFullScreen to work with kwin, IceWM and
1194   window managers that support _NET_WM_STATE_FULLSCREEN
1195 - added wxEVT_MENU_OPEN event generation
1196 - fixed bug in generic file selector causing incomplete file extensions to
1197   be appended to filenames with no extension
1198 - added wxTextCtrl::SetSelection implementation for GTK+ 2
1199 - fixed wxTextCtrl::IsEditable() for GTK+ 2
1200 - fixed wxStaticText alignment for GTK+ 2 (Kevin Hock)
1201 - don't consume 100% CPU when showing a popup menu
1202
1203 wxMac:
1204
1205 - generate wxEVT_SCROLL_THUMBRELEASE and wxEVT_SCROLLWIN_THUMBRELEASE events
1206 - generate wxEVT_MENU_OPEN and wxEVT_MENU_CLOSE events
1207
1208 wxMSW:
1209
1210 - possibility to use DIBs for wxBitmap implementation (Derry Bryson)
1211 - added wxCrashReport
1212 - wxStaticBitmap doesn't stretch its bitmap any longer (like other ports)
1213 - support for accelerator keys in the owner drawn menus (Derry Bryson)
1214 - wxCaret::SetSize() doesn't hide the caret any longer as it used to
1215 - wxCheckListBox::Check() doesn't send CHECKLISTBOX_TOGGLE event any more
1216 - fixed bugs in wxThread::Wait() and IsAlive()
1217 - fixed bug with wxTR_EDIT_LABELS not working with wxTR_MULTIPLE
1218 - fixes for compilation with OpenWatcom and DigitalMars compilers
1219 - fixed wxStaticText best size calculation (was wrong by '&' width)
1220 - fixed calling wxFrame::Maximize(FALSE) before the window is shown
1221 - added wxNotebook::HitTest() (Otto Wyss)
1222 - libraries built with makefile.g95 have a _min or _cyg suffix (MinGW/Cygwin)
1223 - when using DLL, wxLocalFSHandler was not being exported
1224 - fixed problem with wxEvtHandler object not removed from wxPendingEvents
1225 - Windows XP manifest is now included in wx.rc; it is no longer necessary
1226   to ship .exe.manifest file with applications to support XP themes
1227 - wxLocale::Init no longer reports error if trying to set Unicode-only locale
1228   or if user's default locale is Unicode-only
1229 - improved border handling under Windows XP
1230 - partial fix for wxNotebook pages looking bad under XP: wxUSE_UXTHEME
1231   enables XP theme engine code, and wxUSE_UXTHEME_AUTO tells
1232   wxWidgets to use the theme tab colour for control backgrounds.
1233 - disable wxNB_RIGHT, wxNB_LEFT, wxNB_BOTTOM notebook styles under Windows XP
1234 - fixed release mode build with VC 7.x (Martin Ecker)
1235 - added support for wxALWAYS_SHOW_SB style
1236 - you don't need to add opengl32.lib when using VC++ now (David Falkinder)
1237
1238 wxMotif:
1239
1240 - made wxFileDialog behaviour with complex wildcards more sensible (it still
1241   does not support all the features other ports do); refer to wxFileDialog
1242   documentation for a detailed explanation
1243 - implemented wxWakeUpIdle
1244 - for Motif 2.0, used the native combobox widget instead of the GPL'd
1245   xmcombo; xmcombo is still used for Motif 1.x and Lesstif when compiled
1246   with Motif 1.x compatibility
1247 - implemented wxToggleButton
1248 - wxRadioBox and wxStaticBox now use the default shadow (border) style
1249   instead of a sunken border
1250 - implemented wxBitmapDataObject
1251 - finished wxClipboard implementation
1252
1253 wxUniv:
1254
1255 - controls in toolbars now supported
1256
1257 wxHTML:
1258
1259 - added text selection to wxHtmlWindow
1260 - added SetFonts to HTML printing classes (Adrian Philip Look)
1261 - it is now possible to force page break when printing by inserting
1262   <div style="page-break-before:always"> into the markup (Greg Chicares)
1263 - wxHtmlWindow now uses double buffering to prevent flicker
1264
1265
1266 OLD CHANGES
1267 ===========
1268
1269 INCOMPATIBLE CHANGES SINCE 2.2.x
1270 ================================
1271
1272     Please take a few minutes to read the following list, especially
1273     paying attention to the most important changes which are marked
1274     with '!' in the first column.
1275
1276     Also please note that you should ensure that WXWIN_COMPATIBILITY_2_2
1277     is defined to 1 if you wish to retain maximal compatibility with 2.2
1278     series -- however you are also strongly encouraged to try to compile
1279     your code without this define as it won't be default any longer in
1280     2.6 release.
1281
1282     NB: if you want to build your program with different major versions
1283         of wxWidgets you will probably find the wxCHECK_VERSION() macro
1284         (see the documentation) useful.
1285
1286
1287 wxBase:
1288
1289 ! wxArray<T>::Remove(size_t) has been removed to fix compilation problems
1290   under 64 bit architectures, please replace it with RemoveAt() in your
1291   code.
1292
1293 ! wxArray<T> macros have been changed to fix runtime problems under 64 bit
1294   architectures and as a side effect of this WX_DEFINE_ARRAY() can only be
1295   used now for the pointer types, WX_DEFINE_ARRAY_INT should be used for the
1296   arrays containing non-pointers.
1297
1298 - wxObject::CopyObject() and Clone() methods were removed because they
1299   simply don't make sense for all objects
1300
1301 - wxEvent now has a pure virtual Clone() method which must be implemented
1302   by all derived classes, if you have user-defined event classes please
1303   add "wxEvent *Clone() const { return new MyEvent(*this); }" line to them
1304
1305 - small change to wxStopWatch::Pause() semantics, please see the documentation
1306
1307 - unlikely but possible incompatibility: the definition of TRUE has changed
1308   from "1" to "(bool)1" (and the same thing for FALSE), so the code which
1309   could be erroneously compiled previously such as doing "return FALSE" from
1310   a function returning a pointer would stop compiling now (but this change
1311   is not supposed to have any effects on valid code)
1312
1313 - another minor change: wxApp::OnAssert() has a new "cond" argument, you
1314   must modify YourApp::OnAssert() signature if you were using it to override
1315   the default assert handling.
1316
1317 All (GUI):
1318
1319 ! the event type constants are not constants any more but are dynamically
1320   allocated during run-time which means that they can't be used as case labels
1321   in the switch()es, you must rewrite them to use if()s instead
1322
1323   You may also define WXWIN_COMPATIBILITY_EVENT_TYPES to get the old behaviour
1324   but this is strongly discouraged, please consider changing your code
1325   instead!
1326
1327 ! wxDialog does not derive from wxPanel any longer - if you were using it in
1328   your code, please update it. The quick fix for the most cases is to replace
1329   the occurrences of wxPanel with wxWindow.
1330
1331 ! if you handle (and don't skip) EVT_KEY_DOWN, the EVT_CHAR event is not
1332   generated at all, so you must call event.Skip() in your OnKeyDown() if
1333   you want to get OnChar() as well
1334
1335 - in general, the key events sent for the various non ASCII key combinations
1336   have been changed to make them consistent over all supported platforms,
1337   please see the wxKeyEvent documentation for details
1338
1339 - wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
1340   have changed (to fix some unfortunate clashes), please check your code to
1341   ensure that no tests for wxYES or wxNO are broken: for example, the following
1342   will *NOT* work any longer:
1343
1344         if ( flags & wxYES_NO )
1345                 ... do something ...
1346         if ( flags & wxYES )
1347                 ... do something else ...
1348
1349 - static wxWizard::Create() doesn't exist any more, the wizards are created
1350   in the same way as all the other wxWindow objects, i.e. by directly using
1351   the ctor
1352
1353 - wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
1354
1355 - wxGridCellAttrProvider class API changed, you will need to update your code
1356   if you derived any classes from it
1357
1358 - wxImage::ComputeHistogram()'s signature changed to
1359   unsigned long ComputeHistogram(wxImageHistogram&) const
1360
1361 - wxEvtHandler cannot be copied/assigned any longer - this never worked but
1362   now it results in compile-time error instead of run-time crashes
1363
1364 - WXK_NUMLOCK and WXK_SCROLL keys no longer result in EVT_CHAR() events,
1365   they only generate EVT_KEY_DOWN/UP() ones
1366
1367 - the dialogs use wxApp::GetTopWindow() as the parent implicitly if the
1368   parent specified is NULL, use wxDIALOG_NO_PARENT style to prevent this
1369   from happening
1370
1371 - several obsolete synonyms are only retained in WXWIN_COMPATIBILITY_2_2 mode:
1372   for example, use wxScrolledWindow::GetViewStart() now instead of ViewStart()
1373   and GetCount() instead of Number() in many classes
1374
1375 - wxCmdLineParser does not use wxLog to output messages anymore.
1376   to obtain the previous behaviour, add
1377   wxMessageOutput::Set(new wxMessageOutputLog); to your program
1378   (you will need to #include <wx/msgout.h>)
1379
1380 wxMSW:
1381
1382 ! build system changed: setup.h is not a static file in include/wx any more
1383   but is created as part of the build process under lib/<toolkit>/wx
1384   where <toolkit> is of the form (msw|univ)[dll][u][d]. You'll need to update
1385   the include path in your make/project files appropriately. Furthermore,
1386   xpm.lib is no longer used by wxMSW, it was superseded by the wxXPMDecoder
1387   class. You'll need to remove all references to xpm.lib from your
1388   make/project files. Finally, the library names have changed as well and now
1389   use the following consistent naming convention: wxmsw[ver][u][d].(lib|dll)
1390   where 'u' appears for Unicode version, 'd' -- for the debug one and version
1391   is only present for the DLLs builds.
1392
1393 - child frames appear in the taskbar by default now, use wxFRAME_NO_TASKBAR
1394   style to avoid it
1395
1396 - all overloads of wxDC::SetClippingRegion() combine the given region with the
1397   previously selected one instead of replacing it
1398
1399 - wxGetHomeDir() uses HOME environment variable and if it is set will not
1400   return the programs directory any longer but its value (this function has
1401   never been meant to return the programs directory anyhow)
1402
1403 - wxHTML apps don't need to include wx/html/msw/wxhtml.rc in resources file
1404   anymore. The file was removed from wxMSW
1405
1406
1407 Unix ports:
1408
1409 ! You should use `wx-config --cxxflags` in your makefiles instead of
1410   `wx-config --cflags` for compiling C++ files. CXXFLAGS contains CFLAGS
1411   and the compiler flags for C++ files only, CFLAGS should still be used
1412   to compile pure C files.
1413
1414
1415 wxThread and related classes:
1416
1417 - The thread-related classes have been heavily changed since 2.2.x versions
1418   as the old code had many serious problems. This could have resulted in
1419   semantical changes other than those mentioned here, please review use of
1420   wxThread, wxMutex and wxCondition classes in your code.
1421
1422 ! wxCondition now *must* be used with a mutex, please read the (updated) class
1423   documentation for details and revise your code accordingly: this change was
1424   unfortunately needed as it was impossible to ensure the correct behaviour
1425   (i.e. absence of race conditions) using the old API.
1426
1427 - wxMutex is not recursive any more in POSIX implementation (it hasn't been
1428   recursive in 2.2.x but was in 2.3.1 and 2.3.2), please refer to the class
1429   documentation for the discussion of the recursive mutexes.
1430
1431 - wxMutex::IsLocked() doesn't exist any more and should have never existed:
1432   this is was unique example of a thread-unsafe-by-design method.
1433
1434
1435 OTHER CHANGES
1436 =============
1437
1438 2.4.0
1439 -----
1440
1441 wxMSW:
1442
1443 - fixed loss of client data in wxChoice::SetString()
1444
1445 2.3.4
1446 -----
1447
1448 All:
1449
1450 - added (partial) Indonesian translations (Bambang Purnomosidi D. P.)
1451 - added wxSizer::Show()/Hide() (Carl Godkin)
1452 - fixed bugs in wxDateTime::SetToWeekDay()/GetWeek()
1453
1454 Unix (Base/GUI):
1455
1456 - minor OpenBSD compilation/linking fixes, now builds OOB under OpenBSD 3.1
1457 - don't include -I/usr/include nor -I/usr/local/include in wx-config output
1458 - shared library symbols are now versioned on platforms that support it (Linux)
1459
1460 wxGTK:
1461 - Further work for GTK 2.0 and Unicode support.
1462 - Addition of native frame site grip.
1463
1464 wxX11:
1465 - Unicode support through Pango library.
1466
1467 wxMSW:
1468
1469 - fixed crashes in wxListCtrl under XP
1470 - added context menu for rich edit wxTextCtrl
1471
1472 wxHTML:
1473
1474 - fixed wxHTML to work in Unicode build
1475
1476 2.3.3
1477 -----
1478
1479 wxBase:
1480
1481 - building wxBase with Borland C++ is now supported (Michael Fieldings)
1482 - wxSemaphore class added, many fixed to wxCondition and wxThread (K.S. Sreeram)
1483 - fixes to the command line parsing error and usage messages
1484 - modified wxFileName::CreateTempFileName() to open the file atomically
1485   (if possible) and, especially, not to leak the file descriptors under Unix
1486 - memory leak in wxHTTP fixed (Dimitri Schoolwerth)
1487 - fixes to AM_PATH_WXCONFIG autoconf macro
1488 - added wxHashMap class that replaces type-unsafe wxHashTable and is modelled
1489   after (non standard) STL hash_map
1490 - wxLocale now works in Unicode mode
1491 - wxLocale can now load message catalogs in arbitrary encoding
1492 - added wxShutdown() function (Marco Cavallini)
1493 - added wxEXPLICIT macro
1494 - IPC classes improved and memory leaks fixed (Michael Fielding).
1495   Global buffer removed, duplication in docs removed
1496 - debug new/free implementations made thread-safe
1497
1498 Unix (Base/GUI):
1499
1500 - wxWidgets may be built using BSD and Solaris (and possibly other) make
1501   programs and not only GNU make
1502 - wxTCP-based IPC classes now support communicating over Unix domain sockets
1503 - wxWidgets may be built as a dynamic shared library under Darwin / Mac OS X
1504   lazy linking issues have been solved by linking a single module (.o) into
1505   the shared library (two step link using distrib/mac/shared-ld-sh)
1506 - fixed thread priority setting under Linux
1507
1508 All (GUI):
1509
1510 - it is now possible to set the icons of different sizes for frames (e.g. a
1511   small and big ones) using the new wxIconBundle class
1512 - implemented radio menu items and radio toolbar buttons
1513 - added possibility to show text in the toolbar buttons
1514 - added wxArtProvider class that can be used to customize the look of standard
1515   wxWidgets dialogs
1516 - significantly improved native font support
1517 - wxImage::ComputeHistogram() now uses wxImageHistogram instead of type-unsafe
1518   wxHashTable
1519 - added IFF image handler
1520 - fixed using custom renderers in wxGrid which was broken in 2.3.2
1521 - support for multiple images in one file added to wxImage
1522   (TIFF, GIF and ICO formats)
1523 - support for CUR and ANI files in wxImage added (Chris Elliott)
1524 - wxTextCtrl::GetRange() added
1525 - added wxGetFontFromUser() convenience function
1526 - added EVT_MENU_OPEN and EVT_MENU_CLOSE events
1527 - added Hungarian translations (Janos Vegh)
1528 - added wxImage::SaveFile(filename) method (Chris Elliott)
1529 - added wxImage::FloodFill and implemented wxWindowDC::DoFloodFill method
1530   for GTK+, Mac, MGL, X11, Motif ports (Chris Elliott)
1531 - added (platform-dependent) scan code to wxKeyEvent (Bryce Denney)
1532 - added wxTextCtrl::EmulateKeyPress()
1533 - Added wxMouseCaptureChangedEvent
1534 - Added custom character filtering to wxTextValidator
1535 - wxTreeCtrl now supports incremental keyboard search
1536 - wxMessageOutput class added
1537 - wxHelpProvider::RemoveHelp added and called from ~wxWindowBase
1538   so that erroneous help strings are no longer found as the hash
1539   table fills up
1540 - updated libpng from 1.0.3 to 1.2.4
1541 - Added wxView::OnClosingDocument so the application can do cleanup.
1542 - generic wxListCtrl renamed to wxGenericListCtrl, wxImageList
1543   renamed to wxGenericImageList, so they can be used on wxMSW
1544   (Rene Rivera).
1545 - Added wxTreeEvent::IsEditCancelled so the application can tell
1546   whether a label edit was cancelled.
1547 - added static wxFontMapper::Get() accessor
1548
1549 wxMSW:
1550
1551 - small appearance fixes for native look under Windows XP
1552 - fixed the bug related to the redrawing on resize introduced in 2.3.2
1553 - fixed multiple bugs in wxExecute() with IO redirection
1554 - refresh the buttons properly when the window is resized (Hans Van Leemputten)
1555 - huge (40*) speed up in wxMask::Create()
1556 - changing wxWidgets styles also changes the underlying Windows window style
1557 - wxTreeCtrl supports wxTR_HIDE_ROOT style (George Policello)
1558 - fixed flicker in wxTreeCtrl::SetItemXXX()
1559 - fixed redraw problems in dynamically resized wxStaticText
1560 - improvements to wxWidgets applications behaviour when the system colours
1561   are changed
1562 - choose implicit parent for the dialog boxes better
1563 - fixed wxProgressDialog for ranges > 65535
1564 - wxSpinButton and wxSpinCtrl now support full 32 bit range (if the version
1565   of comctl32.dll installed on the system supports it)
1566 - wxFontEnumerator now returns all fonts, not only TrueType ones
1567 - bugs in handling wxFrame styles (border/caption related) fixed
1568 - showing a dialog from EVT_RADIOBUTTON handler doesn't lead to an infinite
1569   recursion any more
1570 - wxTextCtrl with wxTE_RICH flag scrolls to the end when text is appended to it
1571 - the separators are not seen behind the controls added to the toolbar any more
1572 - wxLB_SORT style can be used with wxCheckListBox
1573 - wxWindowDC and wxClientDC::GetSize() works correctly now
1574 - Added wxTB_NODIVIDER and wxTB_NOALIGN so native toolbar can be used in FL
1575 - Multiline labels in buttons are now supported (simply use "\n" in the label)
1576 - Implemented wxMouseCaptureChangedEvent and made wxGenericDragImage check it
1577   has the capture before release it.
1578 - fixed bugs in multiple selection wxCheckListBox
1579 - default button handling is now closer to expected
1580 - setting tooltips for wxSlider now works
1581 - disabling a parent window also disables all of its children (as in wxGTK)
1582 - multiple events avoided in wxComboBox
1583 - tooltip asserts avoided for read-only wxComboBox
1584 - fixed a race condition during a thread exit and a join
1585 - fixed a condition where a thread can hang during message/event processing
1586 - increased space between wxRadioBox label and first radio button
1587 - don't fail to register remaining window classes if one fails to register
1588 - wxFontDialog effects only turned on if a valid colour was
1589   provided in wxFontData
1590 - Added wxTE_LEFT, wxTE_CENTRE and wxTE_RIGHT flags for text control alignment.
1591 - Bitmap printing uses 24 bits now, not 8.
1592
1593 wxGTK:
1594
1595 - wxDirDialog now presents the file system in standard Unix way
1596 - wxButton now honours wxBU_EXACTFIT
1597 - wxStaticBox now honours wxALIGN_XXX styles
1598 - added support for non alphanumeric simple character accelerators ('-', '=')
1599 - new behaviour for wxWindow::Refresh() as it now produces a delayed refresh.
1600   Call the new wxWindow::Update() to force an immediate update
1601 - support for more SGI hardware (12-bit mode among others)
1602 - fixed wxDC::Blit() to honour source DC's logical coordinates
1603 - implemented wxIdleEvent::RequestMore() for simple background tasks
1604 - implemented wxChoice::Delete()
1605 - fixed bad memory leak in wxFileDialog (Chris Elliott)
1606 - made internal GC pool dynamically growable
1607 - added GTK+ 2 and Unicode support
1608
1609 wxMotif:
1610
1611 - improved colour settings return values (Ian Brown)
1612 - improved border style handling for wxStaticText (Ian Brown)
1613 - improved toolbar control alignment
1614 - implemented wxSpinButton
1615 - implemented wxCheckListBox
1616 - fixed wxSpinCtrl and wxStaticLine when used with sizers
1617 - wxStaticBitmap now shows transparent icons correctly
1618
1619 wxX11:
1620
1621 - added generic MDI implementation (Hans Van Leemputten)
1622 - first cut at wxSocket support (not yet working)
1623
1624 wxMac:
1625
1626 - Many improvements
1627
1628 wxOS2:
1629
1630 - First alpha-quality release
1631
1632 wxHTML:
1633
1634 - fixed wxHtmlHelpController's cache files handling on big endian machines
1635 - added blocking and redirecting capabilities to wxHtmlWindow via
1636   wxHtmlWindow::OnOpeningURL()
1637 - fixed alignment handling in tables
1638 - fixed <font face="..."> handling to be case insensitive
1639
1640 2.3.2
1641 -----
1642
1643 New port: wxUniv for Win32/GTK+ is now included in the distribution.
1644
1645 wxBase:
1646
1647 - wxRegEx class added
1648 - wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
1649 - wxTextBuffer and wxTextFile(wxStream) added (Morten Hanssen)
1650 - more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
1651   glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
1652   capabilities at runtime instead of in the configure script.
1653
1654 All (GUI):
1655
1656 - support for virtual list control added
1657 - column images in report mode of the list control
1658 - wxFindReplaceDialog added (based on work of Markus Greither)
1659 - wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
1660 - polygon support in wxRegion (Klaas Holwerda)
1661 - wxStreamToTextRedirector to allow easily redirect cout to wxTextCtrl added
1662 - fixed bug with using wxExecute() to capture huge amounts of output
1663 - new wxCalendarCtrl styles added (Søren Erland Vestø)
1664 - wxWizard changes: loading from WXR support, help button (Robert Cavanaugh)
1665 - wxDirSelector() added (Paul A. Thiessen)
1666 - wxGrid cell editing veto support (Roger Gammans)
1667 - wxListCtrl ITEM_FOCUSED event added
1668 - support for ICO files in wxImage added (Chris Elliott)
1669 - improvements to wxDragImage (Chuck Messenger)
1670
1671 wxMSW:
1672
1673 - support for the DBCS fonts (CP 932, 936, 949, 950) (Nathan Cook)
1674 - new library naming convention under VC++ -- please change your application
1675   project files
1676
1677 wxGTK:
1678
1679 - fixed popup menu positioning bug
1680 - fixed the edit function for wxListCtrl (Chuck Messenger)
1681 - fixed the key-hitting events for wxListCtrl and wxTreeCtrl, so they
1682   correctly return the key which was pressed (Chuck Messenger)
1683
1684 wxMac:
1685
1686 - support for configuration and build under Mac OS X using the Apple Developer
1687   Tools
1688
1689 wxHTML:
1690
1691 - new HTML parser with correct parsing of character entities and fixes
1692   to tags parsing
1693 - added support for animated GIFs
1694
1695 2.3.1
1696 -----
1697
1698 wxBase:
1699
1700 - Fixes for gcc 3.0
1701 - Fixed new charset detection code
1702 - ODBC Informix fixes (submitted by Roger Gammans)
1703 - Added ODBC date support to wxVariant
1704 - Added wxDir::Traverse
1705 - Added wxSingleInstanceChecker class
1706 - Removed redundant wxDebugContext functions using C++ streams,
1707   so now standard stream usage should be unnecessary
1708
1709 All (GUI):
1710
1711 - Added wxDbGrid class for displaying ODBC tables
1712 - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
1713   user code can get access to the edit control when it is created, (to
1714   push on a custom event handler for example)
1715 - Added wxTextAttr class and SetStyle, SetDefaultStyle and
1716   GetDefaultStyle methods to wxTextCtrl
1717 - Added wxSingleInstanceChecker
1718 - Improvements to Tex2RTF
1719 - Added Paul and Roger Gammans' grid controls
1720 - Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
1721   first-time saved
1722 - Fixed memory leak in textcmn.cpp
1723 - Various wxXML enhancements
1724 - Removed wxCLIP_CHILDREN style from wxSplitterWindow
1725 - Fixed memory leak in DoPrint, htmprint.cpp
1726 - Fixed calendar sample bug with using wxCommandEvent::GetInt()
1727   instead of GetId()
1728 - Added wxDbGrid combining wxODBC classes with wxGrid
1729 - Added more makefiles and project files for contrib hierarchy
1730
1731 wxMSW:
1732
1733 - Fixed wxApp::ProcessMessage so controls don't lose their
1734   accelerators when the accelerators are redefined elsewhere
1735 - Accelerators consisting of simple keystrokes (without control,
1736   alt or shift) now work
1737 - Compile fixes for Watcom C++ added
1738 - Compile fixes for Cygwin 1.0 added
1739 - Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop()
1740 - Replaced wxYield() call in PopupMenu() by a much safer
1741   wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones
1742 - Enter processing in wxSpinCtrl fixed
1743 - Fixed bug in determining the best listbox size
1744 - Fix for wxFrame's last focus bug
1745 - We now send iconize events
1746 - Fixed wxFrame::SetClientSize() with toolbar bug
1747 - Added mousewheel processing
1748 - Added wxSystemSettings::Get/SetOption so we can configure
1749   wxWidgets at run time; used this to implement no-maskblt option
1750   in wxDC
1751 - Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI
1752   child frame styles are honoured
1753
1754 wxGTK:
1755
1756 - Fixed slider rounding bug
1757 - Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding()
1758 - We now send iconize events
1759 - Fix for discrepancies between wxNotebookEvent and wxNotebook
1760   GetSelection() results
1761
1762 2.3.0
1763 -----
1764
1765 wxBase:
1766
1767 - fixed problem with wxURL when using static version of the library
1768 - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
1769 - wxMimeTypesManager now can create file associations too (Chris Elliott)
1770 - wxCopyFile() respects the file permissions (Roland Scholz)
1771 - wxFTP::GetFileSize() added (Søren Erland Vestø)
1772 - wxDateTime::IsSameDate() bug fixed
1773 - wxTimeSpan::Format() now behaves more as expected, see docs
1774 - wxLocale now provides much more convenient API for setting language and
1775   detecting current system language. New API is more abstracted and truly
1776   cross-platform, independent of underlying C runtime library.
1777
1778 All (GUI):
1779
1780 - new wxToggleButton class (John Norris, Axel Schlueter)
1781 - wxCalendarCtrl not highlighting the date with time part bug fixed
1782 - wxADJUST_MINSIZE sizer flag added
1783 - FindOrCreateBrush/Pen() bug fix for invalid colour values
1784 - new wxXPMHandler for reading and writing XPM images
1785 - added new (now recommended) API for conversion between wxImage and wxBitmap
1786   (wxBitmap::ConvertToImage() and wxBitmap::wxBitmap(wxImage&) instead of
1787   wxImage methods and ctor)
1788 - ODBC classes now support DB2, Interbase, and Pervasive SQL
1789 - ODBC documentation complete!!
1790 - ODBC classes have much Unicode support added, but not complete
1791 - ODBC experimental BLOB support added, but not completely tested
1792 - ODBC NULL column support completed (Roger/Paul Gammans)
1793 - ODBC All "char *" and char arrays removed and replaced with wxString use
1794
1795 wxMSW:
1796
1797 - threads: bug in wxCondition::Broadcast fixed (Pieter van der Meulen)
1798 - fixed bug in MDI children flags (mis)handling
1799 - it is possible to compile wxCHMHelpController with compilers
1800   other than Visual C++ now and hhctrl.ocx is loaded at runtime
1801
1802 wxGTK:
1803
1804 - added support for wchar_t (wxUSE_WCHAR_T) under Unix
1805
1806 wxHTML:
1807
1808 - mew feature, wxHtmlProcessor for on-the-fly modification of HTML markup
1809 - visual enhancements to contents panel of wxHtmlHelpController
1810
1811 2.2.0
1812 -----
1813
1814 wxBase:
1815
1816 - Fixed bug with directories with trailing (back)slashes in wxPathExists
1817 - wxString: added wxArrayString::operator==() and !=()
1818 - Fixes for wxCmdLineParser
1819 - Added wxGetLocalTimeMillis
1820 - Completed Czech translations
1821 - Some stream corrections
1822 - added missing consts to wxPoint operators
1823 - wxDateTime ParseFormat fixes
1824 - wxFile::Open(write_append) will create file if it doesn't exist
1825 - small fixes to MIME mailcap test command handling, more MIME tests in the sample
1826
1827 All (GUI):
1828
1829 - wxGenericDragImage now allows virtual image drawing, and
1830   flicker-free dragging is now possible
1831 - Added wxPrinter::GetLastError
1832 - Fixed wxLogGui reentrancy problem
1833 - Paper names now translated
1834 - wxGrid fixes
1835 - Generic validator now caters for more cases (integers in
1836   wxTextCtrl, strings in wxChoice, wxComboBox)
1837 - Fixed crash when docview On... functions return FALSE. Show
1838   error message when an non-existent filename is typed into the Open
1839   File dialog.
1840 - Corrected Baltic font encoding handling
1841 - wxImage: enhanced TIFF code, added new platform-independent BMP
1842   writing code
1843 - wxKeyEvent::GetKeyCode() and HasModifiers() added and documented
1844 - Fixed wxPropertyForm crashes in sample
1845 - wxWizard now calls TransferDataFromWindow() before calling
1846   wxWizardPage::GetNext() fixing an obvious bug
1847
1848 wxMSW:
1849
1850 - wxWindow::GetCharWidth/Height now calculated accurately.
1851   This will affect all .wxr dialog resources, so for
1852   backward compatibility, please set
1853   wxDIALOG_UNIT_COMPATIBILITY to 1 in setup.h
1854 - wxListCtrl: set item text in LIST_ITEM_ACTIVATED events
1855 - wxTextCtrl: implemented setting colours for rich edit controls
1856 - wxColour now accepts both grey and gray
1857 - BC++ DLL compilation fixed
1858 - Watcom C++ makefiles improved for JPEG and TIFF compilation
1859 - Fixed submenu accelerator bug
1860 - Fixed dialog focus bug (crash if the previous window to have
1861   the focus was destroyed before the dialog closed)
1862 - Too-small default wxTextCtrl height fixed
1863 - fixed "missing" initial resize of wxMDIChildFrame
1864 - wxFrame restores focus better
1865 - Now ignore wxTHICK_FRAME in wxWindow constructor: only relevant to
1866   frames and dialogs, interferes with other window styles otherwise
1867   (sometimes you'd get a thick frame in a subwindow)
1868 - wxTextCtrl insertion point set to the beginning of the control by SetValue
1869 - Fix so wxMDIParentFrame is actually shown when Show(TRUE) is called.
1870 - wxFileDialog: adjusts struct size if there's an error (struct
1871   sizes can be different on different versions of Windows)
1872 - wxImageList::GetSize() documented and added to wxMSW
1873 - fixed default dialog style to make them non resizeable again
1874 - fixed wxFrame::IsShown() which always returned TRUE before
1875
1876 wxGTK:
1877
1878 - Please see docs/gtk/changes.txt.
1879
1880 wxMotif:
1881
1882 - Small compilation fixes
1883
1884 Documentation:
1885
1886 - wxCaret documented
1887
1888 2.1.16
1889 ------
1890
1891 wxBase:
1892
1893 All (GUI):
1894
1895 wxMSW:
1896
1897 - Various bug fixes
1898 - Added wxCHMHelpController, for invoking MS HTML Help
1899   files. This works under VC++ only
1900 - Modal dialog handling improved
1901 - Printer dialog now modal
1902
1903 wxGTK:
1904
1905 - Various bug fixes
1906
1907 wxMotif:
1908
1909 - Various bug fixes
1910
1911 2.1.15
1912 ------
1913
1914 Documentation:
1915
1916 - Added docs/tech for technical notes
1917
1918 File hierarchy:
1919
1920 - Started new contrib hierarchy that mirrors
1921   the main lib structure; moved OGL and MMedia into it
1922
1923 wxBase:
1924
1925 - wxSocket support
1926 - wxDateTime replaces and extends old wxDate and wxTime classes (still
1927   available but strongly deprecated) with many new features
1928 - wxLongLong class provides support for (signed) 64 bit integers
1929 - wxCmdLineParser class for parsing the command line (supporting short and
1930   long options, switches and parameters of different types)
1931 - it is now possible to build wxBase under Win32 (using VC++ only so far)
1932   and BeOS (without thread support yet)
1933 - wxThread class modified to support both detached and joinable threads, also
1934   added new GetCPUCount() and SetConcurrency() functions (useful under Solaris
1935   only so far)
1936 - wxDir class for enumerating files in a directory
1937 - wxLog functions are now (more) MT-safe
1938 - wxStopWatch class, timer functions have more chances to return correct
1939   results for your platform (use ANSI functions where available)
1940 - wxString::ToLong, ToULong, ToDouble methods and Format() static one added
1941 - buffer overflows in wxString and wxLog classes fixed (if snprintf() function
1942   is available)
1943 - wxArray::RemoveAt() replaces deprecated wxArray::Remove(index)
1944
1945 all (GUI):
1946
1947 - Added wxImage::Rotate.
1948 - new wxCalendarCtrl class for picking a date interactively
1949 - wxMenu(Bar)::Insert() and Remove() functions for dynamic menu management
1950 - wxToolBar supports arbitrary controls (not only buttons) and can be
1951   dynamically changed (Delete/Insert functions)
1952 - vertical toolbars supported by MSW and GTK native wxToolBar classes
1953 - wxTreeCtrl and wxListCtrl allow setting colour/fonts for individual items
1954 - "file open" dialog allows selecting multiple files at once (contributed by
1955   John Norris)
1956 - wxMimeTypesManager uses GNOME/KDE MIME database to get the icons for the
1957   MIME types if available (Unix only)
1958 - wxDC::DrawRotatedText() (based on contribution by Hans-Joachim Baader)
1959 - TIFF support added (libtiff required and included in the distribution)
1960 - PCX files can now be written (256 and 24 bits)
1961 - validators may work recursively if wxWS_EX_VALIDATE_RECURSIVELY is set
1962 - wxScrolledWindow now has keyboard interface
1963 - wxTextEntryDialog may be used for entering passwords (supports wxTE_PASSWORD)
1964 - added wxEncodingConverter and improved wxFontMapper
1965   for dealing with conversions between different encodings,
1966   charsets support in wxLocale and wxHTML
1967 - wxDragImage class added
1968 - samples/help improved to show standard and advanced HTML help
1969   controllers, as well as native help
1970 - moved wxTreeLayout class to main lib
1971
1972 wxMSW:
1973
1974 - wxFrame::MakeFullScreen added.
1975 - support for enhanced metafiles added, support for copying/pasting metafiles
1976   (WMF and enhanced ones) fixed/added.
1977 - implemented setting colours for push buttons
1978 - wxStatusBar95 may be now used in dialogs, panels (not only frames) and can be
1979    positioned along the top of the screen and not only at the bottom
1980 - wxTreeCtrl::IsVisible() bug fixed (thanks to Gary Chessun)
1981 - loading/saving big (> 32K) files in wxTextCtrl works
1982 - tooltips work with wxRadioBox
1983 - wxBitmap/wxIcon may be constructed from XPM included into a program, as in
1984   Unix ports
1985 - returning FALSE from OnPrintPage() aborts printing
1986 - VC++ makefiles and project files made (mostly) consistent
1987 - wxSetCursorEvent added
1988
1989 wxGTK:
1990
1991 - wxFontMapper endless recursion bug (on some systems) fixed
1992 - wxGTK synthesizes wxActivateEvents
1993 - UpdateUI handlers may be used with wxTextCtrl
1994
1995 wxMotif:
1996
1997 - wxMenu::Enable works
1998 - wxToolBar bugs fixed
1999 - OGL samples made to work again
2000
2001 wxHTML:
2002
2003 - almost complete rewrite of wxHtmlHelpController,
2004   including faster search, bookmarks, printing, setup dialog
2005   and cross-platform binary compatible .cached files for faster
2006   loading of large helpbooks, case insensitive search
2007   split into 3 parts: wxHtmlHelpData, Frame and Controller
2008 - added support for charsets and <meta> tag
2009 - added support for font faces and justified paragraphs,
2010   taken some steps to prepare wxHTML for frames
2011 - added dynamic pushing/popping of wxHtmlParser tag handlers
2012 - improved HTML printing
2013 - added extensive table of HTML characters substitutions (&nbsp; etc.)
2014 - fixed wxHtmlWindow flickering, several minor bugfixes
2015 - added some tags: <address>, <code>, <kbd>, <samp>, <small>, <big>,
2016   fixed handling of relative and absolute font sizes in <font size>
2017
2018
2019 NOTE: for changes after wxWidgets 2.1.0 b4, please see the CVS
2020 change log.
2021
2022 2.1.0, b4, May 9th 1999
2023 -----------------------
2024
2025 wxGTK:
2026
2027 - JPEG support added.
2028 - Many fixes and changes not thought worth mentioning in this file :-)
2029
2030 wxMSW:
2031
2032 - wxNotebook changes: can add image only; wxNB_FIXEDWIDTH added;
2033   SetTabSize added.
2034 - JPEG support added.
2035 - Fixes for Cygwin compilation.
2036 - Added wxGA_SMOOTH and wxFRAME_FLOAT_ON_PARENT styles.
2037 - Many fixes people didn't tell this file about.
2038
2039 wxMotif:
2040
2041
2042 General:
2043
2044 - Some changes for Unicode support, including wxchar.h/cpp.
2045
2046
2047 2.0.1 (release), March 1st 1999
2048 -------------------------------
2049
2050 wxGTK:
2051
2052 - wxGLCanvas fixes.
2053 - Slider/spinbutton fixes.
2054
2055 wxMSW:
2056
2057 - Fixed problems with <return> in dialogs/panels.
2058 - Fixed window cursor setting.
2059 - Fixed toolbar sizing and edge-clipping problems.
2060 - Some makefile fixes.
2061
2062 wxMotif:
2063
2064 - None.
2065
2066 General:
2067
2068 - Added wxUSE_SOCKETS.
2069 - More topic overviews.
2070 - Put wxPrintPaperType, wxPrintPaperDatabase into
2071   prntbase.h/cpp for use in non-PostScript situations
2072   (e.g. Win16 wxPageSetupDialog).
2073
2074
2075 Beta 5, February 18th 1999
2076 --------------------------
2077
2078 wxGTK:
2079
2080 - wxExecute improved.
2081
2082 wxMSW:
2083
2084 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
2085   expected).
2086 - Changed VC++ makefiles (.vc) so that it's possible to have
2087   debug/release/DLL versions of the library available simultaneously,
2088   with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
2089 - Added BC++ 5 IDE files and instructions.
2090 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
2091 - Fixed focus-related crash.
2092
2093 wxMotif:
2094
2095 - Cured asynchronous wxExecute crash.
2096 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
2097
2098 General:
2099
2100 - wxLocale documented.
2101 - Added include filenames to class reference.
2102 - wxHelpController API changed: SetBrowser becomes SetViewer,
2103   DisplaySection works for WinHelp, help sample compiles under Windows
2104   (though doesn't display help yet).
2105
2106 Beta 4, February 12th 1999
2107 --------------------------
2108
2109 wxGTK:
2110
2111 - Miscellaneous fixes.
2112
2113 wxMSW:
2114
2115 - Makefiles for more compilers and samples; Cygwin makefiles
2116   rationalised.
2117 - Added VC++ project file for compiling wxWidgets as DLL.
2118
2119 wxMotif:
2120
2121 - Added OnEraseBackground invocation.
2122 - Added wxRETAINED implementation for wxScrolledWindow.
2123 - Cured scrolling display problem by adding XmUpdateDisplay.
2124 - Tried to make lex-ing in the makefile more generic (command line
2125   syntax should apply to both lex and flex).
2126 - Changed file selector colours for consistency (except for buttons:
2127   crashes for some reason).
2128 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
2129   of malloc, which causes memory problems).
2130
2131 General:
2132
2133 - Further doc improvements.
2134 - wxGenericValidator added.
2135 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
2136   automatically.
2137
2138 Beta 3, January 31st 1999
2139 -------------------------
2140
2141 wxGTK:
2142
2143 - wxClipboard/DnD API changes (still in progress).
2144 - wxToolTip class added.
2145 - Miscellaneous fixes.
2146
2147 wxMSW:
2148
2149 - wxRegConfig DeleteAll bug fixed.
2150 - Makefiles for more compilers.
2151 - TWIN32 support added.
2152 - Renamed VC++ makefiles from .nt to .vc, and
2153   factored out program/library settings.
2154 - Fixed wxIniConfig bug.
2155
2156 wxMotif:
2157
2158 - A few more colour fixes.
2159 - wxGLCanvas and OpenGL samples working.
2160 - Some compiler warnings fixed.
2161 - wxChoice crash fix.
2162 - Dialog Editor starting to work on Motif.
2163
2164 General:
2165
2166 - wxBusyCursor class added.
2167 - Added samples/dde.
2168 - More doc improvements, incl. expanding docs/html/index.htm.
2169
2170 Beta 2, January 1999
2171 --------------------
2172
2173 wxGTK:
2174
2175 wxMSW:
2176
2177 - 16-bit BC++ compilation/linking works albeit without the resource system.
2178
2179 wxMotif:
2180
2181 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
2182   the right place.
2183 - Cured some widget table clashes.
2184 - Added thread support (Robert).
2185 - wxPoem sample now works.
2186
2187 General:
2188
2189 - Rearranged documentation a bit.
2190 - Sash window uses area of first frame/dialog to paint over when drawing
2191   the dragged sash, not just the sash window itself (it clipped to the right
2192   or below).
2193 - Made resource sample use the correct Cancel button id.
2194 - Moved wxProp to main library (generic directory), created proplist
2195   sample.
2196 - Added bombs and fractal samples.
2197
2198 Beta 1, December 24th 1998
2199 --------------------------
2200
2201 wxGTK:
2202
2203 - Various
2204
2205 wxMSW, wxMotif: not in sync with this release.
2206
2207
2208 Alpha 18, December 29th 1998
2209 ----------------------------
2210
2211 wxMSW:
2212
2213 - Win16 support working again (VC++ 1.5)
2214 - Win16 now uses generic wxNotebook, wxListCtrl,
2215   wxTreeCtrl -- more or less working now, although
2216   a little work on wxNotebook is still needed.
2217   Under 16-bit Windows, get assertion when you click
2218   on a tab.
2219 - Wrote 16-bit BC++ makefiles: samples don't yet link.
2220 - Added CodeWarrior support to distribution courtesy
2221   of Stefan Csomor.
2222
2223 wxMotif:
2224
2225 - Cured scrolling problem: scrollbars now show/hide themselves
2226   without (permanently) resizing the window.
2227 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
2228   that disabled scrollbar paging.
2229 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
2230   colours correctly.
2231 - Removed major bug whereby dialogs were unmanaged automatically
2232   when any button was pressed.
2233 - Fixed colours of wxWindow scrollbars, made list and text controls
2234   have a white background.
2235 - Fixed dialog colour setting.
2236 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
2237   they have sensible colours by default.
2238 - Fixed a bug in wxStaticBox.
2239 - Cured wxTreeCtrl bug: now works pretty well!
2240 - Debugged DrawEllipticArc (a ! in the wrong place).
2241 - Added SetClippingRegion( const wxRegion& region ).
2242 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
2243
2244 Alpha 17, November 22nd 1998
2245 ----------------------------
2246
2247 wxMSW:
2248
2249 - More documentation updates, especially for
2250   wxLayoutWindow classes and debugging facilities.
2251 - Changed wxDebugContext to use wxDebugLog instead
2252   of wxTrace.
2253 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
2254   However, DLL support may be broken for BC++ since
2255   VC++ 6 required changing of WXDLLEXPORT keyword
2256   position.
2257 - Numerous miscellaneous changes.
2258
2259 wxMotif:
2260
2261 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
2262   were too buggy (probably not design for dynamic addition/removal of
2263   child frames).
2264 - Some improvements to the wxNotebook implementation.
2265 - wxToolBar now uses a bulletin board instead of a form, in an attempt
2266   to make it possible to add ordinary wxControls to a toolbar.
2267 - Cured problem with not being able to use global memory operators,
2268   by defining two more global operators, so that the delete will match
2269   the debugging implementation.
2270 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
2271   global memory operators (usually OK) and #defining new to be
2272   WXDEBUG_NEW (sometimes it might not be OK).
2273 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
2274 - Added a parent-existence check to popup menu code to make it not crash.
2275 - Added some optimization in wxWindow::SetSize to produce less flicker.
2276   It remains to be seen whether this produces any resize bugs.
2277
2278 It's a long time since I updated this file. Previously done:
2279
2280 - wxFrame, wxDialog done.
2281 - wxScrolledWindow done (but backing pixmap not used at present).
2282 - wxBitmap done though could be tidied it up at some point.
2283 - Most basic controls are there, if not rigorously tested.
2284 - Some MDI support (menus appear on child frames at present).
2285 - wxNotebook almost done.
2286 - wxToolBar done (horizontal only, which would be easy to extend
2287   to vertical toolbars).
2288
2289 More recently:
2290
2291 - Colour and font changing done (question mark over what happens
2292   to scrollbars).
2293 - Accelerators done (for menu items and buttons). Also event loop
2294   tidied up in wxApp so that events are filtered through ProcessXEvent.
2295 - wxWindow::GetUpdateRegion should now work.
2296
2297 Alpha 16, September 8th 1998
2298 ----------------------------
2299
2300 wxMSW:
2301
2302 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
2303   sample.
2304 - Guilhem's socket classes added, plus wxsocket sample.
2305 - A few more makefiles added.
2306 - GnuWin32/BC++ compatibility mods.
2307 - Further doc updates.
2308 - wxProp updates for correct working with wxGTK.
2309
2310 wxMotif:
2311
2312 - First start at Motif port.
2313 - Made makefiles for wxMotif source directory and minimal sample.
2314 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
2315   wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
2316   wxMenu, wxMenuItem, wxMenuBar
2317
2318 Alpha 15, August 31st 1998
2319 --------------------------
2320
2321 wxMSW:
2322
2323 - wxBitmap debugged.
2324 - wxDC::GetDepth added.
2325 - Contribution added whereby wxBitmap will be
2326   converted to DC depth if they don't match.
2327 - wxConfig API improved, documentation updated.
2328 - Printing classes name conventions cleaned up.
2329 - wxUpdateUIEvent now derives from wxCommandEvent
2330   so event can travel up the window hierarchy.
2331
2332 Alpha 14, July 31st 1998
2333 ------------------------
2334
2335 wxMSW:
2336
2337 - Toolbar API has been simplified, and now
2338   wxFrame::GetClientArea returns the available client
2339   area when toolbar, status bar etc. have been accounted for.
2340   wxFrame::CreateToolBar added in line with CreateStatusBar.
2341 - Documentation updates, incl. for wxToolBar.
2342 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
2343 - Various additions from other folk, e.g. streams, wxConfig
2344   changes, wxNotebook.
2345 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
2346
2347 Alpha 13, July 8th 1998
2348 -----------------------
2349
2350 wxMSW:
2351
2352 - Implemented wxPoint as identical to POINT on Windows, and
2353   altered wxDC wxPoint functions to use wxPoint directly in
2354   Windows functions, for efficiency.
2355 - Cured wxASSERT bug in wxStatusBar95.
2356 - #ifdefed out some bits in oleutils.cpp for compilers that
2357   don't support it.
2358 - Added some operators to wxPoint, wxSize.
2359 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
2360
2361 Alpha 12, July 7th 1998
2362 -----------------------
2363
2364 wxMSW:
2365
2366 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
2367   have flat toolbars on Win98 or Win95 with IE >= 3 installed.
2368
2369 Alpha 11, July 3rd 1998
2370 -----------------------
2371
2372 wxMSW:
2373
2374 - Added thread.h, thread.cpp.
2375 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
2376   wxMenuBar.
2377 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
2378   SetTextColor to SetTextColour, and added or made public several
2379   wxMenuItem accessors.
2380 - Added two overloads to wxRegion::Contains. Added
2381   wxRegion::IsEmpty for a more consistent naming convention.
2382 - Added Vadim's wxDataObject and wxDropSource.
2383 - ENTER/LEAVE events now work.
2384 - Cured wxMemoryDC bug where the DC wasn't being deleted.
2385 - Cured wxGauge SetSize major bugginess.
2386 - Cured problem where if a GDI object was created on the stack,
2387   then went out of scope, then another object was selected into
2388   the DC, GDI objects would leak. This is because the assignment
2389   to e.g. wxDC::m_pen would delete the GDI object without it first
2390   being selected out of the DC. Cured by selecting the old DC object
2391   first, then doing the assignment.
2392 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
2393 - Various other bug fixes and additions.
2394
2395 Generic:
2396
2397 - Major work on Dialog Editor (still plenty to go).
2398 - Expanded documentation a bit more.
2399
2400 Alpha 10, May 7th 1998
2401 ----------------------
2402
2403 wxMSW:
2404
2405 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
2406   and wxIcon functions so that you can specify what size of
2407   icon should be loaded. Probably will remain a Windows-specific thing.
2408 - wxStatusBar95 now works for MDI frames.
2409 - Toolbars in MDI frames now behave normally. They still
2410   require application-supplied positioning code though.
2411 - Changed installation instructions, makefiles and batch files
2412   for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
2413   change to support Mingw32/EGCS. Bison now used by default.
2414
2415 Alpha 9, April 27th 1998
2416 ------------------------
2417
2418 wxMSW:
2419
2420 - Cured bug in wxStatusBar95 that caused a crash if multiple
2421   fields were used.
2422 - Added Gnu-Win32 b19/Mingw32 support by changing resource
2423   compilation and pragmas.
2424 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
2425   commands because VZ changed the id setting in wxMenu::MSWCommand.
2426
2427 Generic:
2428
2429 - Corrected some bugs, such as the wxModule compilation problem.
2430 - Added Gnu-Win32 b19/Mingw32 support by changing resource
2431   compilation and pragmas.
2432 - Changed SIZEOF to WXSIZEOF.
2433
2434 Alpha 8, April 17th 1998
2435 ------------------------
2436
2437 wxMSW:
2438
2439 - Added IsNull to wxGDIObject to check if the ref data is present or not.
2440 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
2441   some reason :-(
2442 - Added wxJoystick class and event handling, and simple demo.
2443 - Added simple wxWave class. Needs Stop() function.
2444 - Added wxModule (module.h/module.cpp) to allow definition
2445   of modules to be initialized and cleaned up on wxWidgets
2446   startup/exit.
2447 - Start of Mingw32 compatibility (see minimal and dialogs samples
2448   makefile.m95 files, and install.txt).
2449 - Note: Windows printing has stopped working... will investigate.
2450 VADIM'S CHANGES:
2451 - Updated wxString: bug fixes, added wxArrayString, some
2452   compatibility functions.
2453 - Updated log.h/cpp, added wxApp::CreateLogTarget.
2454 - file.h: new wxTempFile class.
2455 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
2456 - statbr95: wxStatusBar95 control.
2457 - registry.h/cpp: wxRegKey class for Win95 registry.
2458 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
2459 - wxConfig and wxFileConfig classes.
2460
2461 Generic:
2462
2463 - Added src/other/png, src/other/zlib directories.
2464 - Added samples/png.
2465 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
2466   Porters, please check particularly your wxTreeCtrl and wxListCtrl
2467   header files.
2468 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
2469
2470 Alpha 7, March 30th 1998
2471 ------------------------
2472
2473 wxMSW:
2474
2475 - Added tab classes, tab sample.
2476 - Now can return FALSE from OnInit and windows will be
2477   cleaned up properly before exit.
2478 - Improved border handling so panels don't get borders
2479   automatically.
2480 - Debugged MDI activation from Window menu.
2481 - Changes to memory debug handling, including checking for
2482   memory leaks on application exit - but see issues.txt for
2483   unresolved issues.
2484 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
2485   to allow maintenance of an icon in the Windows 95 taskbar
2486   tray area.
2487 - Got MFC sample working (MFC and wxWidgets in the same
2488   application), partly by tweaking ntwxwin.mak settings.
2489 - Got DLL compilation working again (VC++).
2490 - Changed wxProp/Dialog Editor filenames.
2491
2492 Generic:
2493
2494 - Added tab classes, tab sample.
2495 - Revised memory.cpp, memory.h slightly; memory.h now #defines
2496   new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
2497   now checks for leaks on exit. Added memcheck sample.
2498   See src/msw/issues.txt for more details.
2499 - resource.h, resource.cpp changed to make wxDefaultResourceTable
2500   a pointer. Now initialize resource system with
2501   wxInitializeResourceSystem and wxCleanUpResourceSystem, to
2502   allow better control of memory.
2503 - wxString now derives from wxObject, to enable memory leak
2504   checking.
2505 - Added some #include fixes in various files, plus changed
2506   float to long in wxToolBar files.
2507
2508 Alpha 6, March 10th 1998
2509 ------------------------
2510
2511 wxMSW:
2512
2513 - Found stack error bug - stopped unwanted OnIdle recursion.
2514 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
2515 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
2516   check if the number of top-level windows is zero before
2517   exiting. Also, wxApp::GetTopWindow will return either
2518   m_topWindow or the first member of wxTopLevelWindows, so you
2519   don't have to call wxApp::SetTopWindow.
2520 - Added dynarray.h/dynarray.cpp (from Vadim).
2521 - Added first cut at OLE drag and drop (from Vadim). dnd sample
2522   added. Drop target only at this stage. See src/msw/ole/*.cpp,
2523   wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
2524   Doesn't work with GnuWin32 - no appropriate headers e.g. for
2525   IUnknown.
2526   Doesn't work with BC++ either - crashes on program startup.
2527 - Added Vadim's owner-draw modifications - will probably remain
2528   Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
2529 - Added wxLB_OWNERDRAW for owner-draw listboxes.
2530 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
2531   Doesn't entirely work for WIN16.
2532 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
2533   can also be used as an argument to wxMenu::Append, not just for
2534   internal implementation.
2535 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
2536   in makeg95.env, together with mingw32.bat). However, resource
2537   binding is not working yet so most apps with dialogs crash.
2538
2539 Generic:
2540
2541 - Added Vadim's dynarray.h, dynarray.cpp.
2542 - Added Vadim's menuitem.cpp.
2543 - Added Windows-specific wxCheckListBox,
2544   owner-draw wxListBox, and drag-and-drop
2545   (see docs/msw/changes.txt).
2546
2547 Alpha 5, 14th February 1998
2548 --------------------------
2549
2550 wxMSW:
2551
2552 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
2553   DISTRIBUTIONS. This change log will therefore now refer to
2554   the Windows-specific code only. See docs/changes.txt for generic
2555   changes.
2556 - Removed Windows-specific reference counting system (GDI
2557   resources were cleaned up in idle time) - minimal
2558   advantages now we have a wxWin reference counting system.
2559 - Added missing WXDLLEXPORT keywords so DLL compilation works
2560   again.
2561 - Removed most warnings for GnuWin32 compilation.
2562 - Added wxRegion/wxRegionIterator, but haven't yet used it in
2563   e.g. wxDC.
2564
2565 Generic:
2566
2567 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
2568   DISTRIBUTIONS. This change log will therefore now refer to
2569   the generic code only. See docs/msw/changes.txt for Windows-specific
2570   changes.
2571 - Readmes, change logs and installation files now go in
2572   platform-specific directories under docs, e.g. docs/msw,
2573   docs/gtk.
2574 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
2575   created dynamically, not as a global object.
2576 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
2577 - Changed names of some include/wx/generic headers to be
2578   consistent and to conform to gcc pragma conventions. Also
2579   changed choicesg.cpp to choicdgg.cpp.
2580 - Added gcc pragmas.
2581 - Added gtk inclusion in include/wx headers.
2582 - Added consistent file headings to source and headers.
2583 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
2584   added a few references to wxTransString.
2585 - Added operator to wxTransString that converts automatically
2586   to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
2587 - samples/internat now works (minimally).
2588 - Added wxMouseEvent::GetPosition and
2589   wxMouseEvent::GetLogicalPosition, both returning wxPoints.
2590 - Made wxSize and wxRect contain longs not ints.
2591 - Cured some memory leaks (thanks Vadim).
2592 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
2593   will only keep processing OnIdle if it returns TRUE from
2594   MoreRequested.
2595
2596 Alpha 4, 31st January 1998
2597 --------------------------
2598
2599 All:
2600
2601 - Changed wxDC functions to take longs instead of floats. GetSize now takes
2602   integer pointers, plus a version that returns a wxSize.
2603 - const keyword added to various wxDC functions.
2604 - Under Windows, wxDC no longer has any knowledge of whether
2605   an associated window is scrolled or not. Instead, the device
2606   origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
2607 - wxScrolledWindow applications can optionally override the virtual OnDraw
2608   function instead of using the OnPaint event handler. The wxDC passed to
2609   OnDraw will be translated by PrepareDC to reflect scrolling.
2610   When drawing outside of OnDraw, must call PrepareDC explicitly.
2611 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
2612   scrolling toolbars.
2613 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
2614   to help printing with multiple pages.
2615 - IPC classes given base classes (wxConnectionBase etc.) which
2616   define the API used by different implementations. DDE
2617   implementation updated to use these base classes.
2618 - wxHelpInstance now separated into wxHelpControllerBase (base
2619   for all implementations), wxWinHelpController (uses standard
2620   WinHelp), wxXLPHelpController (talks to wxHelp by DDE or
2621   TCP/IP). There will be others eventually, such as
2622   wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
2623 - Added Vadim Zeitlin's wxString class plus
2624   internationalization code (gettext simulation, wxLocale, etc.).
2625   New files from Vadim:
2626   include\wx\string.h
2627   include\wx\debug.h
2628   include\wx\file.h
2629   include\wx\log.h
2630   include\wx\intl.h
2631   src\common\string.cpp
2632   src\common\log.cpp
2633   src\common\intl.cpp
2634   src\common\file.cpp
2635   No longer use GNU wxString files.
2636 - Split off file-related functions into include\wx\filefn.h and
2637   src\common\filefn.cpp.
2638 - Borland C++ support (WIN32) for main library and
2639   samples, using makefile.b32 files.
2640 - Preparation done for allowing BC++ to compile wxWin as a DLL,
2641   including changes to defs.h.
2642 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
2643   introduced.
2644 - Added wxShowEvent (generated when window is being shown or
2645   hidden).
2646 - Got minimal, docview, mdi samples working for 16-bit VC++ and
2647   cured 16-bit problem with wxTextCtrl (removed global memory
2648   trick).
2649 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
2650
2651 Alpha 3, September 1997
2652 -----------------------
2653
2654 All:
2655
2656 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
2657 - Instigated new file hierarchy, split files and classes up more logically.
2658 - PrologIO and some other utils now put into core library.
2659 - Revamped print/preview classes, added wxPageSetupDialog.
2660 - Started documentation.
2661
2662 Alpha 2, 30th April 1997
2663 ------------------------
2664
2665 All:
2666
2667 - EVT_... macros now have at least one argument, for conformance
2668   with MetroWerks compiler.
2669 - Added ids to .wxr file format.
2670 - Got Dialog Editor compiled and running again but need
2671   to extend functionality to be in line with new controls.
2672   Added dialoged\test app to allow dynamic loading of .wxr files
2673   for testing purposes.
2674 - Rewrote wxBitmap to allow installable file type
2675   handlers.
2676 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
2677 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
2678   fully).
2679 - Added back wxRadioBox.
2680 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
2681   a separate file.
2682
2683 Alpha 1, 5th April 1997
2684 -----------------------
2685
2686 Generic:
2687
2688 At this point, the following has been achieved:
2689
2690 - A lot, but not all, of the code has been revamped for better
2691   naming conventions, protection of data members, and use of
2692   wxString instead of char *.
2693 - Obsolete functionality deleted (e.g. default wxPanel layout,
2694   old system event system) and code size reduced.
2695 - Class hierarchy changed (see design doc) - base classes such
2696   as wxbWindow now removed.
2697 - No longer includes windows.h in wxWin headers, by using stand-in
2698   Windows types where needed e.g. WXHWND.
2699 - PrologIO revised.
2700 - wxScrolledWindow, wxStatusBar and new MDI classes added.
2701   MDI is now achieved using separate classes, not window styles.
2702 - wxSystemSettings added, and made use of to reflect standard
2703   Windows settings.
2704 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
2705   settings mucho rationalised.
2706 - All windows are now subclassed with the same window proc to make
2707   event handling far more consistent. Old internal wxWnd and derived
2708   classes removed.
2709 - API for controls revised, in particular addition of
2710   wxValidator parameters and removal of labels for some controls.
2711 - 1 validator written: see examples/validate.
2712 - Event table system introduced (see most samples and
2713   wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
2714   made more flexible, with Push/PopEventHandler allowing a chain
2715   of event handlers.
2716 - wxRadioBox removed - will be added back soon.
2717 - Toolbar class hierarchy revised:
2718   wxToolBarBase
2719   wxToolBarSimple (= old wxToolBar)
2720   wxToolBar95 (= old wxButtonBar under Win95)
2721   wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
2722 - Constraint system debugged somewhat (sizers now work properly).
2723 - wxFileDialog, wxDirDialog added; other common dialogs now
2724   have class equivalents. Generic colour and font dialogs
2725   rewritten to not need obsolete panel layout.
2726 - .wxr resource system partially reinstated, though needs
2727   an integer ID for controls. Hopefully the resource system
2728   will be replaced by something better and more efficient
2729   in the future.
2730 - Device contexts no longer stored with window and accessed
2731   with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
2732   variables instead.
2733 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
2734   determines whether labels are shown. Other Win95-specific flags
2735   introduced, e.g. for showing ticks.
2736 - Styles introduced for dealing with 3D effects per window, for
2737   any window: all Win95 3D effects supported, plus transparent windows.
2738 - Major change to allow 3D effect support without CTL3D, under
2739   Win95.
2740 - Bitmap versions of button and checkbox separated out into new
2741   classes, but unimplemented as yet because I intend to remove
2742   the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
2743 - utils/wxprop classes working (except maybe wxPropertyFormView)
2744   in preparation for use in Dialog Editor.
2745 - GNU-WIN32 compilation verified (a month or so ago).