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