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-08-27 15:24 VS, revision 68912

No real change, use more descriptive variable names in wxDataViewMainWindow::ItemDeleted(). Call the node object corresponding to 'parent' 'parentNode' instead of just the more vague 'node'. Also, 'nodes' instead of 'nds'.

2011-08-27 14:13 VZ, revision 68911

Set colours and fonts for all elements of the generic wxSearchCtrl. Derive generic wxSearchCtrl from wxCompositeWindow<> to ensure that calls to its Set{Fore,Back}groundColour() are propagated to all its children, otherwise they applied only to the composite control itself but not e.g. its text part. Also update the bitmaps when the background colour changes to ensure that it appears as transparent. Closes #13428.

2011-08-27 14:13 VZ, revision 68910

Allow returning NULL windows from GetCompositeWindowParts(). wxCompositeWindow::GetCompositeWindowParts() becomes simpler to implement in the derived classes with optionally shown elements if NULL windows are allowed (and ignored) in the list returned by it.

2011-08-27 14:13 VZ, revision 68909

Fixes to OpenGL samples to avoid asserts/crashes. Don't call wxGLCanvas::SetCurrent() when the window is not shown. Closes #13424.

2011-08-26 15:01 JJ, revision 68907

Update setup for OpenVMS

2011-08-26 01:32 DS, revision 68903

Fixed best size of wxUniv's wxNotebook. Removed wxNotebook::DoGetBestClientSize to let wxBookCtrlBase::DoGetBestSize do its job and fix the best size of a wxNotebook (formerly when running the notebook sample the notebook was not wide enough).

2011-08-26 01:16 DS, revision 68902

Fixed best sizes for wxUniv controls. Many wxUniv controls had a way too small best size which was noticeable when running e.g. the widgets sample. Regression started in r61169 where wxWindowBase::DoGetClientBestSize() was introduced but that virtual function already existed in wxUniv's wxWindow. Removing wxUniv's wxWindow::DoGetBestSize and wxWindow::DoGetBestClientSize fixes sizing issues.

2011-08-26 01:13 DS, revision 68901

Fixed width of scrollbars in wxUniv. The AdjustSize renderer function for wxUniv's GTK and MSW theme adjusted the size of a scrollbar while it already had the correct size, resulting in scrollbars being twice as wide. Fixed by not adjusting the size of a scrollbar anymore in AdjustSize. Closes #11660.

2011-08-26 01:09 DS, revision 68900

Fixed buttons having no border in wxUniv by default. Buttons had a border of wxBORDER_NONE resulting in wxButton::DoDraw not drawing the button's border. Fixed by adding wxAnyButton::GetDefaultBorder() for wxUniv which returns wxBORDER_STATIC. Regression since r67931.

2011-08-25 23:52 DS, revision 68899

Fixed MSW/Univ compilation of toplevel.cpp. MSW-only functions were compiled in, disabled their usage by adding #ifndef __WXUNIVERSAL__ blocks. Closes #13399 (again, after r68723 already should have closed it but its commit message contained a typo).

2011-08-25 18:37 SC, revision 68880

mb:54153a12-b2c7-417e-b607-c4faa9c436ab

2011-08-24 14:57 SJL, revision 68878

Rebake after previous commit, should fix monolithic compilation.

2011-08-24 13:52 VZ, revision 68877

No real changes, just update copyright year in wxInfoMessageBox(). s/2010/2011/

2011-08-24 13:48 VZ, revision 68876

Try harder to set the requester splitter position in wxSplitterWindow. The code in wxSplitterWindow tried to remember the requested position and set the real sash position to it later, even if the initial window size was too small to allow for it, but it didn't work because the requested position was forgotten after the first size event, even though it was quite possible that this event didn't really change the window size from the initial, small, one. Try to make this more robust by ignoring the size events which don't really change the window size. Also set m_lastSize correctly initially. Now setting the sash position does work even if the splitter itself is inside nested sizers (which results in many size events).

2011-08-24 13:19 SC, revision 68875

adding raw_control for osx

2011-08-24 09:43 SJL, revision 68874

Remove out of date extralib stuff from the bakefiles.

2011-08-24 08:14 SC, revision 68873

missing commit for RAW_CONTROL changes

2011-08-24 06:15 SC, revision 68872

missing commit for RAW_CONTROL changes

2011-08-23 21:09 JC, revision 68871

Merged from trunk

2011-08-23 17:44 VZ, revision 68870

Compilation fix for non-OSX: don't use m_rawControlDown there. m_rawControlDown is supposed to be only used under OS X so put an #ifdef __WXOSX__ around it in wxKeyboardState::GetModifiers() to fix compilation under the other platforms.

2011-08-23 17:30 SC, revision 68869

fixing type for key event, using WXK_RAW_CONTROL constant for controlkey, see #13415

2011-08-23 17:18 SC, revision 68868

exposing control key combinations as before, fixing unicodekey casing

2011-08-23 17:11 VZ, revision 68867

Simplify checks for event vetoing in generic wxDataViewCtrl code. Don't return the whole event object from SendExpanderEvent() just to check if it wasn't vetoed, simply return a boolean value indicating if this was the case from this function itself. This makes it both more efficient and easier to use.

2011-08-23 17:11 VZ, revision 68866

Fix completely wrong logic for veto checking in generic wxDVC. The code sending the event must check whether the event was vetoed or not, not whether it was skipped or not. This is the minimal change resulting in correct behaviour even if an event handler does skip the event.

2011-08-23 15:19 SC, revision 68865

adjusting keyboardstate to new ctrl / raw_ctrl handling on osx