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