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