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