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):

2012-01-07 16:09 VZ, revision 70282

Implement best size calculation for report mode wxListCtrl. Use the column labels to determine the minimal width required by the control to show them all in full. Also declare all image list and column-related wxListCtrl methods in wxListCtrlBase now as we need some of them in DoGetBestClientSize() implementation.

2012-01-07 16:09 VZ, revision 70281

Replace 3 copies of wxListCtrl mode tests with a single one in wxListCtrlBase. Move InReportView() and IsVirtual() into the base class as they were the same in all the implementations.

2012-01-07 16:09 VZ, revision 70280

Add wxListCtrlBase common base class for port-specific wxListCtrl. This base class is currently trivial, more methods will be moved to it from the derived classes later.

2012-01-07 16:09 VZ, revision 70279

Set Z-position correctly for wxEVT_JOY_ZMOVE events. Z-move events don't have (x, y) position, but they do have Z-position which needs to be set. Also don't use (x, y) position for these events in the sample. See #748.

2012-01-07 16:09 VZ, revision 70278

Joystick messages coordinates are unsigned, treat them as such. Apparently the joystick messages (x, y) coordinates are unsigned, so use LOWORD/HIWORD to extract them from LPARAM. See #748.

2012-01-05 16:48 JS, revision 70275

Removed compilation ambiguity between different forms of ...WithUndo functions.

2012-01-05 15:10 JS, revision 70274

Fixed box style application.

2012-01-05 15:08 JS, revision 70273

Fixed #13833: wxRichTextCtrl: 'Copy' can grab an extra character

2012-01-05 13:51 VZ, revision 70272

Ensure that wxListEvent::m_itemIndex and m_item.m_itemId are in sync. Unfortunately we have two ways to get the item affected by wxListEvent: via its m_itemIndex (or GetIndex()) and m_item.m_itemId (or GetItem()). This can't be changed for the usual backwards compatibility reasons but at least make sure that both contain the same values in the events sent by the generic version (MSW one already did it).

2012-01-05 13:51 VZ, revision 70271

Don't fill wxListEvent::m_item when using virtual list control in wxMSW. When using virtual list control the main program already has the items data so it's completely useless to call GetItem() when preparing an event for it. It is also inefficient to call GetItem() for potentially many items. For both of these reasons the generic version already didn't fill the item contents for virtual list controls events. Now modify wxMSW to not do it neither.

2012-01-05 13:51 VZ, revision 70270

Initialize wxListItem::m_itemId to -1, not 0. Currently we have two redundant pieces of data in wxListEvent: m_itemIndex and m_item.m_itemId. The former is initialized to -1 by default which makes sense as it means "no item". But the latter was 0 by default which not only didn't make sense but also made it inconsistent with m_itemIndex for the events which really didn't have any associated item. Fix this by initializing m_itemId to -1 as well.

2012-01-05 11:21 VZ, revision 70269

Fix wxDateTime unit test compilation without PCH. Include wx/time.h to get wxGetTimeZone() declaration.

2012-01-05 01:47 VZ, revision 70268

Implement support for "%z" in wxDateTime::Format() and Parse(). "%z" specifier can now be used when printing the dates out to specify the time zone and is also recognized when parsing dates. Closes #1215.

2012-01-04 20:38 JS, revision 70267

Added box style functionality to style manager dialog

2012-01-04 17:32 JS, revision 70266

Implement missing wxTextBoxAttr::IsDefault function

2012-01-04 16:53 VZ, revision 70265

More pt_BR translations from Felipe. All the messages are now translated.

2012-01-04 15:41 JS, revision 70264

Possible fix for #13821: wxRichTextCtrl using 100% CPU

2012-01-04 15:00 JS, revision 70263

Background now drawn within the border instead of beyond the margin

2012-01-04 14:39 VZ, revision 70262

Fix wxRibbon compilation when wxUSE_TOOLTIPS==0. Add wxUSE_TOOLTIPS tests after the changes of r70175. Closes #13827.

2012-01-04 13:50 JS, revision 70261

Fixed border drawing bug when width is more than 1

2012-01-04 11:42 JJ, revision 70260

Update makefile for OpenVMS

2012-01-04 08:54 SC, revision 70259

fixes #13826

2012-01-04 00:27 VZ, revision 70256

Fix wxEncodingConverter::Convert(wchar_t) documentation. This method mistakenly "inherited" the same documentation as 2 argument Convert() overloads. Closes #13825.

2012-01-03 16:24 JS, revision 70254

Disable drag and drop if the control is not editable

2012-01-03 15:09 JS, revision 70253

Applied #13819: wxRTC drag and drop, by dghart, with tweaks