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