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