Changelogs

Overview

These changelogs reflect the history of all files in the Subversion repository. The changelog has been generated at 2016-05-09 08:38:04

Changes per page:

25 50 100 250 500 1000 2000

Changelog for wxWidgets (70435 changes):

2011-12-22 14:35 VZ, revision 70086

Add wxLogFormatter to allow easier wxLog output customization. Delegate the log string creation to wxLogFormatter. This allows defining a custom object of a class derived from it to customize the log output instead of having to override DoLogRecord() in wxLog itself. Closes #13792.

2011-12-22 02:26 RD, revision 70085

Avoid a problem in Phoenix by making UpdateMacScrollWindow not be pure virtual.

2011-12-22 02:25 RD, revision 70084

Interface fixes for Phoenix

2011-12-21 17:27 SC, revision 70078

rebaked Xcode proj for cocoa after date & timectrls were added

2011-12-21 14:56 VZ, revision 70077

Correct generic wxListCtrl display of items with icons in list mode. The changes of r70066 improved the layout for icon and small icon modes but broke it for the list mode if items had icons because the item width should account for the icon as well in this case. Simply disable the code added in this revision when in list mode, we don't need to do anything then anyhow as the layout already worked correctly for it.

2011-12-21 14:56 VZ, revision 70076

Guard against a possible crash in wxListCtrl::DeleteColumn(). We could crash when deleting a column after switching to report view from icon view. As deleting a column works just fine under MSW in this case, make it work in the generic version as well.

2011-12-21 14:07 VZ, revision 70075

Document wxListCtrl::InReportView() and IsVirtual(). These functions are more convenient than directly testing for styles and are already used outside wxWidgets do make them officially part of the public API.

2011-12-21 01:26 VZ, revision 70074

Ignore extra modify events after rename in wxFileSystemWatcher. Document that such extra events may occur and generally improve the event types documentation.

2011-12-20 22:27 VZ, revision 70071

Provide native implementation of wx{Date,Time}PickerCtrl for wxOSX/Cocoa. Use NSDatePicker to implement both of these controls. Almost all of wxDatePickerCtrl styles are not supported in the native version but the basic functionality does work and looks much better than the generic version (which is still available as wxDatePickerCtrlGeneric if needed) under Mac.

2011-12-20 22:27 VZ, revision 70070

Added helpers for translating between wxDateTime and NSDate. These functions will be used in the upcoming native implementations of wxDatePickerCtrl and wxTimePickerCtrl but could also be reused elsewhere in wxOSX/Cocoa, notably in wxDataViewCtrl where strange ad hoc code is currently used.

2011-12-20 22:27 VZ, revision 70069

Added wxTimePickerCtrl page to the widgets sample. Even if this page is pretty trivial, add it for consistency with wxDatePickerCtrl.

2011-12-20 22:27 VZ, revision 70068

Reorganized the date picker page of the widgets sample. Make it possible to set the picker styles and set its range and not only the current value. Also log the events generated by it.

2011-12-20 22:22 VZ, revision 70067

Ukrainian translations update from Yuri Chornoivan.

2011-12-20 22:21 VZ, revision 70066

Fix horizontal alignment in icon view in generic wxListCtrl. Ensure that all the items in the same column have the same width, so that their labels are centred. Closes #9227.

2011-12-20 18:42 VZ, revision 70065

Brazilian Portuguese translations update from Felipe.

2011-12-20 16:39 VZ, revision 70064

Fix crash in wxRegion in wxOSX/Carbon. Apparently some code expects to be able to call wxRegion::GetWXHRGN() even on an invalid wxRegion. Return NULL in this case instead of crashing. This fixes crash on startup of the widgets sample.

2011-12-20 14:27 VZ, revision 70063

Add support for webview library to MSW bakefile presets. The webview library wasn't linked in correctly when using MSW bakefile presets. Fix this by adding the corresponding <sys-lib> for it (this needs to be done for MSW only, under Unix it's handled by wx-config). Closes #13789.

2011-12-20 14:24 VZ, revision 70062

Mention the dialog focus regression fix in wxMSW in the change log. See #13765.

2011-12-19 23:39 RD, revision 70061

Interface tweaks and fixes for Phoenix

2011-12-19 22:16 BP, revision 70060

Added missing semi-colon in versioninfo.h interface header.

2011-12-19 14:14 DS, revision 70052

Cleaned up some of the code in wxSlider::DoMoveWindow.

2011-12-19 13:54 VZ, revision 70051

Added support for wxEXEC_MAKE_GROUP_LEADER to wxExecute(). Map it to the native CREATE_NEW_PROCESS_GROUP flag as it's broadly similar to Unix semantics. Closes #13676.

2011-12-19 13:54 VZ, revision 70050

Add possibility to set item background in generic wxDataViewCtrl. Added wxDataViewItemAttr::SetBackgroundColour() and code to honour it in the generic implementation of wxDataViewCtrl. Closes #12621.

2011-12-19 13:54 VZ, revision 70049

Don't use dummy "inline" in wxDEPRECATED_CONSTRUCTOR definition. Apparently we need this bogus "inline" for g++ < 3.4 but there is no reason to use it for the other compilers and this results in linking errors with e.g. MSVC, so remove it. Closes #13775.

2011-12-19 13:28 DS, revision 70048

Fixed min and max label values not being swapped when using wxSL_INVERSE in a horizontal MSW slider. Changed wxSlider::GetLabelsSize to let the widthMin and widthMax values contain the width of what the minimum (always on the left/top) and maximum (always on the right/bottom) _label_ will contain. This is not the same as the minimum and maximum _value_ in case of using wxSL_INVERSE. Also don't swap the position of the min/max labels in a horizontal slider with wxSL_INVERSE (just how the labels already stay in place in a vertical slider, regardless of wxSL_INVERSE usage), nor their width. Regression since r65941. Fixes #13416.