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