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