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