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