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