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