make wxKeyEvent and wxMouseEvent derive from the same wxKeyboardState object (indirec...
[wxWidgets.git] / docs / changes.txt
1 -------------------------------------------------------------------------------
2                              wxWidgets Change Log
3 -------------------------------------------------------------------------------
4
5 INCOMPATIBLE CHANGES SINCE 2.8.x
6 ================================
7
8
9         Notice that these changes are described in more details in
10         the "Changes Since wxWidgets 2.8" section of the manual,
11         please read it if the explanation here is too cryptic.
12
13
14 Unicode-related changes
15 -----------------------
16
17 The biggest changes in wxWidgets 3.0 are the changes due to the merge of the
18 old ANSI and Unicode build modes in a single build. See the Unicode overview
19 in the manual for more details but here are the most important incompatible
20 changes:
21
22 - Many wxWidgets functions taking "const wxChar *" have been changed to take
23   either "const wxString&" (so that they accept both Unicode and ANSI strings;
24   the argument can't be NULL anymore in this case) or "const char *" (if the
25   strings are always ANSI; may still be NULL). This change is normally
26   backwards compatible except:
27
28   a) Virtual functions: derived classes versions must be modified to take
29      "const wxString&" as well to make sure that they continue to override the
30      base class version.
31
32   b) Passing NULL as argument: as NULL can't be unambiguously converted to
33      wxString, in many cases code using it won't compile any more and NULL
34      should be replaced with an empty string.
35
36
37 - Some structure fields which used to be of type "const wxChar *" (such as
38   wxCmdLineEntryDesc::shortName, longName and description fields) are now of
39   type "const char *", you need to remove wxT() or _T() around the values used
40   to initialize them (which should normally always be ASCII).
41
42 - wxIPC classes didn't work correctly in Unicode build before, this was fixed
43   but at a price of breaking backwards compatibility: many methods which used
44   to work with "wxChar *" before use "void *" now (some int parameters were
45   also changed to size_t). While wxIPC_TEXT can still be used to transfer 7
46   bit text, the new wxIPC_UTF8TEXT format is used for transferring wxStrings.
47   Also notice that connection classes should change the parameter types of
48   their overridden OnExecute() or override a more convenient OnExec() instead.
49
50
51 wxODBC and contrib libraries removal
52 ------------------------------------
53
54 wxODBC library was unmaintained since several years and we couldn't continue
55 supporting it any longer so it was removed. Please use any of the other open
56 source ODBC libraries in the future projects.
57
58 Also the "applet", "deprecated", "fl", "mmedia" and "plot" contrib libraries
59 were removed as they were unmaintained and broken since several years.
60 The "gizmos", "ogl", "net" and "foldbar" contribs have been moved to
61 wxCode (see http://wxcode.sourceforge.net/complist.php); they are now
62 open for futher development by volunteers.
63
64 The "stc" and "svg" contribs instead have been moved respectively into a new
65 "official" library stc and in the core lib.
66
67
68 Changes in behaviour not resulting in compilation errors, please read this!
69 ---------------------------------------------------------------------------
70
71 - Default location of wxFileConfig files has changed under Windows, you will
72   need to update your code if you access these files directly.
73
74 - wxWindow::IsEnabled() now returns false if a window parent (and not
75   necessarily the window itself) is disabled, new function IsThisEnabled()
76   with the same behaviour as old IsEnabled() was added.
77
78 - Generating wxNavigationKeyEvent events doesn't work any more under wxGTK (and
79   other platforms in the future), use wxWindow::Navigate() or NavigateIn()
80   instead.
81
82 - Sizers distribute only the extra space between the stretchable items
83   according to their proportions and not all available space. We believe the
84   new behaviour corresponds better to user expectations but if you did rely
85   on the old behaviour you will have to update your code to set the minimal
86   sizes of the sizer items to be in the same proportion as the items
87   proportions to return to the old behaviour.
88
89 - wxWindow::Freeze/Thaw() are not virtual any more, if you overrode them in
90   your code you need to override DoFreeze/Thaw() instead now.
91
92 - wxCalendarCtrl has native implementation in wxGTK, but it has less features
93   than the generic one. The native implementation is used by default, but you
94   can still use wxGenericCalendarCtrl instead of wxCalendarCtrl in your code if
95   you need the extra features.
96
97 - wxDocument::FileHistoryLoad() and wxFileHistory::Load() now take const
98   reference to wxConfigBase argument and not just a reference, please update
99   your code if you overrode these functions and change the functions in the
100   derived classes to use const reference as well.
101
102 - Under MSW wxExecute() arguments are now always properly quoted, as under
103   Unix, and so shouldn't contain quotes unless they are part of the argument.
104
105 - wxDocument::OnNewDocument() doesn't call OnCloseDocument() any more.
106
107 Changes in behaviour which may result in compilation errors
108 -----------------------------------------------------------
109
110 - WXWIN_COMPATIBILITY_2_4 doesn't exist any more, please update your code if
111   you still relied on features deprecated since version 2.4
112
113 - wxDC classes hierarchy has changed, if you derived any classes from wxDC you
114   need to review them as wxDC doesn't have any virtual methods any longer and
115   uses delegation instead of inheritance to present different behaviours.
116
117 - Return type of wxString::operator[] and wxString::iterator::operator* is no
118   longer wxChar (i.e. char or wchar_t), but wxUniChar. This is not a problem
119   in vast majority of cases because of conversion operators, but it can break
120   code that depends on the result being wxChar.
121
122 - The value returned by wxString::c_str() cannot be casted to non-const char*
123   or wchar_t* anymore. The solution is to use newly added wxString methods
124   char_str() (which returns a buffer convertible to char*) or wchar_str()
125   (which returns a buffer convertible to wchar_t*). These methods are
126   available in wxWidgets 2.8 series beginning with 2.8.4 as well.
127
128 - The value returned by wxString::operator[] or wxString::iterator cannot be
129   used in switch statements anymore, because it's a class instance. Code like
130   this won't compile:
131      switch (str[i]) { ... }
132   and has to be replaced with this:
133      switch (str[i].GetValue()) { ... }
134
135 - Return type of wxString::c_str() is now a helper wxCStrData struct and not
136   const wxChar*. wxCStrData is implicitly convertible to both "const char *"
137   and "const wchar_t *", so this only presents a problem if the compiler cannot
138   apply the conversion. This can happen in 2 cases:
139
140   + There is an ambiguity because the function being called is overloaded to
141     take both "const char *" and "const wchar_t *" as the compiler can't choose
142     between them. In this case you may use s.wx_str() to call the function
143     matching the current build (Unicode or not) or s.mb_str() or s.wc_str() to
144     explicitly select narrow or wide version of it.
145
146     Notice that such functions are normally not very common but unfortunately
147     Microsoft decided to extend their STL with standard-incompatible overloads
148     of some functions accepting "const wchar_t *" so you may need to replace
149     some occurrences of c_str() with wx_str() when using MSVC 8 or later.
150
151   + Some compilers, notably Borland C++ and DigitalMars, don't correctly
152     convert operator?: operands to the same type and fail with compilation
153     error instead. This can be worked around by explicitly casting to const
154     wxChar*: wxLogError(_("error: %s"), !err.empty() ? (const wxChar*)err.c_str() : "")
155
156 - wxCtime() and wxAsctime() return char*; this is incompatible with Unicode
157   build in wxWidgets 2.8 that returned wchar_t*.
158
159 - DigitalMars compiler has a bug that prevents it from using
160   wxUniChar::operator bool in conditions and it erroneously reports type
161   conversion ambiguity in expressions such as this:
162      for ( wxString::const_iterator p = s.begin(); *p; ++p )
163   This can be worked around by explicitly casting to bool:
164      for ( wxString::const_iterator p = s.begin(); (bool)*p; ++p )
165
166 - Virtual wxHtmlParser::AddText() takes wxString, not wxChar*, argument now.
167
168 - Functions that took wxChar* arguments that could by NULL in wxWidgets 2.8
169   are deprecated and passing NULL to them won't compile anymore, wxEmptyString
170   must be used instead.
171
172 - wxTmemxxx() functions take either wxChar* or char*, not void*: use memxxx()
173   with void pointers.
174
175 - Removed insecure wxGets() and wxTmpnam() functions.
176
177 - Removed global GetLine() function from wx/protocol/protocol.h, use
178   wxProtocol::ReadLine() instead.
179
180 - wxVariant no longer derives from wxObject. wxVariantData also no longer
181   derives from wxObject; instead of using wxDynamicCast with wxVariantData you
182   can use the macro wxDynamicCastVariantData with the same arguments.
183
184 - wxWindow::Next/PrevControlId() don't exist any more as they can't be
185   implemented correctly any longer because automatically generated ids are not
186   necessarily allocated consecutively any more. Use GetChildren() to find the
187   next/previous control sibling instead.
188
189 - Calling wxConfig::Write() with an enum value will fail to compile because
190   wxConfig now tries to convert all unknown types to wxString automatically.
191   The simplest solution is to cast the enum value to int.
192
193 - Several wxImage methods which previously had "long bitmaptype" parameters
194   have been changed to accept "wxBitmapType bitmaptype", please use enum
195   wxBitmapType in your code.
196
197 Deprecated methods and their replacements
198 -----------------------------------------
199
200 - wxCreateGreyedImage() deprecated, use wxImage::ConvertToGreyscale() instead.
201 - wxString::GetWriteBuf() and UngetWriteBuf() deprecated, using wxStringBuffer
202   or wxStringBufferLength instead.
203 - wxDIRCTRL_SHOW_FILTERS style is deprecated, filters are alwsys shown if
204   specified so this style should simply be removed
205 - wxDocManager::MakeDefaultName() replaced by MakeNewDocumentName() and
206   wxDocument::GetPrintableName() with GetUserReadableName() which are simpler
207   to use
208 - wxXmlProperty class was renamed to wxXmlAttribute in order to use standard
209   terminology. Corresponding wxXmlNode methods were renamed to use
210   "Attribute" instead of "Property" or "Prop" in their names.
211 - wxConnection::OnExecute() is not formally deprecated yet but new code should
212   use simpler OnExec() version which is called with wxString argument
213 - wxMenuItem::GetLabel has been deprecated in favour of wxMenuItem::GetItemLabelText
214 - wxMenuItem::GetText has been deprecated in favour of wxMenuItem::GetItemLabel
215 - wxMenuItem::GetLabelFromText has been deprecated in favour of wxMenuItem::GetLabelText
216 - wxMenuItem::SetText has been deprecated in favour of wxMenuItem::SetItemLabel
217 - wxBrush's, wxPen's SetStyle() and GetStyle() as well as the wxBrush/wxPen ctor now take
218   respectively a wxBrushStyle and a wxPenStyle value instead of a plain "int style";
219   use the new wxBrush/wxPen style names (wxBRUSHSTYLE_XXX and wxPENSTYLE_XXX) instead
220   of the old deprecated wxXXX styles (which however are still available).
221 - EVT_CALENDAR_DAY event has been deprecated, use EVT_CALENDAR_SEL_CHANGED.
222 - EVT_CALENDAR_MONTH and EVT_CALENDAR_YEAR events are deprecated,
223   use EVT_CALENDAR_PAGE_CHANGED which replaces both of them.
224 - wxCalendarCtrl::EnableYearChange() and wxCAL_NO_YEAR_CHANGE are deprecated.
225   There is no replacement for this functionality, it is being dropped as it is
226   not available in native wxCalendarCtrl implementations.
227 - wxDC::SetClippingRegion(const wxRegion&) overload is deprecated as it used
228   different convention from the other SetClippingRegion() overloads: wxRegion
229   passed to it was interpreted in physical, not logical, coordinates. Replace
230   it with SetDeviceClippingRegion() if this was the correct thing to do in your
231   code.
232 - wxTE_AUTO_SCROLL style is deprecated as it's always on by default anyhow.
233
234
235 Major new features in this release
236 ----------------------------------
237
238 - wxWidgets is now always built with Unicode support but provides the same
239   simple (i.e. "char *"-tolerant) API as was available in ANSI build in the
240   past.
241
242 - wxWidgets may now use either wchar_t (UTF-16/32) or UTF-8 internally,
243   depending on what is optimal for the target platform.
244
245 - New propgrid library containing wxPropertyGrid and related classes, many
246   enhancements to wxDataViewCtrl.
247
248 - Events loops, timers and sockets can now be used in wxBase, without GUI.
249
250
251 2.9.0
252 -----
253
254 All:
255
256 - Added (experimental) IPv6 support to wxSocket (Arcen).
257 - Cleaned up wxURI and made it Unicode-friendly.
258 - Add support for wxExecute(wxEXEC_ASYNC) in wxBase (Lukasz Michalski)
259 - Added wxXLocale class and xlocale-like functions using it.
260 - Allow loading message catalogs from wxFileSystem (Axel Gembe)
261 - Added wxMessageQueue class for inter-thread communications
262 - Use UTF-8 for Unicode data in wxIPC classes (Anders Larsen)
263 - Added support for user-defined types to wxConfig (Marcin Wojdyr).
264 - Added numeric options support to wxCmdLineParser (crjjrc)
265 - Added wxJoin() and wxSplit() functions (Francesco Montorsi).
266 - Added wxDateTime::FormatISOCombined() and ParseISODate/Time/Combined()
267 - Added wxMutex::LockTimeout() (Aleksandr Napylov).
268 - Added wxMemoryInputStream(wxInputStream&) ctor (Stas Sergeev).
269 - Implemented wxMemoryInputStream::CanRead().
270 - Added wxEXEC_BLOCK flag (Hank Schultz).
271 - Add support for wxStream-derived classes to wxRTTI (Stas Sergeev).
272 - Added wxStreamBuffer::Truncate() (Stas Sergeev).
273 - Allow using  wxEventLoop in console applications (Lukasz Michalski).
274 - Added functions for Base64 en/decoding (Charles Reimers).
275 - Added support for binary data to wxConfig (Charles Reimers).
276 - Added functions for atomically inc/decrementing integers (Armel Asselin).
277 - wxLogInterposer has been added to replace wxLogPassThrough and new
278   wxLogInterposerTemp was added.
279 - Added support for broadcasting to UDP sockets (Andrew Vincent).
280 - Documentation now includes the wx library in which each class is defined.
281 - wxrc --gettext now generates references to source .xrc files (Heikki
282   Linnakangas).
283 - wxVariant::Unshare allows exclusive allocation of data that must be shared,
284   if the wxVariantData::Clone function is implemented.
285 - Added wxWeakRef<T>, wxScopedPtr<T>, wxSharedPtr<T> class templates
286 - Added wxVector<T> class templates
287 - Added wxON_BLOCK_EXIT_SET() and wxON_BLOCK_EXIT_NULL() to wx/scopeguard.h.
288 - Added wxEvtHandler::QueueEvent() replacing AddPendingEvent() and
289   wxQueueEvent() replacing wxPostEvent().
290 - wxString now uses std::[w]string internally by default, meaning that it is
291   now thread-safe if the standard library provided with your compiler is.
292 - Added wxCmdLineParser::AddUsageText() (Marcin 'Malcom' Malich).
293 - Fix reading/writing UTF-7-encoded text streams.
294 - Corrected bug in wxTimeSpan::IsShorterThan() for equal time spans.
295 - Use std::unordered_{map,set} for wxHashMap/Set if available (Jan van Dijk).
296 - Added wxString::Capitalize() and MakeCapitalized().
297 - Added wxArray::swap().
298 - Added wxSHUTDOWN_LOGOFF and wxSHUTDOWN_FORCE wxShutdown() flags (troelsk).
299
300 All (Unix):
301
302 - Added wx-config --optional-libs command line option (John Labenski).
303
304 All (GUI):
305
306 - Added wxDataViewCtrl class and helper classes.
307 - Integrated wxPropertyGrid in wxWidgets itself (Jaakko Salli).
308 - Provide native implementation of wxCalendarCtrl under wxMSW and wxGTK.
309 - Added {wxTextCtrl,wxComboBox}::AutoComplete() and AutoCompleteFileNames().
310 - Added wxH[V]ScrolledWindow (Brad Anderson, Bryan Petty).
311 - Added wxNotificationMessage class for non-intrusive notifications.
312 - Added wxWindow::Show/HideWithEffect().
313 - Added wxWrapSizer (Arne Steinarson).
314 - Added wxSpinCtrlDouble (John Labenski).
315 - Support custom labels in wxMessageDialog (Gareth Simpson for wxMac version).
316 - Also added wxCANCEL_DEFAULT to wxMessageDialog.
317 - Allow copying text in the log dialogs.
318 - Added multisample (anti-aliasing) support to wxGLCanvas (Olivier Playez).
319 - Initialize wx{Client,Paint,Window}DC with fonts/colours of its window.
320 - Added wxNativeContainerWindow to allow embedding wx into native windows.
321 - Added custom controls support to wxFileDialog (Diaa Sami and Marcin Wojdyr).
322 - Added wxDC::StretchBlit() for wxMac and wxMSW (Vince Harron).
323 - Added support for drop down toolbar buttons (Tim Kosse).
324 - Added support for labels for toolbar controls (Vince Harron).
325 - Added wxMessageDialog::SetMessage() and SetExtendedMessage().
326 - Added wxListCtrl::Set/GetColumnsOrder() (Yury Voronov).
327 - Made wxLogWindow thread-safe (Barbara Maren Winkler).
328 - Added wxWindow::AlwaysShowScrollbars() (Julian Scheid).
329 - Added wxMouseEvent::GetClickCount() (Julian Scheid).
330 - Added wxBG_STYLE_TRANSPARENT background style (Julian Scheid).
331 - Added XRCSIZERITEM() macro for obtaining sizers from XRC (Brian Vanderburg II).
332 - New and improved wxFileCtrl (Diaa Sami and Marcin Wojdyr).
333 - Added wxEventBlocker class (Francesco Montorsi).
334 - Added wxFile/DirPickerCtrl::Get/SetFile/DirName() (Francesco Montorsi).
335 - Added wxSizerFlags::Top() and Bottom().
336 - Slovak translation added.
337 - Fixed tab-related drawing and hit-testing bugs in wxRichTextCtrl.
338 - Implemented background colour in wxRichTextCtrl.
339 - Fixed crashes in helpview when opening a file.
340 - Set locale to the default in all ports, not just wxGTK.
341 - Added wxJoystick::GetButtonState/Position() (Frank C Szczerba).
342 - Added wxGridUpdateLocker helper class (Evgeniy Tarassov).
343 - Support wxGRID_AUTOSIZE in wxGrid::SetRow/ColLabelSize() (Evgeniy Tarassov).
344 - Added wxWindow::NavigateIn() in addition to existing Navigate().
345 - Add support for <data> tags to wxrc.
346 - Support wxAPPLY and wxCLOSE in CreateStdDialogButtonSizer() (Marcin Wojdyr).
347 - Show standard options in wxCmdLineParser usage message (Francesco Montorsi).
348 - Added wxRect::operator+ (union) and * (intersection) (bdonner).
349 - Added support for two auxiliary mouse buttons to wxMouseEvent (Chris Weiland).
350 - Added wxToolTip::SetAutoPop() and SetReshow() (Jan Knepper).
351 - Added wxTaskBarIcon::Destroy().
352 - Added XRC handler for wxSearchCtrl (Sander Berents).
353 - Read image resolution from TIFF, JPEG and BMP images (Maycon Aparecido Gasoto).
354 - Add support for reading alpha data from TIFF images.
355 - Added wxSYS_DCLICK_TIME system metric constant (Arne Steinarson).
356 - Added wxApp::Get/SetAppDisplayName() (Brian A. Vanderburg II).
357 - Added wxWindow::GetPopupMenuSelectionFromUser() (Arne Steinarson).
358 - Implemented wxTreeCtrl::GetPrevVisible() in the generic version and made the
359   behaviour of GetNextSibling() consistent between wxMSW and generic versions.
360 - Merged wxRichTextAttr and wxTextAttrEx into wxTextAttr, and added a font table
361   to wxRichTextBuffer to reduce wxFont consumption and increase performance.
362 - Optimize wxGenericTreeCtrl::Collapse/ExpandAllChildren()
363   (Szczepan Holyszewski).
364 - Added <scrollrate> parameter to wxScrolledWindow XRC handler.
365 - Added support for automatic dialog scrolling, via the new
366   wxDialogLayoutAdapter class and various new wxDialog functions. See the
367   topic "Automatic Scrolling Dialogs" in the manual for further details.
368 - Added support for resizing wxWizard bitmaps to the current page height,
369   via SetBitmapPlacement, SetBitmapBackgroundColour and SetMinimumBitmapWidth.
370   Also made it easier to derive from wxWizard and override behaviour.
371 - Made wxSizer::Fit() set the client size of the target window
372 - Add support for wxDatePickerCtrl in wxGenericValidator (Herry Ayen Yang)
373 - Added wxWindow::HasFocus().
374 - Added wxGLCanvas::IsDisplaySupported().
375 - Added wxApp::SetNativeTheme() (Stefan H.).
376 - Made wxSpinCtrl::Reparent() in MSW and generic versions (Angelo Mottola).
377 - Freeze() and Thaw() now recursively freeze/thaw the children too.
378 - Generalized wxScrolledWindow into wxScrolled<T> template that can derive
379   from any window class, not just wxPanel.
380 - Allow having menu separators with ids != wxID_SEPARATOR (Jeff Tupper)
381 - Fix appending items to sorted wxComboCtrl after creation (Jaakko Salli)
382 - Don't blit area larger than necessary in wxBufferedDC::UnMask (Liang Jian)
383 - Fixed wxPixelData<wxImage> compilation (Leonardo Fernandes).
384 - Added wxImage::GetType() (troelsk).
385 - Added wxGenericStaticBitmap suitable for display of large bitmaps.
386 - Support wxListCtrl::GetViewRect() in report view too.
387 - Implement wxListCtrl::GetSubItemRect() in generic version (David Barnard).
388 - Added wxVListBox::GetItemRect() (Javier Urien).
389 - Show busy cursor in wxLaunchDefaultBrowser and add wxBROWSER_NOBUSYCURSOR.
390 - Added wxFlexGridSizer::Is{Row,Col}Growable() (Marcin Wojdyr).
391 - Added "enabled" and "hidden" attributes to radio box items in XRC.
392 - wxWindow::IsBeingDeleted() now returns true not only if the window itself is
393   marked for destruction but also if any of its parent windows are.
394 - Improved drawing of the hint during column move in wxGrid.
395 - Get/HasModifiers() of wxKeyEvent are now also available in wxMouseEvent.
396
397 wxGTK:
398
399 - Support for markup and ellipsization in wxStaticText (Francesco Montorsi).
400 - Native implementation for wxHyperlinkCtrl (Francesco Montorsi).
401 - Native keyboard navigation implementation.
402 - Added wxCB_SORT support to wxComboBox (Evgeniy Tarassov).
403 - Don't overwrite primary selection with clipboard and vice versa.
404 - Implemented support for underlined fonts in wxStaticText.
405 - wxTopLevelWindow::SetSizeHints size increments now work.
406 - wxTopLevelWindow::GetSize() returns the size including the WM decorations.
407 - wxTopLevelWindow::GetClientSize() returns 0x0 when the window is minimized.
408 - Added support for colour cursors (Pascal Monasse).
409 - Pass current control text to EVT_TEXT handler for wxSpinCtrl (John Ratliff).
410 - Added gtk.tlw.can-set-transparency system option.
411 - Added support for GTK+ print backend
412 - Fix changing font/colour of label in buttons with images (Marcin Wojdyr).
413 - Fix wxDC::Blit() support for user scale and source offset (Marcin Wojdyr).
414
415 wxMac:
416
417 - Better IconRef support (Alan Shouls).
418 - Fix duplicate (empty) help menu in non-English programs (Andreas Jacobs).
419 - Allow accelerators to be used with buttons too (Ryan Wilcox).
420 - Support resource forks in wxCopyFile() (Hank Schultz).
421 - Implement wxLocale::GetInfo() using CFLocale.
422 - Native wxCollapsiblePane implementation.
423
424 wxMSW:
425
426 - Fixed infinite loop in wxThread::Wait() in console applications.
427 - Return the restored window size from GetSize() when window is minimized.
428 - wxCheckListBox now looks more native, especially under XP (Marcin Malich).
429 - Allow tooltips longer than 64 (up to 128) characters in wxTaskBarIcon
430 - Fix centering wxFileDialog and allow positioning it.
431 - Allow centering wxMessageDialog on its parent window (troelsk).
432 - Use vertical scrollbar in wxMessageDialog if it's too big to fit on screen.
433 - Show resize gripper on resizeable dialogs (Kolya Kosenko).
434 - Implement support for display enumeration under WinCE (Vince Harron).
435 - Use different Win32 class names in different wx instances (Thomas Hauk).
436 - Support multiline labels for wxCheckBox and wxToggleButton.
437 - Print preview is now rendered in the resolution used by printer and
438   accurately represents what will be printed. This fixes wxHtmlEasyPrinting
439   preview inaccuracies on Windows; on other platforms, native preview
440   should be used.
441
442 wxX11:
443
444 - Added mouse wheel support (David Hart).
445 - Make Enter key activate the default button (David Hart).
446
447 wxDFB:
448
449 - Implement wxBitmap ctor from XBM data.
450
451
452 2.8.8
453 -----
454
455 All:
456
457 - Fixed bug with parsing some dates in wxDateTime (Bob Pesner).
458 - Fixed bug with parsing negative time zones in wxDateTime::ParseRfc822Date().
459 - Initialize current line in wxTextBuffer ctor (Suzuki Masahiro).
460 - Improved performance of XML parsing (Francesco Montorsi).
461 - Fix wxDateTime::ParseRfc822Date() to handle missing seconds (Joe Nader).
462
463 All (GUI):
464
465 - Added wxWindow::GetNextSibling() and GetPrevSibling().
466 - Support wxGRID_AUTOSIZE in wxGrid::SetRow/ColLabelSize() (Evgeniy Tarassov).
467 - Ensure that wxGrid::AutoSizeColumn/Row() never sets column/row size
468   smaller than the minimal size.
469 - Added <scrollrate> parameter to wxScrolledWindow XRC handler.
470 - wxRichTextCtrl performance has been improved considerably.
471 - Several wxRichTextCtrl style, paste and undo bugs fixed.
472 - Added wxRichTextCtrl superscript and subscript support (Knut Petter Lehre).
473 - wxNotebook RTTI corrected, so now wxDynamicCast(notebook, wxBookCtrlBase)
474   works.
475 - When focus is set to wxScrolledWindow child, scroll it into view.
476 - Improve wximage::ResampleBox() (Mihai Ciocarlie).
477 - Implemented ScrollList() in generic wxListCtrl (Tim Kosse).
478 - SaveAs in docview takes into account path now.
479 - Fixed wxXmlResource::GetText() to convert data to current locale's
480   charset in ANSI build.
481 - wxGrid now indicates focus by using different colour for selection
482   and hiding cell cursor when it doesn't have focus.
483 - Added alpha support to wxImage::Paste() (Steven Van Ingelgem)
484 - Use current date when opening popup in generic wxDatePickerCtrl.
485 - Remove associated help text from wxHelpProvider when a window is destroyed.
486 - Added wxSizerFlags::ReserveSpaceEvenIfHidden() and
487   wxRESERVE_SPACE_EVEN_IF_HIDDEN sizer flag.
488 - Added wxWindow::ClientToWindowSize() and WindowToClientSize() helpers.
489 - Added wxSizer::ComputeFittingClientSize() and ComputeFittingWindowSize().
490 - Fixed wxSizer::SetSizeHints() to work when the best size decreases.
491 - Fixed crash in wxHtmlHelpController if the help window is still open.
492 - Fixed generic art provider to scale bitmaps down to client-specific
493   best size if needed.
494 - Made wxSpinCtrl::Reparent() in MSW and generic versions (Angelo Mottola).
495 - Fixed timing of malformed animated GIFs in wxHTML (Gennady Feller).
496 - Fixed incorrect layout width caching in wxHTML (Jeff Tupper).
497 - wxHTML: preserve TAB characters when copying <pre> content to clipboard.
498 - Set focus to wxCalendarCtrl when it is clicked.
499 - Don't clear the list control when wxLC_[HV]RULES style is toggled.
500 - Don't crash when Ctrl-Shift-T is pressed in empty wxStyledTextControl.
501
502 All (Unix):
503
504 - Fixed shared libraries to not depend on GStreamer when built with
505   --enable-media; only wxMedia library depends on it now.
506 - wxLaunchDefaultBrowser() now uses xdg-open if available.
507 - Don't close UDP socket if an empty datagram is received (Mikkel S)
508 - Honour locale modifiers such a "@valencia" in system locale (Tim Kosse)
509
510 wxMSW:
511
512 - Fix rare bug with messages delivered to wrong wxSocket (Tim Kosse).
513 - Fix setting icons when they have non-default (16*16 and 32*32) sizes.
514 - Fixed wxLocale::GetInfo to use the C locale.
515 - Don't enable disabled windows when showing them (Harry McKame).
516 - Fix assert when using owner-drawn menu items with the newest (Vista) SDK.
517 - Fixed wxTextCtrl to not process clipboard events twice if there's
518   a custom wxEVT_COMMAND_TEXT_* event handler.
519 - Fix wxComboBox to not lose the current value if it was programmatically set
520   to a value not in a list of choices on popup close (Kolya Kosenko)
521 - Switching wxListCtrl to report mode from another one now uses full row
522   highlight, just as if the control were created in report mode initially.
523 - Use correct index of the right-clicked column in wxListCtrl in the
524   corresponding event even when the control is scrolled horizontally.
525 - Implement wxRadioBox::Reparent() correctly (Vince Harron).
526 - Make context sensitive help work for the text part of wxSpinCtrl.
527 - wxFileType::GetCommand() now looks at Explorer associations and CurVer
528   for increased reliability and conformance to user expectations.
529 - Fixed double Init() call in wxTopLevelWindow causing a memory leak on
530   SmartPhone.
531 - Fixed rendering of borders for wxTextCtrl with wxTE_RICH(2) style when
532   using Windows XP's Classic UI theme.
533 - Text controls with wxTE_RICH style now also generate wxClipboardTextEvents.
534 - Fixed wxEVT_COMMAND_TEXT_ENTER generation in wxSpinCtrl.
535 - Fixed wxSpinCtrl::GetClientSize() to return sensible value and not just
536   spin button's client size.
537 - Fixed IMPLEMENT_APP() to be compatible with the -WU flag of Borland C++
538   compiler (Matthias Bohm).
539 - Correct size calculation for toolbars containing controls under pre-XP
540   systems (Gerald Giese)
541
542 wxGTK:
543
544 - Return false from wxEventLoop::Dispatch() if gtk_main_quit() was called and
545   so the loop should exit (Rodolfo Schulz de Lima).
546 - Implement wxListBox::EnsureVisible() (Andreas Kling)
547 - Fixed wxCURSOR_HAND to map to GDK_HAND2 and not GDK_HAND1, for consistency
548   with other applications.
549 - Fix wxNotebook::GetPage{Text,Image}() when they were called from the page
550   change event handler for the first added page (Mikkel S).
551 - Fixed wxBitmapButton to use focus and hover bitmaps correctly.
552 - Fixed race condition which could cause idle processing to stop without
553   processing all pending events.
554 - wxAcceleratorTable now works with buttons too.
555
556 wxMac:
557
558 - Fixed cursor for wxBusyCursor and wxContextHelp.
559 - Fixed wxListCtrl to respect items' non-default fonts.
560 - wxListCtrl::SetColumnWidth() now supports wxLIST_AUTOSIZE.
561 - Fixed handling of transparent background in borderless wxBitmapButton.
562
563
564 2.8.7
565 -----
566
567 All:
568
569 - Fixed bug with default proxy destruction in wxURL (Axel Gembe).
570
571 wxMSW:
572
573 - Correct (harmless) warnings given for forward-declared DLL-exported classes
574   by mingw32 4.2 (Tim Stahlhut).
575
576 wxGTK:
577
578 - Added gtk.window.force-background-colour wxSystemOptions option to work around
579   a background colour bug in the gtk-qt theme under KDE.
580 - Implemented wxGetClientDisplayRect() correctly for wxGTK and X11-based ports.
581
582
583 2.8.6
584 -----
585
586 All:
587
588 - Fixed another bug in wxFileConfig when deleting entries (Axel Gembe)
589 - Added Portuguese translation (Antonio Cardoso Martins)
590
591
592 2.8.5
593 -----
594
595 All (GUI):
596
597 - Added colour normalization to PNM image handler (Ray Johnston)
598 - Fixed selecting part of word from right to left in wxHTML (Michael Hieke)
599 - Selecting text in wxHTML with character precision was made easier, it's
600   enough to select half of a character (Michael Hieke)
601 - Significantly improved startup times of XRC-based applications using
602   embedded resources on Unix (requires resources recompilation)
603 - Fixed freeing of "static" alpha data in wxImage (Axel Gembe)
604 - Don't invalidate the font in SetNativeFontInfo[Desc]() if the string is
605   invalid, to conform to the documented behaviour (Langhammer)
606 - Fixed wxXPMHandler::SaveFile for images with more than 92 colors.
607
608 wxMSW:
609
610 - Correct problem with page setup dialog when using landscape mode
611 - Added msw.font.no-proof-quality system option, see manual for description
612 - Fix appearance of notebook with non-top tabs under Windows Vista
613 - Fixed bug with symbol resolving in wxStackWalker (Axel Gembe)
614 - Fixed showing busy cursor for disabled windows and during wxExecute()
615 - Set the string of wxEVT_COMMAND_CHECKLISTBOX_TOGGLED events (Luca Cappa)
616 - Fix problems with timers on SMP machines in wxAnimationCtrl (Gennady)
617
618 wxGTK:
619
620 - Setting foreground colour of single line wxTextCtrl now works
621 - More work on setting defaults in GNOME print dialogs.
622 - Also made landscape printing work as per wxMSW.
623 - Add support for clipping in GNOME print backend.
624 - Speed up wxBitmap::Rescale()
625 - Add right button event for wxToolbar's tools (Tim Kosse)
626 - Don't unconditionally add wxCAPTION style to wxMiniFrame
627 - Generate wxEVT_COMMAND_LIST_END_LABEL_EDIT event even if label didn't change
628 - Fix WX_GL_STEREO attribute handling (Tristan Mehamli)
629 - Fix wxThread::SetPriority() when the thread is running (Christos Gourdoupis)
630 - Fixed off by 1 bug in wxDC::GradientFillLinear() (Tim Kosse)
631
632
633 2.8.4
634 -----
635
636 All:
637
638 - Fix bug in wxFileConfig when recreating a group (Steven Van Ingelgem)
639 - Fix wxStringOutputStream::Write() in Unicode build when the argument
640   overlaps UTF-8 characters boundary
641 - Account for lines without newline at the end in wxExecute()
642
643 All (Unix):
644
645 - Handle socket shutdown by the peer correctly in wxSocket (Tim Kosse)
646
647 All (GUI):
648
649 - Allow status bar children in XRC (Edmunt Pienkowski)
650 - Fix memory leak in wxWizard when not using sizers for the page layout
651 - Added wxListCtrl::SetItemPtrData()
652 - wxHTML: Apply table background colour between the cells too (Michael Hieke)
653
654 wxMSW:
655
656 - Corrected wxStaticBox label appearance when its foreground colour was set:
657   it didn't respect font size nor background colour then (Juan Antonio Ortega)
658 - Don't lose combobox text when it's opened and closed (Kolya Kosenko)
659 - Corrected GetChecked() for events from checkable menu items (smanders)
660 - Fixed popup menus under Windows NT 4
661 - Fixed bug in wxThread::Wait() in console applications introduced in 2.8.3
662 - Support right-aligned/centered owner drawn items in wxListCtrl (troelsk)
663 - Compilation fixed with WXWIN_COMPATIBILITY_2_6==0
664 - Fix wxComboCtrl colours under Windows Vista (Kolya Kosenko)
665
666 wxGTK:
667
668 - Fix infinite loop when adding a wxStaticText control to a toolbar
669 - Fix wxNO_BORDER style for wxRadioBox (David Hart)
670 - Fix wxTextCtrl::GetLineText() for empty lines (Marcin Wojdyr)
671
672 wxMac:
673
674 - Fix wxComboBox::SetSelection(wxNOT_FOUND) (Adrian Secord)
675
676 wxUniv:
677
678 - Fix wxTextCtrl::SetSelection(-1, -1) to behave as documented (Anders Larsen)
679 - Fix wxComboBox::SetSelection(wxNOT_FOUND)
680 - Fix setting background colour for controls with transparent background
681
682
683 2.8.3
684 -----
685
686 All:
687
688 - Shut down the sockets gracefully (Sergio Aguayo)
689 - Fix extra indentation in wxHTML_ALIGN_JUSTIFY display (Chacal)
690
691 wxMac:
692
693 - Corrected top border size for wxStaticBox with empty label (nusi)
694
695 wxMSW:
696
697 - Fixed wxFileName::GetSize() for large files
698
699 wxGTK:
700
701 - Fixed handling of accelerators using PageUp/Down keys
702
703
704 2.8.2
705 -----
706
707 All:
708
709 - Added wxSizerFlags::Shaped() and FixedMinSize() methods.
710 - Added wxCSConv::IsOk() (Manuel Martin).
711 - Added wxDateTime::GetDateOnly().
712 - Made wxTextFile work with unseekable files again (David Hart).
713 - Added wxCONFIG_USE_SUBDIR flag to wxFileConfig (Giuseppe Bilotta).
714 - Added wxSearchCtrl::[Get|Set]DescriptiveText.
715 - Fixed detection of number of processors under Linux 2.6
716 - Fixed Base64 computation in wxHTTP (p_michalczyk)
717 - Fix handling of wxSOCKET_REUSEADDR in wxDatagramSocket (troelsk)
718
719 Unix Ports:
720
721 - Fixed crash in wxGetUserName() in Unicode build
722
723 wxMSW
724
725 - Fix lack of spin control update event when control lost focus.
726 - Corrected drawing of bitmaps for disabled menu items.
727
728 wxGTK
729
730 - Fix hang on startup when using GTK+ options in Unicode build
731
732 wxMac
733
734 - Fix position of the centered windows (didn't take menu bar size into account)
735 - Added support for the wxFRAME_FLOAT_ON_PARENT style.
736
737 wxX11:
738
739 - Don't crash in wxWindow dtor if the window hadn't been really Create()d.
740
741 wxUniv:
742
743 - Fixed wxComboBox always sorted.
744
745
746 2.8.1
747 -----
748
749 All:
750
751 - Fix compilation with wxUSE_STL=1.
752 - wxGrid::GetBestSize() returns same size the grid would have after AutoSize().
753 - Added wxTreeCtrl::CollapseAll[Children]() and IsEmpty() (Francesco Montorsi).
754 - Several RTL-related positioning fixes (Diaa Sami).
755 - Fix wxConfig::DeleteGroup() for arguments with trailing slash (David Hart).
756 - Fix memory leak in wxGrid::ShowCellEditControl() (Christian Sturmlechner).
757
758 wxMSW:
759
760 - Fixed compilation with Borland C++ in Unicode mode but without MSLU.
761 - Show taskbar icon menu on right button release, not press.
762
763 wxGTK:
764
765 - Don't crash if command line is not valid UTF-8 (Unicode build only).
766
767 wxUniv:
768
769 - It is now possible to set background colour of wxStaticText.
770
771
772 2.8.0
773 -----
774
775 All:
776
777 - Added wxSearchCtrl (Vince Harron).
778 - wxCSConv("UTF-16/32") now behaves correctly, i.e. same as wxMBConvUTF16/32.
779 - wxArrayString::Alloc() now works as reserve() and doesn't clear array contents.
780 - Fixed long standing bug in wxFileConfig groups renaming (Antti Koivisto).
781 - New option wxFS_READ | wxFS_SEEKABLE for wxFileSystem::OpenFile() to return
782   a stream that is seekable.
783 - Fixed bug in wxCalendarCtrl::HitTest() when clicking on month change arrows.
784 - Added wxWindow::GetWindowBorderSize() and corrected wxTreeCtrl::GetBestSize().
785   for a control with borders (Tim Kosse).
786
787 wxMSW:
788
789 - Fixed version script problems when using configure with cygwin/mingw32.
790 - Use system default paper size for printing instead of A4.
791 - Fix (harmless) assert in virtual list control under Vista.
792 - Fix colours when converting wxBitmap with alpha to wxImage (nusi).
793
794 wxGTK:
795
796 - Allow dynamically changing most of text control styles.
797 - Enable use of libgnomeprintui by default in configure.
798
799
800 2.7.2
801 -----
802
803 All:
804
805 - Added wxFFile overload to wxFileName::CreateTemporaryFileName().
806 - Added GetTempDir() to wxFileName and wxStandardPaths.
807 - Added wxTar streams.
808 - Added wxFilterFSHandler and wxArchiveFSHandler.
809 - Added wxString::ToLongLong() and ToULongLong().
810
811 All (GUI):
812
813 - wxMemoryDC constructor now optionally accepts a wxBitmap parameter,
814   calling SelectObject itself if a valid bitmap is passed.
815 - Reverted wxBuffered[Paint]DC to pre 2.7.1 state, added
816   wxAutoBufferedPaintDC and wxAutoBufferedPaintDCFactory.
817 - Renamed wxProgressDialog::UpdatePulse() to just Pulse().
818 - Added wxCollapsiblePane (Francesco Montorsi).
819 - Added wxSimpleHtmlListBox (Francesco Montorsi).
820 - Printing framework fixes by Robert J. Lang. Bugs fixed,
821   wxPrinterDC::GetPaperRect() and other functions added to allow
822   easier printing implementation, and the documentation updated.
823 - Many enhancements to wxRichTextCtrl including URL support,
824   formatting and symbol dialogs, print/preview, and better list
825   formatting.
826 - Support for loading TGA files added (Seth Jackson).
827 - Added wxTB_RIGHT style for right-aligned toolbars (Igor Korot).
828 - wxHtmlWindow now generates events on link clicks (Francesco Montorsi).
829 - wxHtmlWindow now also generates wxEVT_COMMAND_TEXT_COPY event.
830
831 Unix Ports:
832
833 - Added autopackage for wxGTK and an example of using autopackage for a wx
834   program (Francesco Montorsi).
835
836 wxGTK:
837
838 - More RTL work.
839 - Support wxALWAYS_SHOW_SB.
840 - Speed up MIME types loading. Only the GNOME database should be loaded under
841   GNOME etc. For this, the code queries the X11 session protocol.
842 - wxCaret redraw problem during scrolling fixed.
843
844
845 2.7.1
846 -----
847
848 All:
849
850 - Added wxDir::FindFirst() (Francesco Montorsi).
851 - Added wxPlatformInfo class (Francesco Montorsi).
852 - Added wxLocale::IsAvailable() (Creighton).
853 - Added Malay translations (Mahrazi Mohd Kamal).
854 - Added reference counting for wxVariant.
855 - For consistency, all classes having Ok() method now also have IsOk() one, use
856   of the latter form is preferred although the former hasn't been deprecated yet.
857 - Added wxFileName::Is(Dir|File)(Writ|Read|Execut)able() (Francesco Montorsi).
858 - Added wxFileName::GetSize() and GetHumanReadableSize() (Francesco Montorsi).
859 - Added wxSizer::Replace (Francesco Montorsi).
860 - wxXmlDocument can now optionally preserve whitespace (Francesco Montorsi).
861 - Added wxBookCtrl::ChangeSelection() and wxTextCtrl::ChangeValue() to provide
862   event-free alternatives to SetSelection() and SetValue() functions; see the
863   "Events generated by the user vs programmatically generated events" paragraph
864   in the "Event handling overview" topic for more info.
865
866 All (GUI):
867
868 - Support for right-to-left text layout (started by Diaa Sami during Google Summer of
869   Code, with a lot of help from Tim Kosse and others).
870 - wxAnimationCtrl added (Francesco Montorsi).
871 - Added wxAboutBox() function for displaying the standard about dialog.
872 - Added wxID_PAGE_SETUP standard id.
873 - Added wxSize::IncBy() and DecBy() methods.
874 - Added wxTextCtrl::IsEmpty().
875 - Added file type parameter to wxTextCtrl::LoadFile, wxTextCtrl::SaveFile for
876   consistency with wxRichTextCtrl.
877 - wxRichTextCtrl: fixed range out-by-one bug to be consistent with wxTextCtrl API,
878   fixed some attribute bugs and added wxRichTextStyleComboCtrl.
879 - Added wxWindow::IsDoubleBuffered().
880 - Added wxHL_ALIGN_* flags to wxHyperlinkCtrl (Francesco Montorsi).
881 - Added wxGauge::Pulse() and wxProgressDialog::UpdatePulse() (Francesco Montorsi).
882
883 wxMSW:
884
885 - Implemented wxComboBox::SetEditable().
886 - wxSemaphore::Post() returns wxSEMA_OVERFLOW as documented (Christian Walther)
887 - Fixed a bug whereby static controls didn't use the correct text colour if the
888   parent's background colour had been set (most noticeable when switching to a
889   high-contrast theme).
890 - Respect wxBU_EXACTFIT style in wxToggleButton (Alexander Borovsky).
891
892 wxMac:
893
894 - Add parameter to the --enable-universal_binary configure option for the path
895   to the SDK.
896
897 wxGTK:
898
899 - Automatically use stock items for menu items with standard ids.
900 - Setting cursor now works for all controls.
901 - Implemented right-to-left support.
902 - Implemented left indentation and tab stops support in wxTextCtrl (Tim Kosse).
903 - Fixed wxHTML rendering of underlined text of multiple words (Mart Raudsepp).
904
905 wxUniv:
906
907 - Added wxTLW::UseNativeDecorations() and UseNativeDecorationsByDefault().
908
909
910 2.7.0
911 -----
912
913 All:
914
915 - Added positional parameters support to wxVsnprintf() (Francesco Montorsi).
916 - wx(F)File, wxTextFile and wxInputStreams recognize Unicode BOM now.
917 - Many fixes for UTF-16/32 handling in Unicode builds.
918 - wxLaunchDefaultBrowser() now supports wxBROWSER_NEW_WINDOW flag.
919 - Added wxStandardPaths::GetResourcesDir() and GetLocalizedResourcesDir()
920 - Added wxStandardPaths::GetDocumentsDir() (Ken Thomases).
921 - Added wxStringTokenizer::GetLastDelimiter(); improved documentation.
922 - Fixed wxTextFile in Unicode build.
923 - Added possibility to specify dependencies for a wxModule.
924 - Speed improvements to wxRegEx when matching is done in a loop such as
925   during a search and replace.
926 - Fix regerror and regfree name conficts when built-in regex and system regex
927   are both used in the same program.
928 - Basic authentication supported added to wxHTTP.
929 - wxCondition::WaitTimeout() now returns correct value when timeout occurs.
930 - Fixed occasional wxThread cleanup crash.
931 - Bug in wxLogStream::DoLogString in Unicode builds fixed.
932 - Added support for memo fields to wxODBC.
933 - Fixed Unicode builds using SunPro compiler by defining__WCHAR_TYPE__.
934 - wxFileName now also looks for TMPDIR on Unix.
935 - Fixed build error in list.h with VC++ 2005.
936 - Fixed wxODBC buffer overflow problem in Unicode builds.
937 - Fixed wxSocketBase::InterruptWait on wxBase.
938 - Important code cleanup (Paul Cornett).
939 - Added support for wxLongLong in wx stream classes (Mark Junker).
940 - wxSOCKET_REUSEADDR can be used with wxSocketClient.
941 - Overloaded Connect() and SetLocal() methods for binding to local address/port.
942 - Albanian translation added (Besnik Bleta).
943 - Assert messages now show the function in which assert failed.
944 - wxApp::OnAssertFailure() should now be used instead the old wxApp::OnAssert().
945 - Fixed several bugs in wxDateTime::ParseDate().
946 - The WXK*PRIOR and WXK*NEXT constants are now aliases for WXK*PAGEUP
947   and WXK*PAGEDOWN.  If you have switch statements that use both
948   constants from a set then you need to remove the PRIOR/NEXT
949   versions in order to eliminate compiler errors.
950 - Fixed bug where wxDateTime::Now() would sometimes return an incorrect value
951   the first time it was called.
952 - Added wxString::rbegin() and rend().
953 - Added wxString::EndsWith().
954 - wxSocket::_Read continues reading from socket after exhausting pushback buffer.
955   Previously, only the buffer would be returned, even if more data was requested.
956 - Added wxPowerEvent (currently MSW-only).
957 - Make wx-config compatible with Bourne shells.
958 - Fixed wxDb::Open(wxDbConnectInf) when using connection string (Hellwolf Misty).
959 - Fixed crash in wxDb::Open() in Unicode build (Massimiliano Marretta).
960 - Fixed wxTimeSpan::Format() for negative time spans.
961 - Optionally count repeating wxLog messages instead of logging all (Lauri Nurmi).
962
963 All (GUI):
964
965 - New AUI (Advanced User Interface) library for docking windows and much more.
966 - Added wxComboCtrl and wxOwnerDrawnComboBox (Jaakko Salli).
967 - Added wxTreebook (uses a wxTreeCtrl to control pages).
968 - Added wxColour/Dir/File/Font/PickerCtrls (Francesco Montorsi).
969 - Added wxDC::GradientFillLinear/Concentric().
970 - Added wxHyperlinkCtrl (Francesco Montorsi).
971 - Added clipboard events (wxEVT_COMMAND_TEXT_COPY/CUT/PASTE).
972 - Allow to reorder wxGrid columns by drag-and-drop (Santiago Palacios).
973 - Added wxRadioBox::SetItemToolTip().
974 - Added support for CMYK JPEG images loading (Robert Wruck).
975 - Added wxListCtrl::GetSubItemRect() and subitem hit testing (Agron Selimaj).
976 - Added wxKeyEvent::GetModifiers().
977 - Added wxDialog::SetEscapeId().
978 - wxItemContainerImmutable::FindString unified (affects wxRadioBox, wxListBox,
979   wxComboBox and wxChoice).
980 - wxWindow::Fit() now works correctly for frames and dialogs too.
981 - Added access to the border size between pages and controller in book
982   based controls (wxBookCtrlBase::Get/SetInternalBorder).
983 - Added initial wxRichTextCtrl implementation.
984 - All book based controls (notebook, treebook etc.) share now the same
985   options for orientation (wxBK_TOP, wxBK_DEFAULT, ...) instead of duplicated
986   wxLB_TOP, wxNB_TOP, wxCHB_TOP, wxTBK_TOP.
987 - Added parent window parameter to wxHelpController constructor
988   and added SetParentWindow/GetParentWindow.
989 - wxMultiChoiceDialog uses now wxCheckListBox if possible, wxListBox if not.
990 - Added wxBitmapButton::SetHoverBitmap().
991 - Access to titles through Get/SetTitle is available now only for top level
992   windows (wxDialog, wxFrame).
993 - Fixed memory leak of pending events in wxEvtHandler.
994 - Added wxRadioBox::IsItemEnabled/Shown().
995 - Added space after list item number in wxHTML.
996 - Implemented <sub> and <sup> handling in wxHTML (based on patch
997   by Sandro Sigala).
998 - Added caption parameter to wxGetFontFromUser and wxGetColourFromUser.
999 - Added wxGetMouseState function.
1000 - Added wxHtmlHelpWindow, wxHtmlHelpDialog and wxHtmlModalHelp classes,
1001   allowing HTML help to be embedded in an application.
1002 - wxCalendarCtrl positioning and hit-testing fixes for dimensions other than
1003   best size.
1004 - wxCalendarCtrl colour schema changed and adjusted to system settings.
1005 - wxImage::Mirror() and GetSubBitmap() now support alpha (Mickey Rose).
1006 - More checking of image validity before loading into wxImage.
1007 - Added wxImage::ConvertToGreyscale.
1008 - Added ability to use templates with static event tables
1009   with BEGIN_EVENT_TABLE_TEMPLATEn() macros.
1010 - Added play, pause, and state change events to wxMediaCtrl.
1011 - Added double-buffering to wxVListBox and fixed a scrolling issue.
1012 - Added wxToolbook (uses a wxToolBar to control pages).
1013 - Added SetSheetStyle to wxPropertySheetDialog and allowed it to
1014   behave like a Mac OS X settings dialog.
1015 - Added <disabled> XRC tag for wxToolBar elements and <bg> for wxToolBar itself.
1016 - Fixed centering of top level windows on secondary displays.
1017 - Implemented wxDisplay::GetFromWindow() for platforms other than MSW.
1018 - UpdateUI handler can now show/hide the window too (Ronald Weiss).
1019 - More than one filter allowed in in wxDocTemplate filter.
1020 - Added wxListBox::HitTest().
1021 - Added wxDisplay::GetClientArea().
1022 - Indices and counts in wxControlWithItems derived API are unsigned.
1023 - Added support for links to wxHtmlListBox; use code has to override
1024   wxHtmlListBox::OnLinkClicked() to take advantage of it.
1025 - Added an easier to use wxMenu::AppendSubMenu().
1026 - wxString <-> wxColour conversions in wxColour class (Francesco Montorsi).
1027 - Fixed bug with ignoring blank lines in multiline wxGrid cell labels.
1028 - Added wxTextAttr::Merge() (Marcin Simonides).
1029 - Added wxTB_NO_TOOLTIPS style (Igor Korot).
1030 - Added wxGenericDirCtrl::CollapsePath() (Christian Buhtz).
1031 - Added wxTreeCtrl::ExpandAllChildren() (Christian Buhtz)
1032 - Fixed 64-bit issue in wxNotebook causing segfaults on Tru64 Unix.
1033 - Made it possible to associate context help to a region of a window.
1034 - Added support for tabs in wxRichTextCtrl (Ashish More).
1035 - Fixed problem with zoom setting in print preview.
1036 - Moved wxRichTextCtrl from the advanced library to its own.
1037 - wxNB_HITTEST_* flags renamed to wxBK_HITTEST_* to serve all book controls.
1038 - Added wxTopLevelWindow::SetTransparent and CanSetTransparent, with
1039   implementations (so far) for wxMSW and wxMac.
1040 - Allow customizing individual grid lines appearance (Søren Lassen).
1041 - Fixed middle click events generation in generic wxTreeCtrl (Olly Betts).
1042 - Added wxEVT_MOUSE_CAPTURE_LOST event that must be handled by all windows
1043   that CaptureMouse() is called on.
1044
1045 wxMSW:
1046
1047 - Fixed crash with ownerdrawn menu items accelerators (Perry Miller).
1048 - wxFileDialog respects absence of wxCHANGE_DIR flag under NT (Brad Anderson).
1049 - Switching page of a hidden notebook doesn't lose focus (Jamie Gadd).
1050 - Removed wxImageList *GetImageList(int) const.
1051 - Fixed MDI context menu problem.
1052 - Removed __WIN95__ define.
1053 - Create msw/rcdefs.h in setup.h's directory, which can be included by
1054   resource files. It containts platform/compiler specific defines (such as
1055   target cpu) which can be used in #ifs in .rc files.
1056 - Add support for Win64 manifests and VC++ 8 automatic manifests (see the
1057   wxMSW faq for details).
1058 - New TARGET_CPU=amd64 (or 'ia64') option for the makefile.vc files which
1059   puts 64-bit builds in their own directory and adds /machine:amd64 or ia64
1060   to the link command.
1061 - wxStatusBar::GetFieldRect now returns correct values under XP.
1062 - wxStatusBar no longer corrupts surrounding windows on resize.
1063 - Enable wxListCtrl in report mode to be able to use images in other
1064   columns, if ComCtl32 >= 470.
1065 - Fixed problem where using SetValue and wxTE_RICH2 would cause control to
1066   show.
1067 - Numpad special keys are now distinguished from normal keys.
1068 - Fixed GDI leak in wxStaticBitmap when setting images after
1069   initial construction.
1070 - Menu codes now stripped before measuring control labels.
1071 - MFC sample now compiles in Unicode mode.
1072 - Fixed SetScrollbar thumb size setting bug (set orientation before triggering
1073   events).
1074 - Fixed icon to cursor conversion problem for bitmaps with masks.
1075 - Fixed wxToolBar background colour problem for some video cards.
1076 - wxGenericDirCtrl now shows volume name.
1077 - Added XP theme support for DrawHeaderButton, DrawTreeItemButton.
1078 - Made the wxActiveXContainer class public and documentated.
1079 - Added a Windows Media Player 9/10 backend for wxMediaCtrl.
1080 - Multiline notebook tab label change now resizes the control
1081   correctly if an extra row is removed or added.
1082 - Fixed a crash when dismissing wxPrintDialog under VC++ 7.1.
1083 - Fixed out by one error in wxTextCtrl::GetStyle.
1084 - Fixed problem with getting input in universal/unicode build of wxMSW.
1085 - Link oleacc.lib conditionally.
1086 - Drag and drop now works inside static boxes.
1087 - Fall back to unthemed wxNotebook if specified orientation not available.
1088 - wxListCtrl and wxTreeCtrl now resize their standard font if the user
1089   changes the system font.
1090 - wxDisplay doesn't require multimon.h now and is enabled by default (Olly Betts).
1091 - Fixed wxChoice/wxComboBox slow appending and infinite recursion
1092   if its size is set within a paint handler (for example when embedded in a
1093   wxHtmlWindow). [Now reverted due to problems in W2K and below.]
1094 - wxDC::GetTextExtent() width calculation is more precise for italics fonts now.
1095 - Warning fixes for VC++ 5.0 (Igor Korot).
1096
1097 wxGTK:
1098
1099 - Fixed handling of font encoding in non-Unicode build
1100 - wxEVT_MENU_CLOSE and wxEVT_MENU_OPENED for popup menus are now generated.
1101 - Implemented wxCURSOR_BLANK support.
1102 - wxSlider generates all scroll events now and not only wxEVT_SCROLL_THUMBTRACK.
1103 - Fixed a host of bugs in wxMediaCtrl as well as added a GStreamer 0.10
1104   implementation.
1105 - Improved configure checks for GStreamer. You may also now specify
1106   --enable-gstreamer8 to force configure to check for GStreamer 0.8.
1107 - Fixed problem with choice editor in wxGrid whereby the editor
1108   lost focus when the combobox menu was shown.
1109 - Fixed focusing with mnemonic accelerator keys on wxStaticText which
1110   is now able to focus on wxComboBox and possibly other controls
1111   previously unable to be focused before.
1112 - Enabled mnemonics and the corresponding accelerator keys for
1113   wxStaticBox and wxRadioBox.
1114 - Fixed problem trying to print from a preview, whereby wrong printer
1115   class was used.
1116 - Worked around pango crashes in strncmp on Solaris 10.
1117 - Polygon and line drawing speeded up if there is no scaling.
1118 - Fixed problems with CJK input method.
1119 - Implemented ScrollLines/Pages() for all windows (Paul Cornett).
1120 - Support underlined fonts in wxTextCtrl.
1121 - Support all border styles; wxListBox honours the borders now.
1122 - wxWindow and wxScrolledWindow now generate line, page and thumb-release scroll events.
1123 - Added file preview support in file dialogs.
1124 - Implemented SetLineSize and GetLineSize for wxSlider.
1125
1126 wxMac:
1127
1128 - Fixed problem with clipboard support for custom data flavors.
1129 - Fixed focus handling for generic controls in carbon-cfm.
1130 - Fixed a printing crash bug, for example using File->Print and changing
1131   Popup from 'Copies & Pages' to e.g. 'Layout'.
1132 - Improved support for help and application menu items.
1133 - Added default implementations for wxTextCtrl::Replace and wxTextCtrl::Remove.
1134 - Added support for 10.4 context menu.
1135 - Added support for wxFRAME_EX_METAL and wxDIALOG_EX_METAL styles.
1136 - Added wxNotebook::HitTest support.
1137 - Corrected idle wake-up.
1138 - Corrected wxExecute.
1139 - Now makes use of full printer resolution.
1140 - Corrected CGImage handling in wxBitmap.
1141 - Now uses simple hide/show transition for top-level windows.
1142 - Uses reasonable temporary path for wxFileName::CreateTempFileName.
1143 - Added support for default key handling (escape, enter, command-period) even
1144   if there is no control on the frame or dialog that has the focus.
1145 - Fixed joystick bugs including a link error and a crash if no joysticks
1146   were found.
1147 - Removed an errorneous assertion from wxDir.
1148 - Uses CoreFoundation based and thread-safe implementation for message boxes
1149   under Mach-O.
1150 - wxBitmapButton is created as a content icon if wxBORDER_NONE is
1151   specified, otherwise as a bevel button.
1152 - Mouse event ids set correctly (fixing problems with Connect in particular).
1153 - Fixed wxZipInputStream read error on wxSocketInputStream which signals the
1154   end of file with an error.
1155 - Xcode wxWidgets and minimal sample project files updated to create Universal
1156   binaries.
1157 - Fix for setting wxMenuBar more than once.
1158 - wxListBox minimum size bug fixed.
1159 - Fixed wxNotebook off-by-one bug in HitTest.
1160 - Fixed joystick GetXMin/Max bug.
1161 - Fixed Unix domain socket problem in wxIPC.
1162 - Fixed non-detection of process termination on Intel Macs by
1163   polling for process termination in a separate thread.
1164
1165 wxCocoa:
1166
1167 - wxDirDialog is now native (Hiroyuki Nakamura).
1168
1169 wxWinCE:
1170
1171 - Pressing build-in joystick on WinCE phones fires wxEVT_JOY_BUTTON_DOWN event.
1172 - Native wxCheckListBox implementation.
1173 - All wxTopLevelWindows resizes accordingly to SIP visibility.
1174 - ::wxGetUserName() implemented.
1175 - wxDisplay enumeration support.
1176 - Fixed wxFileDialog breakage on WinCE due to incorrect structure size.
1177 - New wxSystemOption "wince.dialog.real-ok-cancel" to switch between WinCE
1178   guidelines with Ok-only dialogs and dialogs using wxButtons.
1179 - Checkable items in wxToolMenuBarTool supported.
1180 - Fixed date formatting and mktime.
1181 - Fixed getting standard folder paths on WinCE.
1182 - Support for backspace key on Smartphone.
1183 - Made both windows wxMediaCtrl Windows backends compilable with wxWinCE - it
1184   is recommended that you use wxMEDIABACKEND_WMP10 on this platform
1185   directly, however.
1186 - Added support for the context menu event (wxContextMenuEvent)
1187   and added platform-specific wxWindow::EnableContextMenu.
1188 - Fixed wxGenericFileDialog to work with WinCE.
1189 - Fixed compilation and menubar disappearance on Windows Mobile 5.
1190 - Fixed wxDatePickerCtrl usage.
1191
1192 wxUniv:
1193
1194 - Send wxEVT_SCROLL_XXX events from wxSlider (Danny Raynor).
1195 - Implemented wxToggleButton (David Bjorkevik).
1196 - Label in Toolbar tools implemented (Danny Raynor).
1197
1198 wxX11:
1199
1200 - Invisible text problem fixed.
1201 - Bitmap clipping with masks and scaling improved.
1202 - Fixed a crash bug in the generic timer.
1203 - Implemented child process termination notifications (David Björkevik)
1204
1205 Unix:
1206
1207 - NO_GCC_PRAGMA is not used any more, remove checks for it if you used it.
1208
1209 wxMGL:
1210
1211 - Fixed NUM_LOCK having no effect.
1212 - Fixed wxFileExists (affecting wxImage::LoadFile).
1213
1214
1215 2.6.2
1216 -----
1217
1218 All:
1219
1220 - Fixed wxScopeGuard to work with VC++, documented it.
1221 - Fixed proxy handling in wxURL.
1222 - Added wxEVT_MEDIA_LOADED event for wxMediaCtrl.
1223 - Added new methods to wxMediaCtrl (wxURI version of Load, ShowPlayerControls).
1224 - Added wxZipFSHandler::Cleanup() (Stas Sergeev).
1225 - Added wxImage::RotateHue() and RGB <-> HSV conversions (John Anderson).
1226 - Fixed compilation with IBM xlC compiler.
1227 - wxABI_VERSION, see 'Backward Compatibility' topic overview in the manual.
1228 - Added wxLongLong::ToDouble().
1229 - Added wxDateTime::[Make]FromTimezone(), fixed several TZ-related bugs.
1230 - Fixed bug in wxStreamBuffer::Read(wxStreamBuffer *) (Paul Cornett).
1231 - Fixed wxListbook and wxChoicebook internal layout.
1232
1233 All (GUI):
1234
1235 - Added wxStaticText::Wrap()
1236 - wxChoice and wxComboBox::GetSelection() now returns completed selection,
1237   added a new GetCurrentSelection() function having the old behaviour.
1238 - Added wxXmlResource::Unload().
1239 - Possibility of modeless wxWizard dialog (with presentation in sample).
1240 - Fixed a rare crash due to malformed HTML in wxHTML (Xavier Nodet).
1241 - Ctrl+mouse wheel changes zoom factor in print preview (Zbigniew Zagórski).
1242 - Cross-compile now supported for wxGTK, wxX11 and wxMotif.
1243 - Cygwin compilation of wxX11, wxGTK and wxMotif now supported.
1244 - Now reads "help" parameter for all windows (context help text).
1245 - wxWizard adapts to PDA-sized screens.
1246 - Unicode fixes for IPC and a new IPC sample (Jurgen Doornik).
1247
1248 wxMSW:
1249
1250 - wxMSW now builds with (beta of) MSVC 8 (a.k.a. 2005).
1251 - Separators are now correctly shown in the toolbars under Windows XP.
1252 - Fixed multiline tooltips handling.
1253 - Fixed wxSlider::GetSelEnd() (Atilim Cetin).
1254 - Fixed accelerators of menu items added to already attached submenus.
1255 - Position of wxEVT_MOUSEWHEEL events is now in client, not screen, coordinates.
1256 - Handle absence of wxListCtrl column image better (Zbigniew Zagórski).
1257 - Fixed asynchronous playback of large sound files in wxSound.
1258 - Added wxDynamicLibrary::GetSymbolAorW().
1259 - Fixed default size of wxStaticText controls with border being too small.
1260 - Fixed bugs with wxStatusBar positioning (with or withour sizers) (Jamie Gadd).
1261 - Mouse move events are now generated for all static controls (Jamie Gadd).
1262 - Fixed nested static box display and splitter sash on some themes (Jamie Gadd).
1263 - Made wxJoystick::GetProductName() more useful (John Ratliff).
1264 - Native spline drawing implementation (Wlodzimierz ABX Skiba).
1265
1266 wxGTK:
1267
1268 - ShowFullScreen() shows the window if it was still hidden (rpedroso).
1269 - Implemented wxTopLevelWindow::RequestUserAttention() (Mart Raudsepp).
1270 - Base library is now binary compatible when built with wxGTK and wxMotif.
1271 - wxTextCtrl::XYToPosition, PositionToXY and GetLineLength calls are now
1272   instantaneous in case of GTK 2.x multi-line controls (Mart Raudsepp).
1273 - Added support for left, centre and right text alignment attributes under
1274   GTK+2 multi-line text controls (Mart Raudsepp).
1275 - Various wxFont improvements for GTK 2.x builds (Mart Raudsepp).
1276 - Changed order of child deletion in window destructor and
1277   removed focus handlers to avoid spurious events (David Surovell).
1278 - Fixed domain socket handling.
1279
1280 wxMac:
1281
1282 - First implementation of native HIToolbar support.
1283 - Added text control context menu (ported from wxMSW).
1284 - More CoreGraphics implementation improvements.
1285 - Various text control bug fixes.
1286 - Automatic menu management improved.
1287 - Fixed crash when wxRadioButton is deleted from a group of radio buttons,
1288   due to dangling cycle pointers.
1289 - Native spline drawing implementation for CoreGraphics (Robert J. Lang).
1290 - Made wxDialog::IsModal meaning the same as other ports (true only when
1291   showing modally).
1292
1293 wxOS2
1294
1295 - Adjustments for building with Open Watcom C++.
1296
1297 wxUniv:
1298
1299 - Window creation now honours wxVSCROLL.
1300 - Standalone scrollbars generate events of correct type (Jochen Roemmler).
1301
1302 wxMotif:
1303
1304 - Base library is now binary compatible when built with wxGTK and wxMotif.
1305 - wxMotif can now display Japanese text under Japanese locale.
1306 - Fixed button size in common dialogs.
1307 - Made wxFileDialog translatable.
1308 - All top level windows should now have a border unless the wxNO_BORDER
1309   flag has been specified.
1310 - Improved wxNotebook support for sizers. It requires the wxNotebook to
1311   be created with a "sensible" initial width.
1312 - Made wxDialog::IsModal meaning the same as other ports (true only when
1313   showing modally).
1314
1315 wxMGL:
1316
1317 - Fixed crash on exit.
1318 - Fixed drawing problems when windows are resized.
1319
1320 wxX11:
1321
1322 - Various wxFont improvements for unicode builds (Mart Raudsepp).
1323
1324
1325 2.6.1
1326 -----
1327
1328 All:
1329
1330 - Added wxLaunchDefaultBrowser.
1331 - Added wxPLURAL() macro in addition to _() (Jonas Rydberg)
1332
1333 All (GUI):
1334
1335 - Fixed potential infinite loop when adjusting wxScrolledWindow scrollbars.
1336 - Radio in menus do not send menu event for selections of already selected item.
1337 - Fixed wrong positioning of marks and enumerations in lists of wxHTML.
1338 - wxImage::Rotate90 respects alpha channel.
1339 - Added wxEVT_SCROLL_CHANGED as synonym for wxEVT_SCROLL_ENDSCROLL.
1340 - Replaced artwork for some cursors, icons and toolbar buttons.
1341 - Fixed sizing problem in generic wxCalendarCtrl for short day abbreviations.
1342 - Fixed wxWindow::DoGetBestSize to keep original best size.
1343 - PNM now supports ASCII and raw grey formats.
1344 - wxGrid focus and edit key improvements.
1345
1346 wxMSW:
1347
1348 - Fixed erroneous selection of content in wxComboBox when within a wxStaticBox
1349   (checking for selection caused by WM_STYLECHANGED).
1350 - Added deferred positioning to wxRadioBox, wxSlider and wxSpinCtrl and thereby
1351   eliminated some refresh glitches when resizing.
1352 - Eliminated further refresh glitches caused by wxRadioBox (to nearby controls)
1353   by refreshing parent when the radio box moves.
1354 - Added ability set the system option "msw.staticbox.optimized-paint" to 0 to
1355   allow a panel to paint graphics around controls within a static box.
1356 - Refresh exposed areas when resizing, using WM_WINDOWPOSCHANGED.
1357 - Worked around an apparent bug in deferred window positioning (moving a
1358   window from (x, y) to (a, b) and back to (x, y) misses the last step) by
1359   checking window positions against corresponding sizer state, if any.
1360 - A control's text colour now reflects the system colour setting.
1361 - Fixed wxFileName::GetLongPath() to behave correctly during the first call too.
1362 - Fixed alpha blitting to take into account source position.
1363 - Setting foreground colour for wxCheckBox now works when using XP themes too.
1364 - wxStaticBox label can use custom foreground colour.
1365 - Now uses newer font MS Shell Dlg 2 if possible.
1366 - Compiles again with WIN64.
1367 - Winelib compilation now works.
1368 - When converting a wxIcon to a bitmap check if the icon has an alpha
1369   channel and set the bitmap to use it.
1370 - wxSlider now also sends wxEVT_SCROLL_CHANGED when using mouse wheel
1371 - Miscellaneous wxMediaCtrl improvements.
1372 - wxTopLevelWindow::ShowFullScreen logic error fixed.
1373 - Fixed wxScrollBar background colour bug.
1374 - Fixed problems with paper sizes being ignored.
1375 - wxNotebook refresh problem fixed.
1376 - DDE fixed for Unicode.
1377 - Fixed ownerdrawn multiline buttons.
1378 - wxCheckListBox item background fixed.
1379 - Fixed error when trying to read a value from key not accessible for writing.
1380 - Fixed keyboard cue visibility issues under Windows 2000/XP
1381
1382 wxWinCE:
1383
1384 - Fixed wxFileName::CreateTempFileName.
1385
1386 wxGTK:
1387
1388 - Added support for wxSTAY_ON_TOP (GTK 2.4+).
1389 - Fixed wxTextCtrl::SetStyle for overlapping calls.
1390 - Fixed scrollbar border colour.
1391 - Added bitmap support in menus.
1392
1393 wxMac:
1394
1395 - Added support for launching 'APPL' bundles with wxExecute (usually they have a
1396   .app extension and are the ones that reside in the Applications folder).
1397 - Fixed a bug in wxGetKeyState where shift and some other keys were returning an
1398   incorrect state.
1399 - Fixed toolbar colour bug on Tiger.
1400 - Fixed visual problems caused by removal of About menu item.
1401 - Window menu now added automatically.
1402 - Configure fixed for wxBase compilation.
1403 - Modified function key support fixed.
1404 - wxTopLevelWindow::Maximize improvements.
1405
1406 wxX11:
1407
1408 - Menu problems fixed.
1409 - wxScrolledWindow scrolls any child windows.
1410 - Fixed a font memory leak.
1411 - Multiple wxTimers now work correctly.
1412
1413
1414 2.6.0
1415 -----
1416
1417 All:
1418
1419 - wxPathExists deprecated, use wxDirExists instead.
1420 - Configure: --enable-std_iostreams, --enable-std_string are now the default.
1421
1422 All (GUI):
1423
1424 - Fixed ~wxStatusBar and ~wxToolBar which tried to check
1425   non-existent wxFrameBase RTTI, causing a crash if not in a frame.
1426
1427 wxMSW:
1428
1429 - Fixed static box border when the label is empty.
1430 - Fixed SetBackgroundColour() to change only label background, not entire box.
1431 - wxHelpController is now aliased to wxCHMHelpController.
1432
1433 wxWinCE:
1434
1435 - Fixed device origin setting and clipping region setting.
1436
1437 wxGTK:
1438 - New configure syntax for specifying the GTK+ version.
1439     --with-gtk             Use GTK 2.x, no fallback
1440     --with-gtk=1           Use GTK 1.2, no fallback
1441     --with-gtk=2           Use GTK 2.x, no fallback
1442     --with-gtk=any         Use any available GTK
1443 - wxMenuItem::SetText() takes care of hotkeys, too.
1444 - Reworked text wrapping for wxStaticText.
1445
1446 wxMac:
1447 - Implemented most of the wxFileType and wxMimeTypesManager functions
1448
1449 2.5.5
1450 -----
1451
1452 All:
1453
1454 - wxURI::GetUser() only returns the user name now, use GetUserInfo() to get
1455   user and password as in 2.5.4; wxURI::GetPassword() added.
1456 - Added wxDebugReport class.
1457 - Added wxTempFileOutputStream by Stas Sergeev.
1458 - Fixed wxDateTime::SetToWeekDayInSameWeek(Sun, Monday_First).
1459 - Added WXK_SPECIAL keycodes for special hardware buttons.
1460 - Fixed bug with wxFile::Seek(-1, wxFromCurrent).
1461 - Added wxString/C array constructors to wxArrayString.
1462 - Added wxMemoryInputStream(wxMemoryOutputStream&) constructor (Stas Sergeev)
1463
1464 All (GUI):
1465
1466 - Added GetIcon, GetBitmap to wxImageList. wxGenericImageList's original
1467   GetBitmap is renamed GetBitmapPtr.
1468 - Added XPM data constructor to wxImage.
1469 - Added style parameter to wxBufferedDC to allow buffering just the client, or
1470   the whole virtual area.
1471 - Restored ability to set a custom splitter sash size with SetSashSize.
1472 - Fixed wxScrolledWindow sizer behaviour so that the virtual size
1473   isn't used to set the window size.
1474 - Added wxTE_BESTWRAP (based on patch by Mart Raudsepp).
1475 - wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED is now only sent once at the end of
1476   splitter dragging and not after each CHANGING event (Jacobo Vilella Vilahur).
1477 - Added wxImage::IsTransparent().
1478
1479 Unix:
1480
1481 - Fixed build on Linux/AMD64.
1482
1483 wxMSW:
1484
1485 - Added "orient" parameter to wxMDIParentFrame::Tile().
1486 - wxTextCtrl with wxTE_RICH2 style now uses RichEdit 4.1 if available.
1487 - fix handling Alt-key events in wxComboBox (reported by Joakim Roubert).
1488 - wxWindow::Refresh() refreshes the window children as well.
1489 - Improved static box and radio box refresh and background colour
1490   handling (Jamie Gadd).
1491
1492 wxGTK:
1493
1494 - Improved wxSystemSettings::GetMetric() to work better with X11 (Mart Raudsepp).
1495 - Corrected wxListBox selection handling.
1496 - Corrected default button size handling for different themes.
1497 - Corrected splitter sash size and look for different themes.
1498 - Fixed keyboard input for dead-keys.
1499 - Added support for more wrapping styles (Mart Raudsepp).
1500 - GTK2.4+ wxFileDialog reimplemented to support non-modal usage better,
1501   and fix all known bugs (Mart Raudsepp).
1502
1503 wxMac:
1504
1505 - Added wxFRAME_EX_METAL, wxDIALOG_EX_METAL for metallic-look windows.
1506
1507 wxPalmOS:
1508
1509 - Native wxRadioBox implementation.
1510
1511 wxWinCE:
1512
1513 - Added wxNB_FLAT for flat-look notebooks on Windows CE.
1514 - Titlebar OK button on PocketPC now sends command set by SetAffirmativeId.
1515   You can also override wxDialog::DoOK if you need more flexibility.
1516 - Dialog size now takes into account SIP or menubar.
1517 - Panels more naturally white on PocketPC.
1518 - wxDIALOG_EX_CONTEXTHELP ignored on WinCE since it interferes
1519   with correct titlebar style.
1520 - Frames have Ctrl+Q accelerator set automatically, as per the
1521   PocketPC guidelines
1522 - Documented issues in manual under wxWinCE topic.
1523 - Made (Un)RegisterHotKey WinCE-aware.
1524 - Sends wxEVT_HIBERNATE event.
1525 - Now fakes wxEVT_ACTIVATE_APP to be symmetrical with wxEVT_HIBERNATE.
1526 - Added wxTE_CAPITALIZE for CAPEDIT controls.
1527 - wxDialog::GetToolBar can be used if you need to add buttons
1528   to the dialog's toolbar.
1529
1530 2.5.4
1531 -----
1532
1533 All:
1534
1535 - wxEvent and derived classes don't have public members any more, you must
1536   use accessors methods now (Mart Raudsepp)
1537 - new classes for reading and writing ZIP files (M.J.Wetherell)
1538 - large files support for wxFFile (M.J.Wetherell)
1539 - classes in the manual are now cross-referenced (Zbigniew Zagórski)
1540 - Norwegian (BokmÃ¥l) translation added (Hans F. Nordhaug)
1541 - wxDynamicLibrary::HasSymbol() added
1542 - added wxEXEC_NODISABLE flag to be used with wxExecute(wxEXEC_SYNC)
1543 - added wxTextInputStream::operator>>(wchar_t) for compilers which support this
1544 - added wxURI, a class for dealing with Uniform Resource Identifiers
1545 - changed wxURL to inherit from wxURI and provide assignment and comparison
1546 - implemented wxConvUTF7 (modified patch from Fredrik Roubert)
1547 - added versions of MB2WC and WC2MB for wxMBConv that works for embedded null chars
1548 - Unicode support in wxODBC is now fully implemented
1549 - A new data type specific to wxWidgets called SQL_C_WXCHAR has been introduced.
1550   SQL_C_WXCHAR should be used rather than SQL_C_CHAR to ensure transparent
1551   behavior between Unicode and non-unicode builds
1552 - BLOB example added to samples/db (thanks to Casey O'Donnell)
1553 - use wxStream::GetLength() instead of deprecated GetSize()
1554 - wxGetOsDescription() is now more precise (Olly Betts)
1555 - XRC supports system fonts and colours (Ray Gilbert)
1556 - Added flags argument to wxKill/wxProcess::Kill to kill child processes.
1557 - Added wxPrintFactory classes so that it is possible to add a new
1558   print system backend at run-time. This was required by the new GNOME
1559   printing stuff in the GTK port.
1560 - Deprecated print setup dialog.
1561 - Added support to the wxODBC classes for Firebird 1.5 database
1562 - The samples/db sample program now includes an optional example of using a BLOB
1563   datatype (if BLOB support is enabled and supported by the database)
1564 - added wxDynamicLibrary::ListLoaded()
1565 - wxGetPowerType() and wxGetBatteryState() addition
1566 - wxSystemSettings::GetSystem*() members deprecated and replaced with
1567   wxSystemSettings::Get*()
1568 - wxWindowBase::DoGetBestSize now includes the difference (if any) between
1569   the client size and total size of the window.  Code that sets the
1570   client size using the best size, or that added extra space to sizers
1571   to compensate for this bug may need to be changed.
1572 - Changed calculation of scrolling area to not clip away some bits
1573   due to a rounding error.
1574 - Changed GetVirtualSize() to return client size by default until
1575   SetVirtualSize() gets called. From then on it will only return that.
1576 - Various changes to how wxListCtrl and wxTreeCtrl react to right
1577   mouse clicks and left mouse click for starting a drag operation.
1578 - "Alt" key (VK_MENU) now results in WXK_ALT keyboard event, not WXK_MENU
1579 - wxFFile::ReadAll() now takes an optional wxMBConv parameter
1580 - wxCommandProcessor::MarkAsSaved() and IsDirty() added (Angela Wrobel)
1581 - added wxStackWalker and related classes (Win32 and some Unix versions only)
1582
1583
1584 All (GUI):
1585
1586 - added wxMediaCtrl
1587 - added wxDatePickerCtrl
1588 - wxHtmlWindow now supports background images given in <body> tag
1589 - wxSplitterWindow now supports gravity parameter (Zbigniew Zagórski)
1590 - recursive wxSizer::GetItem returns item of given window, sizer or nth index
1591 - wxLayoutConstraints now use best size, not current size, for AsIs() condition
1592 - wxSizer::Add/Insert etc. now returns pointer to wxSizerItem just added and this
1593   item remembers its wxRect area (Brian A. Vanderburg II)
1594 - wxBookCtrl renamed to wxBookCtrlBase, wxBookCtrl is reserved for most native
1595   book control (for now wxChoicebook for MSSmartphone, wxNotebook for others).
1596   Necessary event macros, types and styles mapped accordingly.
1597 - new wxBrush::IsHatch() checking for brush type replaces IS_HATCH macro
1598 - wxProgressDialog accepts smooth gauge again (wxPD_SMOOTH style)
1599 - wxProgressDialog new style: wxPD_CAN_SKIP which provides skipping some parts
1600   of the progress (with new "Skip" button in dialog)
1601 - wxGenericListCtrl::SetItemState(-1) now changes the state of all items as
1602   in wxMSW version (Gunnar Roth)
1603 - added wxImage::InitAlpha()
1604
1605 Unix:
1606
1607 - wxPuts() now correctly outputs trailing new line in Unicode build
1608
1609 wxGTK:
1610
1611 - Added printing support by way of using libgnomeprint. The library
1612   now checks at runtime, if the library is installed and will use it
1613   if it is. Otherwise, it will fall back to the old PostScript printing
1614   code, from which the Pango drawing code was removed.
1615 - Implemented/improved wxDC::DrawRotatedText()
1616 - fixed wxFileDialog::SetWildcard()
1617 - native file dialog is now used if available (Zbigniew Zagorski)
1618 - implemented wxTextCtrl::Freeze() and Thaw(). The GtkTextBuffer
1619   is not a valid one during frozen state. Get a pointer to it right
1620   after wxTextCtrl creation if you really need to. (Mart Raudsepp)
1621 - Changed calls to GTK+ 2.4.x functions so that the code checks at
1622   runtime, which library version is installed so that these functions
1623   are only called with GTK+ 2.4.x installed and should yield linker
1624   errors otherwise.
1625 - wxTextCtrl text insertion efficiency fixed. (Mart Raudsepp)
1626 - Added wxRawBitmap support
1627 - Corrected Input method handler code (for Chinese etc.) and its
1628   interaction with wxWidgets' events.
1629 - wxTE_AUTO_URL implemention for wxGTK2 multiline wxTextCtrls (Mart Raudsepp)
1630
1631 wxMac:
1632
1633 - Vertical sliders oriented consistent with MSW/GTK (0 at top) (Kevin Hock)
1634 - wxDynamicLibrary::GetDllExt() now returns ".bundle", not ".dylib"
1635 - wxDynamicLibrary::GetSymbol() now prepends underscore to the symbol name
1636 - wxJoystick now works on OSX
1637
1638 wxMSW:
1639
1640 - fixed enhanced metafiles loading from files (Andreas Goebel)
1641 - wxRadioButtons no longer have to be consecutive in a group
1642 - fixed spurious selection of combobox text during resize
1643 - pass correct tool id (and not always -1) to EVT_TOOL_RCLICKED() handler
1644 - added wxRegKey::Export(file)
1645
1646 wxWinCE:
1647 - Added support for MS Handheld PC 2000. This was done before 2.5.4,
1648   but not mentioned anywhere.
1649 - Added (preliminary) support for sockets
1650
1651 wxUniv:
1652
1653 - wxBU_... button align flags support
1654 - vertical notebook orientation support
1655 - 3rd state support for checkboxes
1656 - wxLB_SORT and wxCB_SORT now cause case-insensitive sorting
1657
1658 wxPalmOS:
1659
1660 - William Osborne has won and new port was born
1661   (see: "wxPalmOS porting challenge")
1662 - polishing of the port (unnecessary 2.4 API compatibility, removed
1663   all wxMSW specific code which was base for the new port)
1664 - enumeration of available volumes
1665 - native wxPrefConfig around Preferences database
1666 - native wxProgressDialog implementation
1667 - native wxColourDialog implementation
1668 - native wxSystemSettings colours
1669 - native wxButton implementation
1670 - native wxCheckBox implementation
1671 - native wxSlider implementation
1672 - native wxToggleButton implementation
1673 - native wxRadioButton implementation
1674 - native wxStaticText implementation
1675 - native wxDatePickerCtrl implementation
1676
1677
1678 2.5.3
1679 -----
1680
1681 All:
1682
1683 - support for large (>2 Gb) files in wxFile (Tim Kosse)
1684 - number of fixes to wxPluginManager (Rick Brice, Hans Van Leemputten)
1685 - fixed memory leak in wxURL when using a proxy (Steven Van Ingelgem)
1686 - fixed bug in wxDateTime::Set(jdn) when DST was in effect
1687 - fixed fatal bug in wxString when wxUSE_STL==1 (Kurt Granroth)
1688 - support msgids in charsets other than C and languages other than English
1689   (based on patch by Stefan Kowski)
1690 - added wxMicroSleep() and wxMilliSleep() replacing deprecated wxUsleep()
1691 - basic UDP sockets support (Lenny Maiorani)
1692 - fixed wxDateTime::GetWeekDayName() for some dates (Daniel Kaps)
1693 - deprecated wxDateTime::SetToTheWeek() in favour of SetToWeekOfYear()
1694 - active mode support in wxFTP (Randall Fox)
1695 - sped up wxHTTP and wxFTP
1696 - added wxStringInput/OutputStreams
1697 - added wxFileConfig::Save(wxOutputStream)
1698 - fixed wxString's behavior with inserted null characters
1699
1700 All (GUI):
1701
1702 - added wxWindow::MoveBefore/AfterInTabOrder() to change tab navigation order
1703 - added wxTaskBarIcon::CreatePopupMenu which is now the recommended way
1704   of showing a popup menu; calling wxTaskBarIcon::PopupMenu directly
1705   is discouraged
1706 - added ..._CMD_...(id) variants for wxGrid event table entry macros
1707 - added wxWindow::Navigate for programmatic navigation to the next control
1708 - wxTextCtrl::OnChar now inserts a tab character if wxTE_PROCESS_TAB is set
1709 - added wxKeyEvent::GetUnicodeKey()
1710 - added wxKeyEvent::CmdDown() and wxMouseEvent::CmdDown()
1711 - implemented wxListCtrl::FindItem() for non-MSW (Robin Stoll)
1712 - added status bar fields styles support (Tim Kosse)
1713 - added convenience functions wxSizer::AddSpacer() and
1714   wxSizer::AddStretchSpacer() (as well as Prepend and Insert variants)
1715 - added samples/splash
1716 - added support for stock buttons
1717 - added wxTopLevelWindow::RequestUserAttention()
1718 - support for comma in contrib gizmo wxLEDNumberCtrl (Grant Likely)
1719 - recursive wxSizer::Show for subsizer and return value if element was found
1720 - added wxChoicebook control
1721 - smoother time estimation updates in wxProgressDialog (Christian Sturmlechner)
1722 - the XRC contrib library was moved to the core
1723 - wx(Choice/List/Note)book controls send CHANG(ED/ING) events in SetSelection
1724 - it is now possible to create a wxFont with given size in pixels (d2walter)
1725 - added wxTopLevelWindow::IsActive()
1726 - wxSystemSettings::GetMetric now returns -1 for metrics that are not
1727   supported, instead of zero.
1728 - IMPLEMENT_DYNAMIC_CLASS2 macro compilation fixed (Serge Bakkal)
1729
1730 Unix:
1731
1732 - wxTaskBarIcon now supports freedesktop.org System Tray protocol
1733 - security fixes to wxSingleInstanceChecker
1734 - wx-config script was modified to allow choosing from multiple installed
1735   builds of wxWidgets and to return flags/libs for selected libraries only
1736 - wx-config has new --version-full option
1737
1738 wxCocoa:
1739
1740 - added Unicode compatibility layer for OSX 10.2
1741 - fixed so that wxCocoa runs in OSX 10.2
1742 - Tooltips now supported
1743 - wxSound now supported
1744 - wxDisplay now supported
1745 - Some stock cursors now supported
1746
1747 wxMac:
1748
1749 - fixed MLTE text control GetLineText and GetLineLength on OSX
1750 - added OSX wxTaskBarIcon implementation for the OSX Dock
1751 - added Unicode compatibility layer for OSX 10.2
1752 - wxGetKeyState now works with nearly all wx key codes
1753
1754 wxGTK:
1755
1756 - wxGTK uses GTK+ 2.x by default now, you have to pass --disable-gtk2 to
1757   configure if you want to use GTK+ 1.2
1758 - fixed many rendering artifacts and wrong colours with lots of GTK+ themes
1759 - implemented wxColourDialog as native dialog
1760 - implemented wxTextCtrl::HitTest() (GTK+ >= 2)
1761 - implemented wxTextCtrl::ScrollLines() and ScrollPages for GTK+ 2.x
1762 - wxTreeCtrl::GetCount() counts root as well now (compatible with MSW)
1763 - added support for wxCHK_3STATE style (GTK2 only)
1764 - implemented text underlining under GTK2
1765 - implemented wxFRAME_NO_TASKBAR style (GTK >= 2.2)
1766 - implemented support for wxSYS_DCLICK_?, wxSYS_DRAG_? and wxSYS_CURSOR_?
1767   in wxSystemSettings::GetMetric (Mart Raudsepp)
1768 - implemented wxTopLevel::IsMaximized() for GTK+2 and WMs that implement
1769   freedesktop.org's wm-spec (Mart Raudsepp)
1770 - wxEVT_CONTEXT_MENU is now generated for right mouse press, not release
1771 - implemented alpha channel support in wxBitmap
1772 - added native GTK+2 wxArtProvider implementation with ability to load
1773   icons from icon theme in addition to recognized stock art
1774 - fixed crash on 64 bit platforms (Paul Cornett)
1775
1776 wxMotif:
1777
1778 - added support for wxCHK_3STATE style (3 state checkbox)
1779
1780 wxMSW:
1781
1782 - fixed UNC paths handling in wxFileSystem (Daniel Nash)
1783 - set wxKeyEvent::m_uniChar in Unicode build
1784 - support for alpha channel in toolbar bitmaps (Jurgen Doornik)
1785 - wxFileDialog can now be moved and centered (Randall Fox)
1786 - restored (and improved) possibility to use wx with MFC broken in 2.5.2
1787 - fixed wxTextCtrl::SetMaxLength for rich edit controls
1788 - fixed flat style for toolbars under XP, Windows Classic style
1789 - fixed truncation of transferred data in wxConnection under unicode build
1790 - wxChoice and wxComboBox dropdown background can be set now too (Adrian Lupei)
1791 - fixed wxMaximizeEvent generation in wxFrame
1792 - don't send duplicate EVT_COMBOBOX events whenever selection changes any more
1793 - implemented support for selecting printer bin (Steven Van Ingelgem)
1794 - fixed wxListCtrl::SetSingleStyle() which was broken since a few releases
1795 - fixed print setup problem (always uses default printer) in Unicode build
1796
1797 wxUniv/X11:
1798
1799 - fixed fatal crash when opening a menu
1800
1801 wxWinCE:
1802
1803 - added native WinCE driven smartphone wxTextCtrl implementation using spinners
1804 - added native WinCE driven smartphone wxChoice implementation using spinners
1805 - added automated but customizable handling of native WinCE driven smartphone menus
1806 - fixed wxRadioBox and wxStaticBox
1807
1808 wxHTML:
1809
1810 - added support for nested index entries and index entries pointing to more
1811   than one page to wxHtmlHelpController
1812
1813
1814 2.5.2
1815 -----
1816
1817 All:
1818
1819 - Hindi translation added (Dhananjaya Sharma)
1820 - Brazilian Portuguese translation added (E. A. Tacao)
1821 - wxDynamicCast() now uses static_cast<wxObject *> internally and so using it
1822   with anything not deriving from wxObject will fail at compile time (instead
1823   of run-time) now
1824 - when wxUSE_STL == 1 and STL provides quasi-standard hash_map/hash_set,
1825   wxHashMap/wxHashSet are just typedefs for them. This makes impossible
1826   to forward declare these classes.
1827
1828 All (GUI):
1829
1830 - wxHtmlWindow now delays image scaling until rendering,
1831   resulting in much better display of scaled images
1832 - Added UpdateSize to wxSplitterWindow to allow layout while hidden
1833 - implemented Freeze/Thaw() for wxGenericTreeCtrl (Kevin Hock)
1834 - support for KOI8-U encoding added (Yuriy Tkachenko)
1835 - The old wxADJUST_MINSIZE behaviour is now the default behaviour for
1836   sizer items that are windows.  This means that GetAdjustedBestSize
1837   will now be called by default to determine the minimum size that a
1838   window in a sizer should have.  If you want to still use the initial
1839   size (and not the BestSize) then use the wxFIXED_MINSIZE flag.  When
1840   windows are added to a sizer their initial size is made the window's
1841   min size using SetSizeHints, and calls to wxSizer::SetItemMinSize
1842   are also forwarded to SetSizeHints for window items.
1843 - added wxRegEx::GetMatchCount()
1844 - it is now possible to display images in wxHtmlListBox
1845
1846 wxMSW:
1847
1848 - wxWindow::Freeze()/Thaw() can now be nested
1849 - Added wxSP_NO_XP_THEME style to wxSplitterWindow to switch off
1850   XP theming (some applications look bad without 3D borders)
1851 - wxMenuBar::GetLabelTop() doesn't include '&'s in the label any more
1852 - wxRegConf couldn't read global settings without admin privileges and didn't
1853   even try to do it by default -- now it does
1854 - wxTaskBarIcon must be explicitly destroyed now, otherwise the application
1855   won't exit even though there are no top level windows
1856 - wxFileName::GetModificationTime() works with opened files too now
1857 - wxDC::GetClippingBox() now works even for clipping regions created by Windows
1858 - fixed wxFileDataObject in Unicode build (Alex D)
1859 - subindented paragraphs support (Tim Kosse)
1860
1861 wxGTK:
1862
1863 - added support for wxTE_RIGHT and wxTE_CENTRE styles under GTK2 (Mart Raudsepp)
1864
1865 wxMotif:
1866
1867 - removed wxMenuItem::DeleteSubMenu()
1868 - wxButtons use Motif default size, which is smaller than it used to be
1869   and closer to wxMSW/wxGTK look. This can be disabled by setting
1870   motif.largebuttons system option to 1 (see wxSystemOptions).
1871
1872 wxUniv/X11:
1873
1874 - implemented DrawRoundedRectangle() (clawghoul)
1875
1876 wxHTML:
1877
1878 - improved tables and lists layout algorithms (Tim Kosse)
1879 - <div> handling fix (Xavier Nodet)
1880
1881 Unix:
1882
1883 - fixed priorities of mailcap entries (David Hart)
1884 - added "wx-config --libs=std,<extra>" syntax (i.e. support for "std")
1885
1886 wxODBC:
1887
1888 - Full Unicode support is now available
1889 - BLOB support is working
1890
1891
1892 2.5.1
1893 -----
1894
1895 All:
1896
1897 - event table macros now do some minimal type safety checks (Michael Sögtrop)
1898 - added wxGzipInput/OutputStream, bug fixes in wxZlibStreams (M.J.Wetherell)
1899 - wxDateTime::ParseDateTime() implemented (Linus McCabe)
1900 - wxHTTP::GetResponse() added (David Nock)
1901 - added conversions to/from UTF 16/32 LE/BE (Andreas Pflug)
1902 - added wxTextInputStream::ReadChar() (M.J.Wetherell)
1903 - added translation to Afrikaans (Petri Jooste)
1904 - Spanish translations updated (Javier San Jose)
1905 - added gettext plural forms support to wxLocale (Michael N. Filippov)
1906 - wxFileName::Normalize(wxPATH_NORM_ALL) doesn't lower filename case any more
1907 - wxFileName::Normalize(wxPATH_NORM_ENV_VARS) now works
1908 - check if file exists in wxFileConfig::DeleteFile() (Christian Sturmlechner)
1909 - when wxUSE_STL == 1 wxHashTable will not be implemented using wxHashMap
1910   (as in 2.5.0).
1911 - added some extra convenience functions to wxRect such as
1912   GetBottomRight (Hajo Kirchhoff)
1913 - changed built-in regex library to a Unicode-compatible version based
1914   on TCL sources (Ryan Norton, M. J. Wetherell)
1915 - added extra convenience functions to wxPoint for adding a
1916   wxSize (Wlodzimierz Skiba)
1917 - intermediate wxIPaddress class added to prepare for
1918   wxIPV6address (Ray Gilbert)
1919 - added overloaded constructors and Create() methods taking wxArrayString
1920   for wxChoice, wxComboBox, wxListBox, wxRadioBox, wxCheckListBox,
1921   wxSingleChoiceDialog, wxMultipleChoiceDialog
1922 - renamed wxWave class to wxSound
1923
1924 All (GUI):
1925
1926 - added 3-state checkboxes for MSW/Mac (Dimitri Schoolwerth)
1927 - added some support for C++ exceptions in the library (do read the manual!)
1928 - added wxListCtrl::GetViewRect()
1929 - added wxTextCtrl::MarkDirty()
1930 - wxToolBar::ToggleTool() now works for radio buttons (Dag Ã…gren)
1931 - wxListCtrl now sends an END_LABEL event if editing was cancelled, too
1932 - bug in wxRect ctor from two [out of order] wxPoints fixed (Steve Cornett)
1933 - status text is now restored after wxMenu help is shown in it
1934 - bug in wxWindow::RemoveEventHandler() fixed (Yingjun Zhang)
1935 - make it possible to use wxRTTI macros with namespaces (Benjamin I. Williams)
1936 - wxColourDatabase API now uses objects instead of pointers
1937 - added resolution option to JPEG image handler (Jeff Burton)
1938 - added wxCalendarEvent::SetDate, wxCalendarEvent::SetWeekDay
1939 - wxGenericDirCtrl now accepts multiple wildcards
1940 - added focus event forwarding to wxGrid (Peter Laufenberg)
1941 - fixed scrollbar problem in wxGrid (not showing scrollbars
1942   when sizing smaller) (Shane Harper)
1943 - dbbrowse demo fixed for Unicode (Wlodzimierz Skiba)
1944 - added wxStatusBar support to XRC (Brian Ravnsgaard Riis)
1945 - wxMenu::Append and etc. return a pointer to the wxMenuItem that was
1946   added or inserted, or NULL on failure.
1947 - using a -1 (wxID_ANY) for menu or toolbar item IDs will now generate new id
1948 - added option to generate C++ headers to wxrc utility (Eduardo Marques)
1949 - added wxDC::DrawPolyPolygon() for MSW/PS (Carl-Friedrich Braun)
1950 - wxBufferedDC now allows to preserve the background and is documented
1951 - added wxDC::GetPartialTextExtents
1952
1953 wxMSW:
1954
1955 - wxWidgets now builds under Win64
1956 - fixed DDE memory leaks
1957 - fixed wxTE_*WRAP styles handling
1958 - wxTextCtrl::GetValue() works with text in non default encoding
1959 - changed wxCrashReport to generate minidumps instead of text files
1960 - wxRadioButtons are now checked when they get focus (standard behaviour)
1961 - several fixes to owner drawn menu items (Christian Sturmlechner)
1962 - wxGauge now supports full 32 bit range (Miroslav Rajcic)
1963 - make it possible to give focus to the notebook tabs (Hajo Kirchhoff)
1964 - MDI child frames are not always resizeable any more (Andrei Fortuna)
1965 - fixed enumerating of entries/groups under '/' in wxRegConfig
1966 - added wxSYS_ICONTITLE_FONT (Andreas Pflug)
1967 - added wxPATH_NORM_SHORTCUT to wxFileName
1968 - wxComboBox::GetValue within a wxEVT_COMMAND_TEXT_UPDATED event
1969   should now pass the correct value even if the handler for
1970   wxEVT_COMMAND_COMBOBOX_SELECTED changed the selection
1971 - wxFileDialog now returns correct filter index for multiple-file dialogs
1972 - added wxTextCtrl::HitTest()
1973 - experimental wxURL implementation using WinInet functions (Hajo Kirchhoff)
1974 - fixed several bugs in wxNotebook with wxNB_MULTILINE style
1975 - accelerators are now initially hidden if appropriate (Peter Nielsen)
1976 - background colour of a wxComboBox may now be set
1977 - fixed wxListCtrl::GetItemText/BackgroundColour()
1978 - Esc can now be used to close menus in the dialogs (Hartmut Honisch)
1979 - Added msw.remap system option so colourful toolbar buttons
1980   aren't mangled if you set it to 0. The default is 1
1981 - Toolbar buttons are now centred if the bitmap size is smaller
1982   than the specified default size
1983 - Fixed a bug in wxSpinCtrl::DoGetBestSize that would make wxSpinCtrl too tall
1984
1985 wxGTK:
1986
1987 - fixes to wxTextCtrl scrolling under GTK2 (Nerijus Baliunas)
1988 - fix for crash when using user-dashed lines (Chris Borgolte)
1989 - fixed wxChoice::Delete() in presence of client data
1990 - allow calling wxWindow::SetFont if window not yet created
1991 - use same average character width as other ports when calculating dialog units
1992 - fixed mouse wheel handling under GTK2 (Hugh Fisher)
1993 - wxNotebook::HitTest() implemented (Daniel Lundqvist)
1994 - memory leaks fixes in wxFileDialog (John Labenski)
1995 - don't drop click events from triple clicks (Frode Solheim)
1996
1997 wxMac:
1998
1999 - use same average character width as other ports when calculating dialog units
2000 - implemented handling of mouse wheel
2001 - fix for long file names (longer than 32 characters) in file dialogs
2002 - use Unix sockets for Mach-o builds
2003
2004 wxMotif:
2005
2006 - look for Motif 2.1 headers before Motif 1.2 ones in configure
2007
2008 wxHTML:
2009
2010 - wxHtmlHelpController now supports compressed MS HTML Help files (*.chm)
2011   on Unix (Markus Sinner)
2012
2013 Unix:
2014
2015 - added XFree86 resolution changing using xf86vidmode extensions (Ryan Norton)
2016 - implemented asynchronous playback in wxSound and added SDL backend in
2017   addition to existing OSS one
2018 - it is now possible to send PostScript to any output stream (Zoltan Kovacs)
2019
2020
2021 2.5.0
2022 -----
2023
2024 All:
2025
2026 - It is now possible to build several smaller libraries instead of single
2027   huge wxWidgets library; wxBase is now dependency of GUI ports rather then
2028   separately compiled library
2029 - added wxDateSpan::operator==() and !=() (Lukasz Michalski)
2030 - added wxFileName::GetForbiddenChars() (Dimitri Schoolwerth)
2031 - use true/false throughout the library instead of TRUE/FALSE
2032 - wxStopWatch::Start() resumes the stop watch if paused, as per the docs
2033 - added wxDirTraverser::OnOpenError() to customize the error handling
2034 - added wxArray::SetCount()
2035 - wxFile, wxFFile, wxTextFile and wxTempFile now all use UTF-8 encoding
2036   by default in Unicode mode
2037 - bug in wxDateTime with timezones on systems with tm_gmtoff in struct tm fixed
2038 - added wx/math.h (John Labenski)
2039 - added Catalan translations (Pau Bosch i Crespo)
2040 - added Ukrainian translations (Eugene Manko)
2041 - fixed bug with deleting entries at root level in wxFileConfig
2042 - chkconf.h now includes platform-specific versions (for MSW
2043   and Mac) which contain some tests that were in setup.h
2044 - added event sink argument to wxEvtHandler::Connect()
2045 - added support for POST method and alt ports to wxHTTP (Roger Chickering)
2046 - added wxSocket::IPAddress() (Chris Mellon)
2047 - wxDataStreams can read/write many elements at once (Mickael Gilabert)
2048 - added wxRecursionGuard class
2049 - added wxThreadHelper class (Daniel Howard)
2050 - Added STL support (--enable-stl for configure, wxUSE_STL in setup.h).
2051   When enabled, wxString will derive from std::string, wxArray from,
2052   std::vector, wxList from std::list. In addition wxHashTable will be
2053   implemented in terms of wxHashMap.
2054 - Added wxList::compatibility_iterator. Can be used like wxNode* (except
2055   it can't be delete()d). It permits writing code which will work
2056   both with wxUSE_STL==1 and wxUSE_STL==0.
2057
2058 wxBase:
2059
2060 - added Watcom makefiles
2061 - fixed bug with searching in sorted arrays (Jürgen Palm)
2062
2063 All GUI ports:
2064
2065 - added wxVScrolledWindow, wxVListBox and wxHtmlLbox classes
2066 - added wxListbook control
2067 - added alpha channel support to wxImage
2068 - added wxRenderer class allowing to customize the drawing of generic controls
2069 - added wxCLOSE_BOX style for dialogs and frames
2070 - added wxSplitterWindow and wxWizard handlers to XRC
2071 - wxWizard is now sizer-friendly and may be made resizeable (Robert Vazan)
2072 - added proportion to wxFlexGridSizer::AddGrowableRow/Col (Maxim Babitski)
2073 - added wxFlexGridSizer::SetFlexibleDirection() (Szczepan Holyszewski)
2074 - implemented GetEditControl for wxGenericTreeCtrl (Peter Stieber)
2075 - improved contrib/utils/convertrc parsing (David J. Cooke)
2076 - fixed handling of URLs and filenames in wxFileSystem
2077 - implemented alignment for wxGrid bool editor and renderer
2078 - support wxListCtrl columns alignment for all platforms and not just MSW
2079 - added wxToolBar Add/InsertTool(tool) (Janusz Piwowarski)
2080 - added wxTB_HORZ_TEXT style for MSW and GTK (Axel Schlueter)
2081 - fixed user dash handling for MSW and GTK (Ken Edwards)
2082 - WXR resources can now be used in Unicode builds
2083 - it is now possible to use several wxFileHistory objects in the same menu
2084   by giving them different base IDs (Dimitri Schoolwerth)
2085 - Added wxTLW::SetShape with implementations for wxMSW and wxGTK (so far)
2086 - FL: removed const from EnableTool parameters
2087 - FL: signal child window when toolbar is closed
2088 - In various places, changed tests for pathsep on last char of string to call
2089   wxEndsWithPathSeparator(s)
2090 - Added to defs.h a couple of macros (wxPtrToULong & wxULongToPtr)
2091 - Minor improvements to document/view framework, including
2092   delayed deletion of a document (until after the user has chosen
2093   a new document), and more intelligent addition of filenames to
2094   the file history, including not adding filenames if not using the
2095   default extension for the template
2096 - sped up wxImage::Scale using fixed point arithmetic (Wade Brainerd)
2097 - Added BLOB support to wxDB (John Skiff)
2098 - wxWizard now validates when pressing Back or Next
2099 - Implemented wxNotebook::DoGetBestSize so Fit now works
2100 - Added FindItemByPosition to wxMenu
2101 - wxTimer now derives from wxEvtHandler and is its own owner object by default
2102 - Extended wxTextAttr and added wxTextCtrl::GetStyle stub
2103   to allow better rich text support.
2104 - implemented wxFlexGridSizer::Show() (Wade Brainerd)
2105 - Added m_ prefix to wxColourData and wxFontData members
2106 - Added wxHtmlPrintout::AddFilter so HTML printing can be subject to
2107   custom filters as well as HTML viewing.
2108 - Moved wxApp::SendIdleEvents and wxApp::ProcessIdle into common code.
2109 - wxWindow::OnInternalIdle is now used in all ports, and ensures that
2110   user OnIdle events do not interfere with crucial internal processing.
2111 - wxWindow::UpdateWindowUI is now a documented function that
2112   sends wxUpdateUIEvents, and can be overridden. It has a helper function
2113   DoUpdateWindowUI for taking appropriate wxUpdateUIEvent action.
2114 - Added functions to wxUpdateUIEvent: Set/GetMode, Set/GetUpdateInterval,
2115   CanUpdate, to assist with optimising update event frequency.
2116 - Added functions to wxIdleEvent: Set/GetMode, CanSend, to
2117   determine whether a window should receive idle events.
2118 - Added wxWS_EX_PROCESS_IDLE, wxWS_EX_PROCESS_UI_UPDATES window
2119   styles for use with conservative idle and update event modes.
2120 - send menu update events only when a menu is about to be used (MSW/GTK)
2121 - improved event processing performance (Hans Van Leemputten)
2122 - added wxMirrorDC class
2123 - printing improvements: GetPageInfo() gets called after the DC has
2124   been set and after OnPreparePrinting() has been called so it can
2125   report the number of pages accurately; doesn't try to set
2126   number of pages in print dialog, in common with other Windows apps;
2127   wxHTML easy printing's preview shows number of pages
2128   correctly; preview scrollbars are set correctly; keyboard navigation
2129   improved
2130
2131 Unix:
2132
2133 - fixed compilation on systems with zlib installed but < 1.1.3 version
2134 - fixed compilation on Solaris 7 with large files support enabled
2135 - added wxTaskBarIcon implementation for X11
2136 - added support for GNU/Hurd in configure
2137 - wxLocale::Init now tries to set .utf8 locale in Unicode mode (Andreas Pflug)
2138
2139 Generic controls:
2140
2141 - implemented wxListCtrl::Refresh() (Norbert Berzen)
2142 - support adding/removing columns dynamically (Donald C. Taylor)
2143 - wxToolBarSimple, property list classes, wxTreeLayout moved
2144   to contrib/src/deprecated
2145
2146 wxGTK:
2147
2148 - added support for label mnemonics to GTK+2 build (Michael Moss)
2149 - added native wxMessageDialog implementation for GTK+2 build
2150 - fixed wxMenu::Remove (John Skiff and Benjamin Williams)
2151 - made wxTextCtrl::EmulateKeyPress() work for Delete and Backspace
2152 - fixed wxTopLevelWindow::ShowFullScreen to work with kwin, IceWM and
2153   window managers that support _NET_WM_STATE_FULLSCREEN
2154 - added wxEVT_MENU_OPEN event generation
2155 - fixed bug in generic file selector causing incomplete file extensions to
2156   be appended to filenames with no extension
2157 - added wxTextCtrl::SetSelection implementation for GTK+ 2
2158 - fixed wxTextCtrl::IsEditable() for GTK+ 2
2159 - fixed wxStaticText alignment for GTK+ 2 (Kevin Hock)
2160 - don't consume 100% CPU when showing a popup menu
2161
2162 wxMac:
2163
2164 - generate wxEVT_SCROLL_THUMBRELEASE and wxEVT_SCROLLWIN_THUMBRELEASE events
2165 - generate wxEVT_MENU_OPEN and wxEVT_MENU_CLOSE events
2166
2167 wxMSW:
2168
2169 - possibility to use DIBs for wxBitmap implementation (Derry Bryson)
2170 - added wxCrashReport
2171 - wxStaticBitmap doesn't stretch its bitmap any longer (like other ports)
2172 - support for accelerator keys in the owner drawn menus (Derry Bryson)
2173 - wxCaret::SetSize() doesn't hide the caret any longer as it used to
2174 - wxCheckListBox::Check() doesn't send CHECKLISTBOX_TOGGLE event any more
2175 - fixed bugs in wxThread::Wait() and IsAlive()
2176 - fixed bug with wxTR_EDIT_LABELS not working with wxTR_MULTIPLE
2177 - fixes for compilation with OpenWatcom and DigitalMars compilers
2178 - fixed wxStaticText best size calculation (was wrong by '&' width)
2179 - fixed calling wxFrame::Maximize(FALSE) before the window is shown
2180 - added wxNotebook::HitTest() (Otto Wyss)
2181 - libraries built with makefile.g95 have a _min or _cyg suffix (MinGW/Cygwin)
2182 - when using DLL, wxLocalFSHandler was not being exported
2183 - fixed problem with wxEvtHandler object not removed from wxPendingEvents
2184 - Windows XP manifest is now included in wx.rc; it is no longer necessary
2185   to ship .exe.manifest file with applications to support XP themes
2186 - wxLocale::Init no longer reports error if trying to set Unicode-only locale
2187   or if user's default locale is Unicode-only
2188 - improved border handling under Windows XP
2189 - partial fix for wxNotebook pages looking bad under XP: wxUSE_UXTHEME
2190   enables XP theme engine code, and wxUSE_UXTHEME_AUTO tells
2191   wxWidgets to use the theme tab colour for control backgrounds.
2192 - disable wxNB_RIGHT, wxNB_LEFT, wxNB_BOTTOM notebook styles under Windows XP
2193 - fixed release mode build with VC 7.x (Martin Ecker)
2194 - added support for wxALWAYS_SHOW_SB style
2195 - you don't need to add opengl32.lib when using VC++ now (David Falkinder)
2196
2197 wxMotif:
2198
2199 - made wxFileDialog behaviour with complex wildcards more sensible (it still
2200   does not support all the features other ports do); refer to wxFileDialog
2201   documentation for a detailed explanation
2202 - implemented wxWakeUpIdle
2203 - for Motif 2.0, used the native combobox widget instead of the GPL'd
2204   xmcombo; xmcombo is still used for Motif 1.x and Lesstif when compiled
2205   with Motif 1.x compatibility
2206 - implemented wxToggleButton
2207 - wxRadioBox and wxStaticBox now use the default shadow (border) style
2208   instead of a sunken border
2209 - implemented wxBitmapDataObject
2210 - finished wxClipboard implementation
2211
2212 wxUniv:
2213
2214 - controls in toolbars now supported
2215
2216 wxHTML:
2217
2218 - added text selection to wxHtmlWindow
2219 - added SetFonts to HTML printing classes (Adrian Philip Look)
2220 - it is now possible to force page break when printing by inserting
2221   <div style="page-break-before:always"> into the markup (Greg Chicares)
2222 - wxHtmlWindow now uses double buffering to prevent flicker
2223
2224
2225 OLD CHANGES
2226 ===========
2227
2228 INCOMPATIBLE CHANGES SINCE 2.2.x
2229 ================================
2230
2231     Please take a few minutes to read the following list, especially
2232     paying attention to the most important changes which are marked
2233     with '!' in the first column.
2234
2235     Also please note that you should ensure that WXWIN_COMPATIBILITY_2_2
2236     is defined to 1 if you wish to retain maximal compatibility with 2.2
2237     series -- however you are also strongly encouraged to try to compile
2238     your code without this define as it won't be default any longer in
2239     2.6 release.
2240
2241     NB: if you want to build your program with different major versions
2242         of wxWidgets you will probably find the wxCHECK_VERSION() macro
2243         (see the documentation) useful.
2244
2245
2246 wxBase:
2247
2248 ! wxArray<T>::Remove(size_t) has been removed to fix compilation problems
2249   under 64 bit architectures, please replace it with RemoveAt() in your
2250   code.
2251
2252 ! wxArray<T> macros have been changed to fix runtime problems under 64 bit
2253   architectures and as a side effect of this WX_DEFINE_ARRAY() can only be
2254   used now for the pointer types, WX_DEFINE_ARRAY_INT should be used for the
2255   arrays containing non-pointers.
2256
2257 - wxObject::CopyObject() and Clone() methods were removed because they
2258   simply don't make sense for all objects
2259
2260 - wxEvent now has a pure virtual Clone() method which must be implemented
2261   by all derived classes, if you have user-defined event classes please
2262   add "wxEvent *Clone() const { return new MyEvent(*this); }" line to them
2263
2264 - small change to wxStopWatch::Pause() semantics, please see the documentation
2265
2266 - unlikely but possible incompatibility: the definition of TRUE has changed
2267   from "1" to "(bool)1" (and the same thing for FALSE), so the code which
2268   could be erroneously compiled previously such as doing "return FALSE" from
2269   a function returning a pointer would stop compiling now (but this change
2270   is not supposed to have any effects on valid code)
2271
2272 - another minor change: wxApp::OnAssert() has a new "cond" argument, you
2273   must modify YourApp::OnAssert() signature if you were using it to override
2274   the default assert handling.
2275
2276 All (GUI):
2277
2278 ! the event type constants are not constants any more but are dynamically
2279   allocated during run-time which means that they can't be used as case labels
2280   in the switch()es, you must rewrite them to use if()s instead
2281
2282   You may also define WXWIN_COMPATIBILITY_EVENT_TYPES to get the old behaviour
2283   but this is strongly discouraged, please consider changing your code
2284   instead!
2285
2286 ! wxDialog does not derive from wxPanel any longer - if you were using it in
2287   your code, please update it. The quick fix for the most cases is to replace
2288   the occurrences of wxPanel with wxWindow.
2289
2290 ! if you handle (and don't skip) EVT_KEY_DOWN, the EVT_CHAR event is not
2291   generated at all, so you must call event.Skip() in your OnKeyDown() if
2292   you want to get OnChar() as well
2293
2294 - in general, the key events sent for the various non ASCII key combinations
2295   have been changed to make them consistent over all supported platforms,
2296   please see the wxKeyEvent documentation for details
2297
2298 - wxYES_NO is now wxYES | wxNO and the manifest values of both wxYES and wxNO
2299   have changed (to fix some unfortunate clashes), please check your code to
2300   ensure that no tests for wxYES or wxNO are broken: for example, the following
2301   will *NOT* work any longer:
2302
2303         if ( flags & wxYES_NO )
2304                 ... do something ...
2305         if ( flags & wxYES )
2306                 ... do something else ...
2307
2308 - static wxWizard::Create() doesn't exist any more, the wizards are created
2309   in the same way as all the other wxWindow objects, i.e. by directly using
2310   the ctor
2311
2312 - wxGLCanvas now derives directly from wxWindow, not wxScrolledWindow
2313
2314 - wxGridCellAttrProvider class API changed, you will need to update your code
2315   if you derived any classes from it
2316
2317 - wxImage::ComputeHistogram()'s signature changed to
2318   unsigned long ComputeHistogram(wxImageHistogram&) const
2319
2320 - wxEvtHandler cannot be copied/assigned any longer - this never worked but
2321   now it results in compile-time error instead of run-time crashes
2322
2323 - WXK_NUMLOCK and WXK_SCROLL keys no longer result in EVT_CHAR() events,
2324   they only generate EVT_KEY_DOWN/UP() ones
2325
2326 - the dialogs use wxApp::GetTopWindow() as the parent implicitly if the
2327   parent specified is NULL, use wxDIALOG_NO_PARENT style to prevent this
2328   from happening
2329
2330 - several obsolete synonyms are only retained in WXWIN_COMPATIBILITY_2_2 mode:
2331   for example, use wxScrolledWindow::GetViewStart() now instead of ViewStart()
2332   and GetCount() instead of Number() in many classes
2333
2334 - wxCmdLineParser does not use wxLog to output messages anymore.
2335   to obtain the previous behaviour, add
2336   wxMessageOutput::Set(new wxMessageOutputLog); to your program
2337   (you will need to #include <wx/msgout.h>)
2338
2339 wxMSW:
2340
2341 ! build system changed: setup.h is not a static file in include/wx any more
2342   but is created as part of the build process under lib/<toolkit>/wx
2343   where <toolkit> is of the form (msw|univ)[dll][u][d]. You'll need to update
2344   the include path in your make/project files appropriately. Furthermore,
2345   xpm.lib is no longer used by wxMSW, it was superseded by the wxXPMDecoder
2346   class. You'll need to remove all references to xpm.lib from your
2347   make/project files. Finally, the library names have changed as well and now
2348   use the following consistent naming convention: wxmsw[ver][u][d].(lib|dll)
2349   where 'u' appears for Unicode version, 'd' -- for the debug one and version
2350   is only present for the DLLs builds.
2351
2352 - child frames appear in the taskbar by default now, use wxFRAME_NO_TASKBAR
2353   style to avoid it
2354
2355 - all overloads of wxDC::SetClippingRegion() combine the given region with the
2356   previously selected one instead of replacing it
2357
2358 - wxGetHomeDir() uses HOME environment variable and if it is set will not
2359   return the programs directory any longer but its value (this function has
2360   never been meant to return the programs directory anyhow)
2361
2362 - wxHTML apps don't need to include wx/html/msw/wxhtml.rc in resources file
2363   anymore. The file was removed from wxMSW
2364
2365
2366 Unix ports:
2367
2368 ! You should use `wx-config --cxxflags` in your makefiles instead of
2369   `wx-config --cflags` for compiling C++ files. CXXFLAGS contains CFLAGS
2370   and the compiler flags for C++ files only, CFLAGS should still be used
2371   to compile pure C files.
2372
2373
2374 wxThread and related classes:
2375
2376 - The thread-related classes have been heavily changed since 2.2.x versions
2377   as the old code had many serious problems. This could have resulted in
2378   semantical changes other than those mentioned here, please review use of
2379   wxThread, wxMutex and wxCondition classes in your code.
2380
2381 ! wxCondition now *must* be used with a mutex, please read the (updated) class
2382   documentation for details and revise your code accordingly: this change was
2383   unfortunately needed as it was impossible to ensure the correct behaviour
2384   (i.e. absence of race conditions) using the old API.
2385
2386 - wxMutex is not recursive any more in POSIX implementation (it hasn't been
2387   recursive in 2.2.x but was in 2.3.1 and 2.3.2), please refer to the class
2388   documentation for the discussion of the recursive mutexes.
2389
2390 - wxMutex::IsLocked() doesn't exist any more and should have never existed:
2391   this is was unique example of a thread-unsafe-by-design method.
2392
2393
2394 OTHER CHANGES
2395 =============
2396
2397 2.4.0
2398 -----
2399
2400 wxMSW:
2401
2402 - fixed loss of client data in wxChoice::SetString()
2403
2404 2.3.4
2405 -----
2406
2407 All:
2408
2409 - added (partial) Indonesian translations (Bambang Purnomosidi D. P.)
2410 - added wxSizer::Show()/Hide() (Carl Godkin)
2411 - fixed bugs in wxDateTime::SetToWeekDay()/GetWeek()
2412
2413 Unix (Base/GUI):
2414
2415 - minor OpenBSD compilation/linking fixes, now builds OOB under OpenBSD 3.1
2416 - don't include -I/usr/include nor -I/usr/local/include in wx-config output
2417 - shared library symbols are now versioned on platforms that support it (Linux)
2418
2419 wxGTK:
2420 - Further work for GTK 2.0 and Unicode support.
2421 - Addition of native frame site grip.
2422
2423 wxX11:
2424 - Unicode support through Pango library.
2425
2426 wxMSW:
2427
2428 - fixed crashes in wxListCtrl under XP
2429 - added context menu for rich edit wxTextCtrl
2430
2431 wxHTML:
2432
2433 - fixed wxHTML to work in Unicode build
2434
2435 2.3.3
2436 -----
2437
2438 wxBase:
2439
2440 - building wxBase with Borland C++ is now supported (Michael Fieldings)
2441 - wxSemaphore class added, many fixed to wxCondition and wxThread (K.S. Sreeram)
2442 - fixes to the command line parsing error and usage messages
2443 - modified wxFileName::CreateTempFileName() to open the file atomically
2444   (if possible) and, especially, not to leak the file descriptors under Unix
2445 - memory leak in wxHTTP fixed (Dimitri Schoolwerth)
2446 - fixes to AM_PATH_WXCONFIG autoconf macro
2447 - added wxHashMap class that replaces type-unsafe wxHashTable and is modelled
2448   after (non standard) STL hash_map
2449 - wxLocale now works in Unicode mode
2450 - wxLocale can now load message catalogs in arbitrary encoding
2451 - added wxShutdown() function (Marco Cavallini)
2452 - added wxEXPLICIT macro
2453 - IPC classes improved and memory leaks fixed (Michael Fielding).
2454   Global buffer removed, duplication in docs removed
2455 - debug new/free implementations made thread-safe
2456
2457 Unix (Base/GUI):
2458
2459 - wxWidgets may be built using BSD and Solaris (and possibly other) make
2460   programs and not only GNU make
2461 - wxTCP-based IPC classes now support communicating over Unix domain sockets
2462 - wxWidgets may be built as a dynamic shared library under Darwin / Mac OS X
2463   lazy linking issues have been solved by linking a single module (.o) into
2464   the shared library (two step link using distrib/mac/shared-ld-sh)
2465 - fixed thread priority setting under Linux
2466
2467 All (GUI):
2468
2469 - it is now possible to set the icons of different sizes for frames (e.g. a
2470   small and big ones) using the new wxIconBundle class
2471 - implemented radio menu items and radio toolbar buttons
2472 - added possibility to show text in the toolbar buttons
2473 - added wxArtProvider class that can be used to customize the look of standard
2474   wxWidgets dialogs
2475 - significantly improved native font support
2476 - wxImage::ComputeHistogram() now uses wxImageHistogram instead of type-unsafe
2477   wxHashTable
2478 - added IFF image handler
2479 - fixed using custom renderers in wxGrid which was broken in 2.3.2
2480 - support for multiple images in one file added to wxImage
2481   (TIFF, GIF and ICO formats)
2482 - support for CUR and ANI files in wxImage added (Chris Elliott)
2483 - wxTextCtrl::GetRange() added
2484 - added wxGetFontFromUser() convenience function
2485 - added EVT_MENU_OPEN and EVT_MENU_CLOSE events
2486 - added Hungarian translations (Janos Vegh)
2487 - added wxImage::SaveFile(filename) method (Chris Elliott)
2488 - added wxImage::FloodFill and implemented wxWindowDC::DoFloodFill method
2489   for GTK+, Mac, MGL, X11, Motif ports (Chris Elliott)
2490 - added (platform-dependent) scan code to wxKeyEvent (Bryce Denney)
2491 - added wxTextCtrl::EmulateKeyPress()
2492 - Added wxMouseCaptureChangedEvent
2493 - Added custom character filtering to wxTextValidator
2494 - wxTreeCtrl now supports incremental keyboard search
2495 - wxMessageOutput class added
2496 - wxHelpProvider::RemoveHelp added and called from ~wxWindowBase
2497   so that erroneous help strings are no longer found as the hash
2498   table fills up
2499 - updated libpng from 1.0.3 to 1.2.4
2500 - Added wxView::OnClosingDocument so the application can do cleanup.
2501 - generic wxListCtrl renamed to wxGenericListCtrl, wxImageList
2502   renamed to wxGenericImageList, so they can be used on wxMSW
2503   (Rene Rivera).
2504 - Added wxTreeEvent::IsEditCancelled so the application can tell
2505   whether a label edit was cancelled.
2506 - added static wxFontMapper::Get() accessor
2507
2508 wxMSW:
2509
2510 - small appearance fixes for native look under Windows XP
2511 - fixed the bug related to the redrawing on resize introduced in 2.3.2
2512 - fixed multiple bugs in wxExecute() with IO redirection
2513 - refresh the buttons properly when the window is resized (Hans Van Leemputten)
2514 - huge (40*) speed up in wxMask::Create()
2515 - changing wxWidgets styles also changes the underlying Windows window style
2516 - wxTreeCtrl supports wxTR_HIDE_ROOT style (George Policello)
2517 - fixed flicker in wxTreeCtrl::SetItemXXX()
2518 - fixed redraw problems in dynamically resized wxStaticText
2519 - improvements to wxWidgets applications behaviour when the system colours
2520   are changed
2521 - choose implicit parent for the dialog boxes better
2522 - fixed wxProgressDialog for ranges > 65535
2523 - wxSpinButton and wxSpinCtrl now support full 32 bit range (if the version
2524   of comctl32.dll installed on the system supports it)
2525 - wxFontEnumerator now returns all fonts, not only TrueType ones
2526 - bugs in handling wxFrame styles (border/caption related) fixed
2527 - showing a dialog from EVT_RADIOBUTTON handler doesn't lead to an infinite
2528   recursion any more
2529 - wxTextCtrl with wxTE_RICH flag scrolls to the end when text is appended to it
2530 - the separators are not seen behind the controls added to the toolbar any more
2531 - wxLB_SORT style can be used with wxCheckListBox
2532 - wxWindowDC and wxClientDC::GetSize() works correctly now
2533 - Added wxTB_NODIVIDER and wxTB_NOALIGN so native toolbar can be used in FL
2534 - Multiline labels in buttons are now supported (simply use "\n" in the label)
2535 - Implemented wxMouseCaptureChangedEvent and made wxGenericDragImage check it
2536   has the capture before release it.
2537 - fixed bugs in multiple selection wxCheckListBox
2538 - default button handling is now closer to expected
2539 - setting tooltips for wxSlider now works
2540 - disabling a parent window also disables all of its children (as in wxGTK)
2541 - multiple events avoided in wxComboBox
2542 - tooltip asserts avoided for read-only wxComboBox
2543 - fixed a race condition during a thread exit and a join
2544 - fixed a condition where a thread can hang during message/event processing
2545 - increased space between wxRadioBox label and first radio button
2546 - don't fail to register remaining window classes if one fails to register
2547 - wxFontDialog effects only turned on if a valid colour was
2548   provided in wxFontData
2549 - Added wxTE_LEFT, wxTE_CENTRE and wxTE_RIGHT flags for text control alignment.
2550 - Bitmap printing uses 24 bits now, not 8.
2551
2552 wxGTK:
2553
2554 - wxDirDialog now presents the file system in standard Unix way
2555 - wxButton now honours wxBU_EXACTFIT
2556 - wxStaticBox now honours wxALIGN_XXX styles
2557 - added support for non alphanumeric simple character accelerators ('-', '=')
2558 - new behaviour for wxWindow::Refresh() as it now produces a delayed refresh.
2559   Call the new wxWindow::Update() to force an immediate update
2560 - support for more SGI hardware (12-bit mode among others)
2561 - fixed wxDC::Blit() to honour source DC's logical coordinates
2562 - implemented wxIdleEvent::RequestMore() for simple background tasks
2563 - implemented wxChoice::Delete()
2564 - fixed bad memory leak in wxFileDialog (Chris Elliott)
2565 - made internal GC pool dynamically growable
2566 - added GTK+ 2 and Unicode support
2567
2568 wxMotif:
2569
2570 - improved colour settings return values (Ian Brown)
2571 - improved border style handling for wxStaticText (Ian Brown)
2572 - improved toolbar control alignment
2573 - implemented wxSpinButton
2574 - implemented wxCheckListBox
2575 - fixed wxSpinCtrl and wxStaticLine when used with sizers
2576 - wxStaticBitmap now shows transparent icons correctly
2577
2578 wxX11:
2579
2580 - added generic MDI implementation (Hans Van Leemputten)
2581 - first cut at wxSocket support (not yet working)
2582
2583 wxMac:
2584
2585 - Many improvements
2586
2587 wxOS2:
2588
2589 - First alpha-quality release
2590
2591 wxHTML:
2592
2593 - fixed wxHtmlHelpController's cache files handling on big endian machines
2594 - added blocking and redirecting capabilities to wxHtmlWindow via
2595   wxHtmlWindow::OnOpeningURL()
2596 - fixed alignment handling in tables
2597 - fixed <font face="..."> handling to be case insensitive
2598
2599 2.3.2
2600 -----
2601
2602 New port: wxUniv for Win32/GTK+ is now included in the distribution.
2603
2604 wxBase:
2605
2606 - wxRegEx class added
2607 - wxGetDiskSpace() function added (Jonothan Farr, Markus Fieber)
2608 - wxTextBuffer and wxTextFile(wxStream) added (Morten Hanssen)
2609 - more fixes to wxMBConv classes. Conversion to and from wchar_t now works with
2610   glibc 2.2 as well as with glibc 2.1. Unix version now checks for iconv()'s
2611   capabilities at runtime instead of in the configure script.
2612
2613 All (GUI):
2614
2615 - support for virtual list control added
2616 - column images in report mode of the list control
2617 - wxFindReplaceDialog added (based on work of Markus Greither)
2618 - wxTextCtrl::SetMaxLength() added (wxMSW/wxGTK)
2619 - polygon support in wxRegion (Klaas Holwerda)
2620 - wxStreamToTextRedirector to allow easily redirect cout to wxTextCtrl added
2621 - fixed bug with using wxExecute() to capture huge amounts of output
2622 - new wxCalendarCtrl styles added (Søren Erland Vestø)
2623 - wxWizard changes: loading from WXR support, help button (Robert Cavanaugh)
2624 - wxDirSelector() added (Paul A. Thiessen)
2625 - wxGrid cell editing veto support (Roger Gammans)
2626 - wxListCtrl ITEM_FOCUSED event added
2627 - support for ICO files in wxImage added (Chris Elliott)
2628 - improvements to wxDragImage (Chuck Messenger)
2629
2630 wxMSW:
2631
2632 - support for the DBCS fonts (CP 932, 936, 949, 950) (Nathan Cook)
2633 - new library naming convention under VC++ -- please change your application
2634   project files
2635
2636 wxGTK:
2637
2638 - fixed popup menu positioning bug
2639 - fixed the edit function for wxListCtrl (Chuck Messenger)
2640 - fixed the key-hitting events for wxListCtrl and wxTreeCtrl, so they
2641   correctly return the key which was pressed (Chuck Messenger)
2642
2643 wxMac:
2644
2645 - support for configuration and build under Mac OS X using the Apple Developer
2646   Tools
2647
2648 wxHTML:
2649
2650 - new HTML parser with correct parsing of character entities and fixes
2651   to tags parsing
2652 - added support for animated GIFs
2653
2654 2.3.1
2655 -----
2656
2657 wxBase:
2658
2659 - Fixes for gcc 3.0
2660 - Fixed new charset detection code
2661 - ODBC Informix fixes (submitted by Roger Gammans)
2662 - Added ODBC date support to wxVariant
2663 - Added wxDir::Traverse
2664 - Added wxSingleInstanceChecker class
2665 - Removed redundant wxDebugContext functions using C++ streams,
2666   so now standard stream usage should be unnecessary
2667
2668 All (GUI):
2669
2670 - Added wxDbGrid class for displaying ODBC tables
2671 - Added EVT_GRID_EDITOR_CREATED and wxGridEditorCreatedEvent so the
2672   user code can get access to the edit control when it is created, (to
2673   push on a custom event handler for example)
2674 - Added wxTextAttr class and SetStyle, SetDefaultStyle and
2675   GetDefaultStyle methods to wxTextCtrl
2676 - Added wxSingleInstanceChecker
2677 - Improvements to Tex2RTF
2678 - Added Paul and Roger Gammans' grid controls
2679 - Bug in wxDocument::Save logic corrected, whereby Save didn't save when not
2680   first-time saved
2681 - Fixed memory leak in textcmn.cpp
2682 - Various wxXML enhancements
2683 - Removed wxCLIP_CHILDREN style from wxSplitterWindow
2684 - Fixed memory leak in DoPrint, htmprint.cpp
2685 - Fixed calendar sample bug with using wxCommandEvent::GetInt()
2686   instead of GetId()
2687 - Added wxDbGrid combining wxODBC classes with wxGrid
2688 - Added more makefiles and project files for contrib hierarchy
2689
2690 wxMSW:
2691
2692 - Fixed wxApp::ProcessMessage so controls don't lose their
2693   accelerators when the accelerators are redefined elsewhere
2694 - Accelerators consisting of simple keystrokes (without control,
2695   alt or shift) now work
2696 - Compile fixes for Watcom C++ added
2697 - Compile fixes for Cygwin 1.0 added
2698 - Use SetForegroundWindow() in wxWindow::Raise() instead of BringWindowToTop()
2699 - Replaced wxYield() call in PopupMenu() by a much safer
2700   wxYieldForCommandsOnly() - fixes tree ctrl popup menu bug and other ones
2701 - Enter processing in wxSpinCtrl fixed
2702 - Fixed bug in determining the best listbox size
2703 - Fix for wxFrame's last focus bug
2704 - We now send iconize events
2705 - Fixed wxFrame::SetClientSize() with toolbar bug
2706 - Added mousewheel processing
2707 - Added wxSystemSettings::Get/SetOption so we can configure
2708   wxWidgets at run time; used this to implement no-maskblt option
2709   in wxDC
2710 - Fixed bug when using MDIS_ALLCHILDSTYLES style: so now MDI
2711   child frame styles are honoured
2712
2713 wxGTK:
2714
2715 - Fixed slider rounding bug
2716 - Added code to set wxFont's default encoding to wxLocale::GetSystemEncoding()
2717 - We now send iconize events
2718 - Fix for discrepancies between wxNotebookEvent and wxNotebook
2719   GetSelection() results
2720
2721 2.3.0
2722 -----
2723
2724 wxBase:
2725
2726 - fixed problem with wxURL when using static version of the library
2727 - wxZipFSHandler::FindFirst() and FindNext() now correctly list directories
2728 - wxMimeTypesManager now can create file associations too (Chris Elliott)
2729 - wxCopyFile() respects the file permissions (Roland Scholz)
2730 - wxFTP::GetFileSize() added (Søren Erland Vestø)
2731 - wxDateTime::IsSameDate() bug fixed
2732 - wxTimeSpan::Format() now behaves more as expected, see docs
2733 - wxLocale now provides much more convenient API for setting language and
2734   detecting current system language. New API is more abstracted and truly
2735   cross-platform, independent of underlying C runtime library.
2736
2737 All (GUI):
2738
2739 - new wxToggleButton class (John Norris, Axel Schlueter)
2740 - wxCalendarCtrl not highlighting the date with time part bug fixed
2741 - wxADJUST_MINSIZE sizer flag added
2742 - FindOrCreateBrush/Pen() bug fix for invalid colour values
2743 - new wxXPMHandler for reading and writing XPM images
2744 - added new (now recommended) API for conversion between wxImage and wxBitmap
2745   (wxBitmap::ConvertToImage() and wxBitmap::wxBitmap(wxImage&) instead of
2746   wxImage methods and ctor)
2747 - ODBC classes now support DB2, Interbase, and Pervasive SQL
2748 - ODBC documentation complete!!
2749 - ODBC classes have much Unicode support added, but not complete
2750 - ODBC experimental BLOB support added, but not completely tested
2751 - ODBC NULL column support completed (Roger/Paul Gammans)
2752 - ODBC All "char *" and char arrays removed and replaced with wxString use
2753
2754 wxMSW:
2755
2756 - threads: bug in wxCondition::Broadcast fixed (Pieter van der Meulen)
2757 - fixed bug in MDI children flags (mis)handling
2758 - it is possible to compile wxCHMHelpController with compilers
2759   other than Visual C++ now and hhctrl.ocx is loaded at runtime
2760
2761 wxGTK:
2762
2763 - added support for wchar_t (wxUSE_WCHAR_T) under Unix
2764
2765 wxHTML:
2766
2767 - mew feature, wxHtmlProcessor for on-the-fly modification of HTML markup
2768 - visual enhancements to contents panel of wxHtmlHelpController
2769
2770 2.2.0
2771 -----
2772
2773 wxBase:
2774
2775 - Fixed bug with directories with trailing (back)slashes in wxPathExists
2776 - wxString: added wxArrayString::operator==() and !=()
2777 - Fixes for wxCmdLineParser
2778 - Added wxGetLocalTimeMillis
2779 - Completed Czech translations
2780 - Some stream corrections
2781 - added missing consts to wxPoint operators
2782 - wxDateTime ParseFormat fixes
2783 - wxFile::Open(write_append) will create file if it doesn't exist
2784 - small fixes to MIME mailcap test command handling, more MIME tests in the sample
2785
2786 All (GUI):
2787
2788 - wxGenericDragImage now allows virtual image drawing, and
2789   flicker-free dragging is now possible
2790 - Added wxPrinter::GetLastError
2791 - Fixed wxLogGui reentrancy problem
2792 - Paper names now translated
2793 - wxGrid fixes
2794 - Generic validator now caters for more cases (integers in
2795   wxTextCtrl, strings in wxChoice, wxComboBox)
2796 - Fixed crash when docview On... functions return FALSE. Show
2797   error message when an non-existent filename is typed into the Open
2798   File dialog.
2799 - Corrected Baltic font encoding handling
2800 - wxImage: enhanced TIFF code, added new platform-independent BMP
2801   writing code
2802 - wxKeyEvent::GetKeyCode() and HasModifiers() added and documented
2803 - Fixed wxPropertyForm crashes in sample
2804 - wxWizard now calls TransferDataFromWindow() before calling
2805   wxWizardPage::GetNext() fixing an obvious bug
2806
2807 wxMSW:
2808
2809 - wxWindow::GetCharWidth/Height now calculated accurately.
2810   This will affect all .wxr dialog resources, so for
2811   backward compatibility, please set
2812   wxDIALOG_UNIT_COMPATIBILITY to 1 in setup.h
2813 - wxListCtrl: set item text in LIST_ITEM_ACTIVATED events
2814 - wxTextCtrl: implemented setting colours for rich edit controls
2815 - wxColour now accepts both grey and gray
2816 - BC++ DLL compilation fixed
2817 - Watcom C++ makefiles improved for JPEG and TIFF compilation
2818 - Fixed submenu accelerator bug
2819 - Fixed dialog focus bug (crash if the previous window to have
2820   the focus was destroyed before the dialog closed)
2821 - Too-small default wxTextCtrl height fixed
2822 - fixed "missing" initial resize of wxMDIChildFrame
2823 - wxFrame restores focus better
2824 - Now ignore wxTHICK_FRAME in wxWindow constructor: only relevant to
2825   frames and dialogs, interferes with other window styles otherwise
2826   (sometimes you'd get a thick frame in a subwindow)
2827 - wxTextCtrl insertion point set to the beginning of the control by SetValue
2828 - Fix so wxMDIParentFrame is actually shown when Show(TRUE) is called.
2829 - wxFileDialog: adjusts struct size if there's an error (struct
2830   sizes can be different on different versions of Windows)
2831 - wxImageList::GetSize() documented and added to wxMSW
2832 - fixed default dialog style to make them non resizeable again
2833 - fixed wxFrame::IsShown() which always returned TRUE before
2834
2835 wxGTK:
2836
2837 - Please see docs/gtk/changes.txt.
2838
2839 wxMotif:
2840
2841 - Small compilation fixes
2842
2843 Documentation:
2844
2845 - wxCaret documented
2846
2847 2.1.16
2848 ------
2849
2850 wxBase:
2851
2852 All (GUI):
2853
2854 wxMSW:
2855
2856 - Various bug fixes
2857 - Added wxCHMHelpController, for invoking MS HTML Help
2858   files. This works under VC++ only
2859 - Modal dialog handling improved
2860 - Printer dialog now modal
2861
2862 wxGTK:
2863
2864 - Various bug fixes
2865
2866 wxMotif:
2867
2868 - Various bug fixes
2869
2870 2.1.15
2871 ------
2872
2873 Documentation:
2874
2875 - Added docs/tech for technical notes
2876
2877 File hierarchy:
2878
2879 - Started new contrib hierarchy that mirrors
2880   the main lib structure; moved OGL and MMedia into it
2881
2882 wxBase:
2883
2884 - wxSocket support
2885 - wxDateTime replaces and extends old wxDate and wxTime classes (still
2886   available but strongly deprecated) with many new features
2887 - wxLongLong class provides support for (signed) 64 bit integers
2888 - wxCmdLineParser class for parsing the command line (supporting short and
2889   long options, switches and parameters of different types)
2890 - it is now possible to build wxBase under Win32 (using VC++ only so far)
2891   and BeOS (without thread support yet)
2892 - wxThread class modified to support both detached and joinable threads, also
2893   added new GetCPUCount() and SetConcurrency() functions (useful under Solaris
2894   only so far)
2895 - wxDir class for enumerating files in a directory
2896 - wxLog functions are now (more) MT-safe
2897 - wxStopWatch class, timer functions have more chances to return correct
2898   results for your platform (use ANSI functions where available)
2899 - wxString::ToLong, ToULong, ToDouble methods and Format() static one added
2900 - buffer overflows in wxString and wxLog classes fixed (if snprintf() function
2901   is available)
2902 - wxArray::RemoveAt() replaces deprecated wxArray::Remove(index)
2903
2904 all (GUI):
2905
2906 - Added wxImage::Rotate.
2907 - new wxCalendarCtrl class for picking a date interactively
2908 - wxMenu(Bar)::Insert() and Remove() functions for dynamic menu management
2909 - wxToolBar supports arbitrary controls (not only buttons) and can be
2910   dynamically changed (Delete/Insert functions)
2911 - vertical toolbars supported by MSW and GTK native wxToolBar classes
2912 - wxTreeCtrl and wxListCtrl allow setting colour/fonts for individual items
2913 - "file open" dialog allows selecting multiple files at once (contributed by
2914   John Norris)
2915 - wxMimeTypesManager uses GNOME/KDE MIME database to get the icons for the
2916   MIME types if available (Unix only)
2917 - wxDC::DrawRotatedText() (based on contribution by Hans-Joachim Baader)
2918 - TIFF support added (libtiff required and included in the distribution)
2919 - PCX files can now be written (256 and 24 bits)
2920 - validators may work recursively if wxWS_EX_VALIDATE_RECURSIVELY is set
2921 - wxScrolledWindow now has keyboard interface
2922 - wxTextEntryDialog may be used for entering passwords (supports wxTE_PASSWORD)
2923 - added wxEncodingConverter and improved wxFontMapper
2924   for dealing with conversions between different encodings,
2925   charsets support in wxLocale and wxHTML
2926 - wxDragImage class added
2927 - samples/help improved to show standard and advanced HTML help
2928   controllers, as well as native help
2929 - moved wxTreeLayout class to main lib
2930
2931 wxMSW:
2932
2933 - wxFrame::MakeFullScreen added.
2934 - support for enhanced metafiles added, support for copying/pasting metafiles
2935   (WMF and enhanced ones) fixed/added.
2936 - implemented setting colours for push buttons
2937 - wxStatusBar95 may be now used in dialogs, panels (not only frames) and can be
2938    positioned along the top of the screen and not only at the bottom
2939 - wxTreeCtrl::IsVisible() bug fixed (thanks to Gary Chessun)
2940 - loading/saving big (> 32K) files in wxTextCtrl works
2941 - tooltips work with wxRadioBox
2942 - wxBitmap/wxIcon may be constructed from XPM included into a program, as in
2943   Unix ports
2944 - returning FALSE from OnPrintPage() aborts printing
2945 - VC++ makefiles and project files made (mostly) consistent
2946 - wxSetCursorEvent added
2947
2948 wxGTK:
2949
2950 - wxFontMapper endless recursion bug (on some systems) fixed
2951 - wxGTK synthesizes wxActivateEvents
2952 - UpdateUI handlers may be used with wxTextCtrl
2953
2954 wxMotif:
2955
2956 - wxMenu::Enable works
2957 - wxToolBar bugs fixed
2958 - OGL samples made to work again
2959
2960 wxHTML:
2961
2962 - almost complete rewrite of wxHtmlHelpController,
2963   including faster search, bookmarks, printing, setup dialog
2964   and cross-platform binary compatible .cached files for faster
2965   loading of large helpbooks, case insensitive search
2966   split into 3 parts: wxHtmlHelpData, Frame and Controller
2967 - added support for charsets and <meta> tag
2968 - added support for font faces and justified paragraphs,
2969   taken some steps to prepare wxHTML for frames
2970 - added dynamic pushing/popping of wxHtmlParser tag handlers
2971 - improved HTML printing
2972 - added extensive table of HTML characters substitutions (&nbsp; etc.)
2973 - fixed wxHtmlWindow flickering, several minor bugfixes
2974 - added some tags: <address>, <code>, <kbd>, <samp>, <small>, <big>,
2975   fixed handling of relative and absolute font sizes in <font size>
2976
2977
2978 NOTE: for changes after wxWidgets 2.1.0 b4, please see the CVS
2979 change log.
2980
2981 2.1.0, b4, May 9th 1999
2982 -----------------------
2983
2984 wxGTK:
2985
2986 - JPEG support added.
2987 - Many fixes and changes not thought worth mentioning in this file :-)
2988
2989 wxMSW:
2990
2991 - wxNotebook changes: can add image only; wxNB_FIXEDWIDTH added;
2992   SetTabSize added.
2993 - JPEG support added.
2994 - Fixes for Cygwin compilation.
2995 - Added wxGA_SMOOTH and wxFRAME_FLOAT_ON_PARENT styles.
2996 - Many fixes people didn't tell this file about.
2997
2998 wxMotif:
2999
3000
3001 General:
3002
3003 - Some changes for Unicode support, including wxchar.h/cpp.
3004
3005
3006 2.0.1 (release), March 1st 1999
3007 -------------------------------
3008
3009 wxGTK:
3010
3011 - wxGLCanvas fixes.
3012 - Slider/spinbutton fixes.
3013
3014 wxMSW:
3015
3016 - Fixed problems with <return> in dialogs/panels.
3017 - Fixed window cursor setting.
3018 - Fixed toolbar sizing and edge-clipping problems.
3019 - Some makefile fixes.
3020
3021 wxMotif:
3022
3023 - None.
3024
3025 General:
3026
3027 - Added wxUSE_SOCKETS.
3028 - More topic overviews.
3029 - Put wxPrintPaperType, wxPrintPaperDatabase into
3030   prntbase.h/cpp for use in non-PostScript situations
3031   (e.g. Win16 wxPageSetupDialog).
3032
3033
3034 Beta 5, February 18th 1999
3035 --------------------------
3036
3037 wxGTK:
3038
3039 - wxExecute improved.
3040
3041 wxMSW:
3042
3043 - Fixed wxWindow::IsShown (::IsWindowVisible doesn't behave as
3044   expected).
3045 - Changed VC++ makefiles (.vc) so that it's possible to have
3046   debug/release/DLL versions of the library available simultaneously,
3047   with names wx.lib, wx_d.lib, wx200.lib(dll), wx200_d.lib(dll).
3048 - Added BC++ 5 IDE files and instructions.
3049 - Fixed wxChoice, wxComboBox constructor bugs (m_noStrings initialisation).
3050 - Fixed focus-related crash.
3051
3052 wxMotif:
3053
3054 - Cured asynchronous wxExecute crash.
3055 - Added repaint event handlers to wxFrame, wxMDIChildFrame.
3056
3057 General:
3058
3059 - wxLocale documented.
3060 - Added include filenames to class reference.
3061 - wxHelpController API changed: SetBrowser becomes SetViewer,
3062   DisplaySection works for WinHelp, help sample compiles under Windows
3063   (though doesn't display help yet).
3064
3065 Beta 4, February 12th 1999
3066 --------------------------
3067
3068 wxGTK:
3069
3070 - Miscellaneous fixes.
3071
3072 wxMSW:
3073
3074 - Makefiles for more compilers and samples; Cygwin makefiles
3075   rationalised.
3076 - Added VC++ project file for compiling wxWidgets as DLL.
3077
3078 wxMotif:
3079
3080 - Added OnEraseBackground invocation.
3081 - Added wxRETAINED implementation for wxScrolledWindow.
3082 - Cured scrolling display problem by adding XmUpdateDisplay.
3083 - Tried to make lex-ing in the makefile more generic (command line
3084   syntax should apply to both lex and flex).
3085 - Changed file selector colours for consistency (except for buttons:
3086   crashes for some reason).
3087 - Fixed wxMotif version of wxImage::ConvertToBitmap (used new instead
3088   of malloc, which causes memory problems).
3089
3090 General:
3091
3092 - Further doc improvements.
3093 - wxGenericValidator added.
3094 - Added wxImageModule to image.cpp, so adds/cleans up standard handlers
3095   automatically.
3096
3097 Beta 3, January 31st 1999
3098 -------------------------
3099
3100 wxGTK:
3101
3102 - wxClipboard/DnD API changes (still in progress).
3103 - wxToolTip class added.
3104 - Miscellaneous fixes.
3105
3106 wxMSW:
3107
3108 - wxRegConfig DeleteAll bug fixed.
3109 - Makefiles for more compilers.
3110 - TWIN32 support added.
3111 - Renamed VC++ makefiles from .nt to .vc, and
3112   factored out program/library settings.
3113 - Fixed wxIniConfig bug.
3114
3115 wxMotif:
3116
3117 - A few more colour fixes.
3118 - wxGLCanvas and OpenGL samples working.
3119 - Some compiler warnings fixed.
3120 - wxChoice crash fix.
3121 - Dialog Editor starting to work on Motif.
3122
3123 General:
3124
3125 - wxBusyCursor class added.
3126 - Added samples/dde.
3127 - More doc improvements, incl. expanding docs/html/index.htm.
3128
3129 Beta 2, January 1999
3130 --------------------
3131
3132 wxGTK:
3133
3134 wxMSW:
3135
3136 - 16-bit BC++ compilation/linking works albeit without the resource system.
3137
3138 wxMotif:
3139
3140 - Cured wxScreenDC origin problem so e.g. sash window sash is drawn at
3141   the right place.
3142 - Cured some widget table clashes.
3143 - Added thread support (Robert).
3144 - wxPoem sample now works.
3145
3146 General:
3147
3148 - Rearranged documentation a bit.
3149 - Sash window uses area of first frame/dialog to paint over when drawing
3150   the dragged sash, not just the sash window itself (it clipped to the right
3151   or below).
3152 - Made resource sample use the correct Cancel button id.
3153 - Moved wxProp to main library (generic directory), created proplist
3154   sample.
3155 - Added bombs and fractal samples.
3156
3157 Beta 1, December 24th 1998
3158 --------------------------
3159
3160 wxGTK:
3161
3162 - Various
3163
3164 wxMSW, wxMotif: not in sync with this release.
3165
3166
3167 Alpha 18, December 29th 1998
3168 ----------------------------
3169
3170 wxMSW:
3171
3172 - Win16 support working again (VC++ 1.5)
3173 - Win16 now uses generic wxNotebook, wxListCtrl,
3174   wxTreeCtrl -- more or less working now, although
3175   a little work on wxNotebook is still needed.
3176   Under 16-bit Windows, get assertion when you click
3177   on a tab.
3178 - Wrote 16-bit BC++ makefiles: samples don't yet link.
3179 - Added CodeWarrior support to distribution courtesy
3180   of Stefan Csomor.
3181
3182 wxMotif:
3183
3184 - Cured scrolling problem: scrollbars now show/hide themselves
3185   without (permanently) resizing the window.
3186 - Removed some commented-out lines in wxScrolledWindow::AdjustScrollbars
3187   that disabled scrollbar paging.
3188 - Set background colour of drawing area in wxWindow, so e.g. wxListCtrl
3189   colours correctly.
3190 - Removed major bug whereby dialogs were unmanaged automatically
3191   when any button was pressed.
3192 - Fixed colours of wxWindow scrollbars, made list and text controls
3193   have a white background.
3194 - Fixed dialog colour setting.
3195 - Added settable fonts and colours for wxMenu/wxMenuBar. Now
3196   they have sensible colours by default.
3197 - Fixed a bug in wxStaticBox.
3198 - Cured wxTreeCtrl bug: now works pretty well!
3199 - Debugged DrawEllipticArc (a ! in the wrong place).
3200 - Added SetClippingRegion( const wxRegion& region ).
3201 - Added wxPoint, wxSize, wxRect versions of SetSize etc.
3202
3203 Alpha 17, November 22nd 1998
3204 ----------------------------
3205
3206 wxMSW:
3207
3208 - More documentation updates, especially for
3209   wxLayoutWindow classes and debugging facilities.
3210 - Changed wxDebugContext to use wxDebugLog instead
3211   of wxTrace.
3212 - Now supports VC++ 6.0, and hopefully BC++ 5.0.
3213   However, DLL support may be broken for BC++ since
3214   VC++ 6 required changing of WXDLLEXPORT keyword
3215   position.
3216 - Numerous miscellaneous changes.
3217
3218 wxMotif:
3219
3220 - Reimplemented MDI using wxNotebook instead of the MDI widgets, which
3221   were too buggy (probably not design for dynamic addition/removal of
3222   child frames).
3223 - Some improvements to the wxNotebook implementation.
3224 - wxToolBar now uses a bulletin board instead of a form, in an attempt
3225   to make it possible to add ordinary wxControls to a toolbar.
3226 - Cured problem with not being able to use global memory operators,
3227   by defining two more global operators, so that the delete will match
3228   the debugging implementation.
3229 - Added wxUSE_DEBUG_NEW_ALWAYS so we can distinguish between using
3230   global memory operators (usually OK) and #defining new to be
3231   WXDEBUG_NEW (sometimes it might not be OK).
3232 - Added time.cpp to makefile; set wxUSE_DATETIME to 1.
3233 - Added a parent-existence check to popup menu code to make it not crash.
3234 - Added some optimization in wxWindow::SetSize to produce less flicker.
3235   It remains to be seen whether this produces any resize bugs.
3236
3237 It's a long time since I updated this file. Previously done:
3238
3239 - wxFrame, wxDialog done.
3240 - wxScrolledWindow done (but backing pixmap not used at present).
3241 - wxBitmap done though could be tidied it up at some point.
3242 - Most basic controls are there, if not rigorously tested.
3243 - Some MDI support (menus appear on child frames at present).
3244 - wxNotebook almost done.
3245 - wxToolBar done (horizontal only, which would be easy to extend
3246   to vertical toolbars).
3247
3248 More recently:
3249
3250 - Colour and font changing done (question mark over what happens
3251   to scrollbars).
3252 - Accelerators done (for menu items and buttons). Also event loop
3253   tidied up in wxApp so that events are filtered through ProcessXEvent.
3254 - wxWindow::GetUpdateRegion should now work.
3255
3256 Alpha 16, September 8th 1998
3257 ----------------------------
3258
3259 wxMSW:
3260
3261 - Added wxSashWindow, wxSashLayoutWindow classes, and sashtest
3262   sample.
3263 - Guilhem's socket classes added, plus wxsocket sample.
3264 - A few more makefiles added.
3265 - GnuWin32/BC++ compatibility mods.
3266 - Further doc updates.
3267 - wxProp updates for correct working with wxGTK.
3268
3269 wxMotif:
3270
3271 - First start at Motif port.
3272 - Made makefiles for wxMotif source directory and minimal sample.
3273 - First go at wxApp, wxWindow, wxDialog, wxPen, wxBrush, wxFont,
3274   wxColour, wxButton, wxCheckBox, wxTextCtrl, wxStaticText,
3275   wxMenu, wxMenuItem, wxMenuBar
3276
3277 Alpha 15, August 31st 1998
3278 --------------------------
3279
3280 wxMSW:
3281
3282 - wxBitmap debugged.
3283 - wxDC::GetDepth added.
3284 - Contribution added whereby wxBitmap will be
3285   converted to DC depth if they don't match.
3286 - wxConfig API improved, documentation updated.
3287 - Printing classes name conventions cleaned up.
3288 - wxUpdateUIEvent now derives from wxCommandEvent
3289   so event can travel up the window hierarchy.
3290
3291 Alpha 14, July 31st 1998
3292 ------------------------
3293
3294 wxMSW:
3295
3296 - Toolbar API has been simplified, and now
3297   wxFrame::GetClientArea returns the available client
3298   area when toolbar, status bar etc. have been accounted for.
3299   wxFrame::CreateToolBar added in line with CreateStatusBar.
3300 - Documentation updates, incl. for wxToolBar.
3301 - New wxAcceleratorTable class plus wxFrame::SetAcceleratorTable.
3302 - Various additions from other folk, e.g. streams, wxConfig
3303   changes, wxNotebook.
3304 - Added wxDocMDIParentFrame, wxDocMDIChildFrame for doc/view.
3305
3306 Alpha 13, July 8th 1998
3307 -----------------------
3308
3309 wxMSW:
3310
3311 - Implemented wxPoint as identical to POINT on Windows, and
3312   altered wxDC wxPoint functions to use wxPoint directly in
3313   Windows functions, for efficiency.
3314 - Cured wxASSERT bug in wxStatusBar95.
3315 - #ifdefed out some bits in oleutils.cpp for compilers that
3316   don't support it.
3317 - Added some operators to wxPoint, wxSize.
3318 - Added inline wxDC functions using wxPoint, wxSize, wxRect.
3319
3320 Alpha 12, July 7th 1998
3321 -----------------------
3322
3323 wxMSW:
3324
3325 - Added wxApp::GetComCtl32Version, and wxTB_FLAT style, so can
3326   have flat toolbars on Win98 or Win95 with IE >= 3 installed.
3327
3328 Alpha 11, July 3rd 1998
3329 -----------------------
3330
3331 wxMSW:
3332
3333 - Added thread.h, thread.cpp.
3334 - Changed Enabled, Checked to IsEnabled, IsChecked in wxMenu,
3335   wxMenuBar.
3336 - Changed wxMenuItem::SetBackColor to SetBackgroundColour,
3337   SetTextColor to SetTextColour, and added or made public several
3338   wxMenuItem accessors.
3339 - Added two overloads to wxRegion::Contains. Added
3340   wxRegion::IsEmpty for a more consistent naming convention.
3341 - Added Vadim's wxDataObject and wxDropSource.
3342 - ENTER/LEAVE events now work.
3343 - Cured wxMemoryDC bug where the DC wasn't being deleted.
3344 - Cured wxGauge SetSize major bugginess.
3345 - Cured problem where if a GDI object was created on the stack,
3346   then went out of scope, then another object was selected into
3347   the DC, GDI objects would leak. This is because the assignment
3348   to e.g. wxDC::m_pen would delete the GDI object without it first
3349   being selected out of the DC. Cured by selecting the old DC object
3350   first, then doing the assignment.
3351 - Split up wxGaugeMSW, wxGauge95, wxSliderMSW, wxSlider95
3352 - Various other bug fixes and additions.
3353
3354 Generic:
3355
3356 - Major work on Dialog Editor (still plenty to go).
3357 - Expanded documentation a bit more.
3358
3359 Alpha 10, May 7th 1998
3360 ----------------------
3361
3362 wxMSW:
3363
3364 - Added desiredWidth, desiredHeight parameters to wxBitmapHandler
3365   and wxIcon functions so that you can specify what size of
3366   icon should be loaded. Probably will remain a Windows-specific thing.
3367 - wxStatusBar95 now works for MDI frames.
3368 - Toolbars in MDI frames now behave normally. They still
3369   require application-supplied positioning code though.
3370 - Changed installation instructions, makefiles and batch files
3371   for compiling with Gnu-Win32/Mingw32/EGCS. Also timercmn.cpp
3372   change to support Mingw32/EGCS. Bison now used by default.
3373
3374 Alpha 9, April 27th 1998
3375 ------------------------
3376
3377 wxMSW:
3378
3379 - Cured bug in wxStatusBar95 that caused a crash if multiple
3380   fields were used.
3381 - Added Gnu-Win32 b19/Mingw32 support by changing resource
3382   compilation and pragmas.
3383 - Cured wxMenu bug introduced in alpha 8 - didn't respond to
3384   commands because VZ changed the id setting in wxMenu::MSWCommand.
3385
3386 Generic:
3387
3388 - Corrected some bugs, such as the wxModule compilation problem.
3389 - Added Gnu-Win32 b19/Mingw32 support by changing resource
3390   compilation and pragmas.
3391 - Changed SIZEOF to WXSIZEOF.
3392
3393 Alpha 8, April 17th 1998
3394 ------------------------
3395
3396 wxMSW:
3397
3398 - Added IsNull to wxGDIObject to check if the ref data is present or not.
3399 - Added PNG handler and sample - doesn't work for 16-bit PNGs for
3400   some reason :-(
3401 - Added wxJoystick class and event handling, and simple demo.
3402 - Added simple wxWave class. Needs Stop() function.
3403 - Added wxModule (module.h/module.cpp) to allow definition
3404   of modules to be initialized and cleaned up on wxWidgets
3405   startup/exit.
3406 - Start of Mingw32 compatibility (see minimal and dialogs samples
3407   makefile.m95 files, and install.txt).
3408 - Note: Windows printing has stopped working... will investigate.
3409 VADIM'S CHANGES:
3410 - Updated wxString: bug fixes, added wxArrayString, some
3411   compatibility functions.
3412 - Updated log.h/cpp, added wxApp::CreateLogTarget.
3413 - file.h: new wxTempFile class.
3414 - defs.h: added wxSB_SIZE_GRIP for wxStatusBar95
3415 - statbr95: wxStatusBar95 control.
3416 - registry.h/cpp: wxRegKey class for Win95 registry.
3417 - listbox.cpp: corrected some bugs with owner-drawn listboxes.
3418 - wxConfig and wxFileConfig classes.
3419
3420 Generic:
3421
3422 - Added src/other/png, src/other/zlib directories.
3423 - Added samples/png.
3424 - IMPORTANT: Changed 'no id' number from 0 to -1, in wxEVT_ macros.
3425   Porters, please check particularly your wxTreeCtrl and wxListCtrl
3426   header files.
3427 - Added modules.h/cpp, config.cpp, fileconf.cpp, textfile.cpp/h.
3428
3429 Alpha 7, March 30th 1998
3430 ------------------------
3431
3432 wxMSW:
3433
3434 - Added tab classes, tab sample.
3435 - Now can return FALSE from OnInit and windows will be
3436   cleaned up properly before exit.
3437 - Improved border handling so panels don't get borders
3438   automatically.
3439 - Debugged MDI activation from Window menu.
3440 - Changes to memory debug handling, including checking for
3441   memory leaks on application exit - but see issues.txt for
3442   unresolved issues.
3443 - Added wxTaskBarIcon (taskbar.cpp/h, plus samples/taskbar)
3444   to allow maintenance of an icon in the Windows 95 taskbar
3445   tray area.
3446 - Got MFC sample working (MFC and wxWidgets in the same
3447   application), partly by tweaking ntwxwin.mak settings.
3448 - Got DLL compilation working again (VC++).
3449 - Changed wxProp/Dialog Editor filenames.
3450
3451 Generic:
3452
3453 - Added tab classes, tab sample.
3454 - Revised memory.cpp, memory.h slightly; memory.h now #defines
3455   new to WXDEBUG_NEW in DEBUG mode. Windows implementation app.cpp
3456   now checks for leaks on exit. Added memcheck sample.
3457   See src/msw/issues.txt for more details.
3458 - resource.h, resource.cpp changed to make wxDefaultResourceTable
3459   a pointer. Now initialize resource system with
3460   wxInitializeResourceSystem and wxCleanUpResourceSystem, to
3461   allow better control of memory.
3462 - wxString now derives from wxObject, to enable memory leak
3463   checking.
3464 - Added some #include fixes in various files, plus changed
3465   float to long in wxToolBar files.
3466
3467 Alpha 6, March 10th 1998
3468 ------------------------
3469
3470 wxMSW:
3471
3472 - Found stack error bug - stopped unwanted OnIdle recursion.
3473 - Removed bug in wxTreeCtrl::InsertItem I added in alpha 5.
3474 - Changed exit behaviour in wxApp/wxFrame/wxDialog. Now will
3475   check if the number of top-level windows is zero before
3476   exiting. Also, wxApp::GetTopWindow will return either
3477   m_topWindow or the first member of wxTopLevelWindows, so you
3478   don't have to call wxApp::SetTopWindow.
3479 - Added dynarray.h/dynarray.cpp (from Vadim).
3480 - Added first cut at OLE drag and drop (from Vadim). dnd sample
3481   added. Drop target only at this stage. See src/msw/ole/*.cpp,
3482   wx/include/msw/ole/*.h. WIN32 only because of UUID usage.
3483   Doesn't work with GnuWin32 - no appropriate headers e.g. for
3484   IUnknown.
3485   Doesn't work with BC++ either - crashes on program startup.
3486 - Added Vadim's owner-draw modifications - will probably remain
3487   Windows-only. This enhances wxMenu, wxListBox. See ownerdrw sample.
3488 - Added wxLB_OWNERDRAW for owner-draw listboxes.
3489 - Vadim's wxCheckListBox derives from wxListBox. See checklst sample.
3490   Doesn't entirely work for WIN16.
3491 - Vadim has added wxMenuItem as a separate file menuitem.cpp. It
3492   can also be used as an argument to wxMenu::Append, not just for
3493   internal implementation.
3494 - Some #ifdefs done for MINGW32 compilation (just alter OPTIONS
3495   in makeg95.env, together with mingw32.bat). However, resource
3496   binding is not working yet so most apps with dialogs crash.
3497
3498 Generic:
3499
3500 - Added Vadim's dynarray.h, dynarray.cpp.
3501 - Added Vadim's menuitem.cpp.
3502 - Added Windows-specific wxCheckListBox,
3503   owner-draw wxListBox, and drag-and-drop
3504   (see docs/msw/changes.txt).
3505
3506 Alpha 5, 14th February 1998
3507 --------------------------
3508
3509 wxMSW:
3510
3511 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
3512   DISTRIBUTIONS. This change log will therefore now refer to
3513   the Windows-specific code only. See docs/changes.txt for generic
3514   changes.
3515 - Removed Windows-specific reference counting system (GDI
3516   resources were cleaned up in idle time) - minimal
3517   advantages now we have a wxWin reference counting system.
3518 - Added missing WXDLLEXPORT keywords so DLL compilation works
3519   again.
3520 - Removed most warnings for GnuWin32 compilation.
3521 - Added wxRegion/wxRegionIterator, but haven't yet used it in
3522   e.g. wxDC.
3523
3524 Generic:
3525
3526 - GENERIC AND MSW-SPECIFIC CODE NOW TREATED AS TWO SEPARATE
3527   DISTRIBUTIONS. This change log will therefore now refer to
3528   the generic code only. See docs/msw/changes.txt for Windows-specific
3529   changes.
3530 - Readmes, change logs and installation files now go in
3531   platform-specific directories under docs, e.g. docs/msw,
3532   docs/gtk.
3533 - Added DECLARE_APP and IMPLEMENT_APP macros so wxApp object gets
3534   created dynamically, not as a global object.
3535 - Put wxColour into wx/msw/colour.h, src/msw/colour.cpp.
3536 - Changed names of some include/wx/generic headers to be
3537   consistent and to conform to gcc pragma conventions. Also
3538   changed choicesg.cpp to choicdgg.cpp.
3539 - Added gcc pragmas.
3540 - Added gtk inclusion in include/wx headers.
3541 - Added consistent file headings to source and headers.
3542 - Removed lang.cpp, lang.h and references to wxSTR_... variables;
3543   added a few references to wxTransString.
3544 - Added operator to wxTransString that converts automatically
3545   to wxString, so we can say e.g. wxMessageBox(wxTransString("Hello"), ...).
3546 - samples/internat now works (minimally).
3547 - Added wxMouseEvent::GetPosition and
3548   wxMouseEvent::GetLogicalPosition, both returning wxPoints.
3549 - Made wxSize and wxRect contain longs not ints.
3550 - Cured some memory leaks (thanks Vadim).
3551 - Tidied up OnIdle and introduced RequestMore/MoreRequested so
3552   will only keep processing OnIdle if it returns TRUE from
3553   MoreRequested.
3554
3555 Alpha 4, 31st January 1998
3556 --------------------------
3557
3558 All:
3559
3560 - Changed wxDC functions to take longs instead of floats. GetSize now takes
3561   integer pointers, plus a version that returns a wxSize.
3562 - const keyword added to various wxDC functions.
3563 - Under Windows, wxDC no longer has any knowledge of whether
3564   an associated window is scrolled or not. Instead, the device
3565   origin is set by wxScrolledWindow in wxScrolledWindow::PrepareDC.
3566 - wxScrolledWindow applications can optionally override the virtual OnDraw
3567   function instead of using the OnPaint event handler. The wxDC passed to
3568   OnDraw will be translated by PrepareDC to reflect scrolling.
3569   When drawing outside of OnDraw, must call PrepareDC explicitly.
3570 - wxToolBarBase/wxToolBarSimple similarly changed to allow for
3571   scrolling toolbars.
3572 - Integrated wxPostScriptDC patches for 1.xx by Chris Breeze,
3573   to help printing with multiple pages.
3574 - IPC classes given base classes (wxConnectionBase etc.) which
3575   define the API used by different implementations. DDE
3576   implementation updated to use these base classes.
3577 - wxHelpInstance now separated into wxHelpControllerBase (base
3578   for all implementations), wxWinHelpController (uses standard
3579   WinHelp), wxXLPHelpController (talks to wxHelp by DDE or
3580   TCP/IP). There will be others eventually, such as
3581   wxHTMLHelpController for Microsoft (and Netscape?) HTML Help.
3582 - Added Vadim Zeitlin's wxString class plus
3583   internationalization code (gettext simulation, wxLocale, etc.).
3584   New files from Vadim:
3585   include\wx\string.h
3586   include\wx\debug.h
3587   include\wx\file.h
3588   include\wx\log.h
3589   include\wx\intl.h
3590   src\common\string.cpp
3591   src\common\log.cpp
3592   src\common\intl.cpp
3593   src\common\file.cpp
3594   No longer use GNU wxString files.
3595 - Split off file-related functions into include\wx\filefn.h and
3596   src\common\filefn.cpp.
3597 - Borland C++ support (WIN32) for main library and
3598   samples, using makefile.b32 files.
3599 - Preparation done for allowing BC++ to compile wxWin as a DLL,
3600   including changes to defs.h.
3601 - wxIntPoint removed, wxPoint is now int, and wxRealPoint
3602   introduced.
3603 - Added wxShowEvent (generated when window is being shown or
3604   hidden).
3605 - Got minimal, docview, mdi samples working for 16-bit VC++ and
3606   cured 16-bit problem with wxTextCtrl (removed global memory
3607   trick).
3608 - Updated GnuWin32 makefiles, checked minimal, mdi, docview samples.
3609
3610 Alpha 3, September 1997
3611 -----------------------
3612
3613 All:
3614
3615 - wxListCtrl, wxTreeCtrl, wxImageList classes done.
3616 - Instigated new file hierarchy, split files and classes up more logically.
3617 - PrologIO and some other utils now put into core library.
3618 - Revamped print/preview classes, added wxPageSetupDialog.
3619 - Started documentation.
3620
3621 Alpha 2, 30th April 1997
3622 ------------------------
3623
3624 All:
3625
3626 - EVT_... macros now have at least one argument, for conformance
3627   with MetroWerks compiler.
3628 - Added ids to .wxr file format.
3629 - Got Dialog Editor compiled and running again but need
3630   to extend functionality to be in line with new controls.
3631   Added dialoged\test app to allow dynamic loading of .wxr files
3632   for testing purposes.
3633 - Rewrote wxBitmap to allow installable file type
3634   handlers.
3635 - Rewrote wxBitmapButton, wxStaticBitmap to not use Fafa.
3636 - Wrote most of wxTreeCtrl and sample (need wxImageList to implement it
3637   fully).
3638 - Added back wxRadioBox.
3639 - Tidied up wx_main.cpp, wxApp class, putting PenWin code in
3640   a separate file.
3641
3642 Alpha 1, 5th April 1997
3643 -----------------------
3644
3645 Generic:
3646
3647 At this point, the following has been achieved:
3648
3649 - A lot, but not all, of the code has been revamped for better
3650   naming conventions, protection of data members, and use of
3651   wxString instead of char *.
3652 - Obsolete functionality deleted (e.g. default wxPanel layout,
3653   old system event system) and code size reduced.
3654 - Class hierarchy changed (see design doc) - base classes such
3655   as wxbWindow now removed.
3656 - No longer includes windows.h in wxWin headers, by using stand-in
3657   Windows types where needed e.g. WXHWND.
3658 - PrologIO revised.
3659 - wxScrolledWindow, wxStatusBar and new MDI classes added.
3660   MDI is now achieved using separate classes, not window styles.
3661 - wxSystemSettings added, and made use of to reflect standard
3662   Windows settings.
3663 - SetButtonFont/SetLabelFont replaced by SetFont; font and colour
3664   settings mucho rationalised.
3665 - All windows are now subclassed with the same window proc to make
3666   event handling far more consistent. Old internal wxWnd and derived
3667   classes removed.
3668 - API for controls revised, in particular addition of
3669   wxValidator parameters and removal of labels for some controls.
3670 - 1 validator written: see examples/validate.
3671 - Event table system introduced (see most samples and
3672   wx_event.cpp/ProcessEvent, wx_event.h). wxEvtHandler
3673   made more flexible, with Push/PopEventHandler allowing a chain
3674   of event handlers.
3675 - wxRadioBox removed - will be added back soon.
3676 - Toolbar class hierarchy revised:
3677   wxToolBarBase
3678   wxToolBarSimple (= old wxToolBar)
3679   wxToolBar95 (= old wxButtonBar under Win95)
3680   wxToolBarMSW (= old wxButtonBar under WIN16/WIN32)
3681 - Constraint system debugged somewhat (sizers now work properly).
3682 - wxFileDialog, wxDirDialog added; other common dialogs now
3683   have class equivalents. Generic colour and font dialogs
3684   rewritten to not need obsolete panel layout.
3685 - .wxr resource system partially reinstated, though needs
3686   an integer ID for controls. Hopefully the resource system
3687   will be replaced by something better and more efficient
3688   in the future.
3689 - Device contexts no longer stored with window and accessed
3690   with GetDC - use wxClientDC, wxPaintDC, wxWindowDC stack
3691   variables instead.
3692 - wxSlider uses trackbar class under Win95, and wxSL_LABELS flag
3693   determines whether labels are shown. Other Win95-specific flags
3694   introduced, e.g. for showing ticks.
3695 - Styles introduced for dealing with 3D effects per window, for
3696   any window: all Win95 3D effects supported, plus transparent windows.
3697 - Major change to allow 3D effect support without CTL3D, under
3698   Win95.
3699 - Bitmap versions of button and checkbox separated out into new
3700   classes, but unimplemented as yet because I intend to remove
3701   the need for Fafa - it apparently causes GPFs in Win95 OSR 2.
3702 - utils/wxprop classes working (except maybe wxPropertyFormView)
3703   in preparation for use in Dialog Editor.
3704 - GNU-WIN32 compilation verified (a month or so ago).