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