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-02-05 15:18 VZ, revision 70513

Preserve focus when window is minimized and restored in wxMSW. Add specific code to save and restore the focus when the window is minimized and restored in wxMSW as the existing code in WM_ACTIVATE handler wasn't enough because this event was generated too late when minimizing the window (when it was already minimized and so the focus had been already lost) and too early when restoring it (so the window was still minimized and restoring focus failed). This is still not perfect as we do in our code something Windows would be expected to do automatically but for whatever reason, it doesn't do it for wxWidgets programs, and this manual workaround at least prevents the annoying total focus loss. Closes #1599.

2012-02-05 15:18 VZ, revision 70512

Ensure that the progress dialog parent is activated at the end under MSW. The progress dialog parent was supposed to become the new foreground window when the progress dialog was closed, but this didn't happen because m_parentTop was never set when the native progress dialog implementation was used under MSW. Fix this by explicitly calling the new SetTopParent() from its ctor.

2012-02-05 15:18 VZ, revision 70511

No changes, just implement Raise() in wxTopLevelWindow in wxMSW. Get rid of two identical implementations in wxFrame and wxDialog and only override this function once in wxTopLevelWindow.

2012-02-05 02:20 VZ, revision 70510

Fix initial state of radio toolbar tools in wxGTK. The last radio group item was initially checked under wxGTK instead of the first one, as under the other platforms. Fix this by correcting the check for the first radio group item which was inversed in wxToolBar::DoInsertTool().

2012-02-05 02:20 VZ, revision 70509

Never refresh controls from EVT_PAINT handler in wxPropertyGrid. Refreshing the controls after finishing repainting the grid results in an infinite stream of paint events, so don't do this, especially as this doesn't seem to have any bad consequences under wxGTK which was the only major platform where this behaviour was enabled. Also rename wxPG_REFRESH_CONTROLS_AFTER_REPAINT to just wxPG_REFRESH_CONTROLS and keep the control refreshing code for wxGTK only in a couple of places outside of EVT_PAINT handler to be on the safe side.

2012-02-04 13:22 VZ, revision 70508

Fix the URL generated by Doxygen @sampledir macro. "samples/" part of the URL was missing, add it. Closes #13925.

2012-02-04 12:45 VZ, revision 70507

Document wxNO_3D as being obsolete. This style doesn't do anything any more, so replace it documentation with a deprecation notice.

2012-02-03 18:57 VZ, revision 70506

Fix typo in EVT_TREE_END_LABEL_EDIT documentation. Wrong event type was used, correct it. Closes #13922.

2012-02-03 18:27 VZ, revision 70505

Check string length correctly in wxFileSystem::URLToFileName(). Check that the string is long enough before accessing its first and second characters to fix a crash when an empty or one-character string was passed to wxFileSystem::URLToFileName(). Closes #13920.

2012-02-03 18:27 VZ, revision 70504

Enable callbacks for wxFileSystemWatcher FD under OS X. We need to enable callbacks to get them initially, otherwise no events are ever detected. Closes #13919.

2012-02-03 18:27 VZ, revision 70503

Fix speed regression in wxFileHistory::AddFileToHistory(). Avoid full normalization including wxPATH_NORM_LONG when adding files to wxFileHistory as this can take a very long time when using network paths under Windows. Closes #13915.

2012-02-03 15:15 VZ, revision 70502

Turkish translations update from Kaya Zeren.

2012-02-03 01:24 VZ, revision 70501

Fix the type of global font constants in the documentation. wxNORMAL_FONT, wxSMALL_FONT &c were documented as wxFont objects but they are really wxFont pointers. Closes #13917.

2012-02-03 01:21 VZ, revision 70500

Fix bug with mouse wheel scrolling wxStyledTextCtrl in long running programs. In long running programs the wxEvent time stamp could wrap around resulting in all mouse wheel events being ignored in wxStyledTextCtrl as the comparison of the (positive) time until which all the subsequent events were supposed to be blocked and the (now negative) current event time stamp would be always false. Fix this by using wxStopWatch::TimeInMicro() to avoid wraparound instead of wxEvent::GetTimestamp(). Also rename the variable to have a more clear name as the original code wasn't easy to understand. Closes #9057.

2012-02-02 21:32 SJL, revision 70499

Disable navigation sounds in wxWebViewIE. This brings the backend into line with the other backends. Also add a general method for changing INTERNETFEATURELIST settings. See #13694

2012-02-02 15:26 VZ, revision 70498

Fix initial wxRadioBox buttons positions in wxMSW. We only updated the button positions when the radio box was moved or resized after being created but didn't do it initially, so a radio box created with fixed position and size didn't lay out its buttons correctly. Do lay them out immediately after creating the radio box to fix this. Closes #13912.

2012-02-02 15:19 VZ, revision 70497

Add wxFontDialog ctor not taking wxFontData to wxOSX. wxFontDialog should have ctor and Create() overload taking just wxWindow parent in addition to the one taking parent and wxFontData used to initialize the dialog but it didn't have them in wxOSX, do add them now. Closes #13908.

2012-02-02 15:19 VZ, revision 70496

Fix wxDataViewCtrl::GetItemRect() signature in wxOSX and document it better. The second parameter of this method should be optional, so make it so in wxOSX. Also document what this method does exactly and the platforms under which it's implemented. Closes #13914.

2012-02-01 14:25 SC, revision 70494

should not bring to front upon focussing

2012-01-31 20:39 VZ, revision 70493

Remove duplicate wxPoint2DInt operator declarations. No real changes, just remove the redundant declarations. Closes #13900.

2012-01-31 20:38 VZ, revision 70492

Set the file name for temporary wxFFile objects. Pass the name of the temporary file to wxFFile::Attach(). This allows to give more useful error messages if any operation on this file fails later. Closes #13903.

2012-01-31 20:38 VZ, revision 70491

Document wxFFile::GetName(). Somehow this method was not documented. See #13903.

2012-01-31 18:44 PC, revision 70490

remove virtual override that just calls base

2012-01-31 18:41 PC, revision 70489

implement wxGetMousePosition without using X-specific code

2012-01-31 18:39 SC, revision 70488

guarding Update() on OSX not to be issued faster than 1/30 later than the last redraw