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