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