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