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