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