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