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