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