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