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