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