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