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