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-03-29 21:59 SC, revision 71051

adding tabart.cpp file

2012-03-29 21:19 VZ, revision 71050

Added missing DESTDIR to wx-config installation make rule. All paths should be prefixed by $(DESTDIR) but it was forgotten in "ln -s" command.

2012-03-29 19:14 RD, revision 71049

wxTreeCtrl interface fixes for Phoenix

2012-03-29 14:08 VZ, revision 71040

Allow closing wxAuiTabCtrl pages without switching to them. Clicking on the page "x" close button switched to the page before doing anything else which was unusual as other tabbed controls don't behave like this. Handle clicks on the close button specially and avoid switching to the page which is about to be closed anyhow. Closes #14150.

2012-03-29 02:10 VZ, revision 71039

Fix focus handling logic in generic wxListCtrl. Don't override SetFocus() to set the focus to the main window, this isn't enough as we can be given the focus by the underlying toolkit itself, without our SetFocus() being called -- this happened in wxGTK when focus was changed from the keyboard using TAB and in this case it didn't get to the main window but remaining on the wxListCtrl itself meaning that keyboard input wasn't processed at all. Use wxNavigationEnabled<> now to ensure that OnSetFocus() and related methods do the right thing instead now. Also get rid of OnSetFocus() in wxListHeaderWindow, it's better to override AcceptsFocus() to return false to avoid getting focus in the first place.

2012-03-28 20:00 SJL, revision 71034

Minor changes, just trim trailing spaces in webview code.

2012-03-28 13:29 VZ, revision 71033

Document that wxDateTime::UNow() returns UTC time. This wasn't clear and was probably surprising as this is different from Now() behaviour. See #14149.

2012-03-28 11:13 SC, revision 71032

adding correct behavior for move events as the are issued under OSX

2012-03-27 21:33 SJL, revision 71030

Correctly use QueryInterface in GetDocument to ensure that we only return an IHTMLDocument2 pointer if one is available. Check GetDocument being NULL when used. This fixes the displaying of non-html documents such as pdfs. Fixes #14060

2012-03-27 19:28 RD, revision 71029

Add missing interface items for listctrl.

2012-03-27 14:28 VZ, revision 71028

Honour source wxDC coordinate system in wxDC::Blit() in wxMSW. wxGTK and wxOSX already did this so do it in wxMSW as well. Update the documentation to make this explicit.

2012-03-27 14:28 VZ, revision 71027

Make wxDC::Blit() and StretchBlit() documentation more useful. Enumerating the list of parameters in the method description is not especially helpful, don't do it. Explain the functions relationship instead. Also don't say that StretchBlit() is not implemented in wxGTK because it does work there (using the generic implementation using wxDC scale).

2012-03-27 13:58 VZ, revision 71026

Set wxTextAreaBase::m_filename in the methods of this class itself. m_filename member was declared in wxTextAreaBase but set only in the overridden wxTextCtrlBase methods. This meant that it wasn't updated correctly in wxStyledTextCtrl which also derives from wxTextAreaBase and so saving SaveFile() with empty file name didn't work there even when the control had been originally loaded from a file. Move the code updating m_filename to wxTextAreaBase itself to fix this. This also simplifies the code as it's now not necessary to override Do{Load,Save}File() in wxTextCtrlBase at all.

2012-03-27 13:58 VZ, revision 71025

Use IsDescendant() in wxTopLevelWindow::IsActive() implementation. Avoid wxGetTopLevelParent() which doesn't work for the strange TLWs which override IsTopLevel() to return false, as wxMDIChildFrame does in wxMSW. Using IsDescendant() works in any case and also is arguably more clear. Closes #3063.

2012-03-27 13:58 VZ, revision 71024

Added wxWindow::IsDescendant() helper. This function checks if another window is a direct or indirect child of this one, which can be needed in a number of situations. See #3063.

2012-03-26 18:57 JS, revision 71015

Corrected scale factor for the use of DC PPI instead of printer PPI in wxRTC code

2012-03-26 18:57 JS, revision 71014

Corrected scale factor for the use of DC PPI instead of printer PPI in wxRTC code

2012-03-26 17:44 PC, revision 71013

non-pch build fix, closes #14140

2012-03-26 13:52 VZ, revision 71012

Arabic translations update from Fatma Mehanna. Also backport the translations to 2.8 branch.

2012-03-26 13:24 VZ, revision 71011

No changes, just small cleanup in AUI GTK tab art drawing code. Use more clear variable names; remove commented out assignments to inexistent variables. Closes #14139.

2012-03-26 13:23 VZ, revision 71010

Fix gap box coordinates in GTK AUI tab art code. Closes #14138.

2012-03-26 13:23 VZ, revision 71009

Minor fix to wxGraphicsContext::SetInterpolationQuality() in wxMSW. Only update the internal variable if we really succeeded in changing the interpolation mode. See #14134.

2012-03-26 01:34 PC, revision 71008

remove unneeded includes and forward declaration

2012-03-26 01:33 PC, revision 71007

remove unused variable

2012-03-26 01:33 PC, revision 71006

replace wxBitmap::SetPixbuf() with wxBitmap ctor taking pixbuf