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