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-09-15 21:05 SC, revision 69096

reverting change, for precompiled headers, unfortunately this means that WXROOT must not contain spaces unless properly escaped

2011-09-15 16:25 JJ, revision 69089

Repair compile sequenze for wxGTK on OpenVMS

2011-09-15 00:33 LV, revision 69088

Added iOS src files to Xcode project

2011-09-14 18:45 SJL, revision 69085

Use integral value for OLECMDID_OPTICAL_ZOOM as we cannot tell if an enum value is already defined or not. Fixes #13475

2011-09-14 16:03 SJL, revision 69084

Update configure to only define wxUSE_WEBVIEW_WEBKIT if all the required components are available. Fixes #13474

2011-09-14 14:39 SJL, revision 69083

Cause a compile time error in the wxWebView sample if no backend exists.

2011-09-14 10:24 SJL, revision 69082

Make wxBookCtrlBase::GetSelection virtual, as per the documentation.

2011-09-14 09:39 SJL, revision 69081

Only build the wxWebView tests if there is an available backend.

2011-09-13 23:26 SJL, revision 69079

Correctly disable webkit backend if the appropriate headers cannot be found.

2011-09-13 21:39 SJL, revision 69078

Correct a typo in the wxWebView tests.

2011-09-13 14:06 SJL, revision 69077

Disable webkit backend if the appropriate headers cannot be found.

2011-09-12 20:35 SJL, revision 69074

Update wxWebView guards to stop backend compilation when wxUSE_WEBVIEW is 0.

2011-09-12 15:42 SJL, revision 69073

Ensure that we have an available backend for wxWebView compilation.

2011-09-12 13:13 JJ, revision 69072

Update setup for OpenVMS

2011-09-12 12:57 JJ, revision 69071

add compile support for thread sample on OpenVMS

2011-09-12 11:23 VS, revision 69070

Fix appending of non-leaf node to wxGTK's wxDataViewCtrl. This was accidentally broken in r68965: appending a branch node after all others node resulted in corruption of m_nodes, as the node was never added to the list. Fixes #13467.

2011-09-12 09:12 SC, revision 69069

supporting spaces

2011-09-11 23:55 VZ, revision 69066

Fix best size computation for wxTextCtrl without borders in wxMSW. wxTextCtrl with wxBORDER_NONE (and possibly wxTE_READONLY) style is often used instead of a wxStaticText to allow copying the text, so make the size of such control the same as size of the label. This ensures that it aligns correctly with the label vertically while before the baselines were not aligned because a border-less text control was rendered by MSW as a label but had a too big size.

2011-09-11 15:26 SJL, revision 69060

Ensure that we have an available backend for wxWebView compilation.

2011-09-11 13:27 VZ, revision 69059

Still resize wxSplitterWindow children even when sash position doesn't change. Since the changes if r68876, the splitter windows were not resized correctly if the splitter size in the direction orthogonal to its own didn't change. This was an unintended side effect of the changes in that commit as it only wanted to avoid calling SetSashPositionAndNotify() in this case, but SizeWindows() should still be called. Ensure that we do call it always from wxSplitterWindow::OnSize() to fix this.

2011-09-11 12:55 VZ, revision 69058

Regenerate configure after webview branch merge.

2011-09-11 12:15 SJL, revision 69057

Update setup files

2011-09-11 12:12 SJL, revision 69056

Rebake trunk after wxWebView merge and add missing project files for the wxWebView library.

2011-09-11 02:35 RD, revision 69051

Fix missing and broken interface items for Phoenix

2011-09-10 20:09 SJL, revision 69049

Merge the new wxWebView classes from the SOC2011_WEBVIEW branch.

2011-09-10 18:02 PC, revision 69048

update WarpPointer for GTK3

2011-09-10 17:09 SJL, revision 69047

Merge in from trunk r68684 - r69046

2011-09-10 05:26 RD, revision 69041

Enable the HWND of the task dialog to be fetched with GetHandle if it is being used.

2011-09-08 23:15 VZ, revision 69028

Allow setting colours and font of wxTreeListCtrl. Use wxCompositeWindow<> to propagate changes of colours and font to wxDataViewCtrl that wxTreeListCtrl uses internally.

2011-09-07 18:57 PC, revision 69021

non-pch build fix

2011-09-07 18:56 PC, revision 69020

remove unnecessary GTK declarations from defs.h, move things only used once to the place that needs them

2011-09-06 18:35 PC, revision 69015

move addition of -lX11 to better place

2011-09-06 18:24 PC, revision 69013

don't disable cast checks in debug builds

2011-09-06 18:09 PC, revision 69012

remove unused __WXGTK12__ symbol

2011-09-06 17:54 PC, revision 69011

remove (very) obsolete GTK version check

2011-09-06 06:17 RD, revision 69007

fix for non-pch builds

2011-09-05 22:08 RD, revision 69005

Avoid infinite recursion on Mac in comboctrl, and fix an uninitialized pointer in propgrid

2011-09-05 17:40 VS, revision 69003

Fix crash in wxDataViewCtrl::UpdateColWidths().

2011-09-05 16:25 VS, revision 69002

wxDataViewCtrl: enable F2 editing with multiple selection too. This matches the native (and thus expected) behavior of Windows Explorer: edit the first item in selection. It's also better than ignoring user's key presses.

2011-09-05 01:01 VZ, revision 69001

Add persistence support for wxSplitterWindow. New wxPersistentSplitter class allows to easily save and restore the splitter position in config.

2011-09-03 18:19 SC, revision 68997

setting the image position after the label is set, otherwise image_only will have the potential label over the image

2011-09-03 15:14 VS, revision 68996

Use ProcessWindowEvent() in generic wxDataViewCtrl code.

2011-09-03 15:14 VS, revision 68995

Extracted wxDataViewMainWindow left/right keys handling into separate methods.

2011-09-03 15:14 VS, revision 68994

Rename wxDataViewMainWindow::OnArrowChar to OnVerticalNavigation. The method handled much more than just arrow characters and it didn't handle all arrow characters.

2011-09-03 15:14 VS, revision 68993

Slightly more efficient wxDataViewCtrl::StartEditor(). Don't compute item rect until we know for sure that the item actually is editable.

2011-09-03 15:14 VS, revision 68992

Fix generic wxDataViewCtrl Enter handling to conform to Windows UI. Spacebar is used to activate columns (e.g. toggle a checkbox). Enter activates the item, i.e. sends wxEVT_COMMAND_ITEM_ACTIVATED. If that event isn't handled, Enter acts the same as Space.

2011-09-03 03:39 RD, revision 68973

Fix some broken or add some missing interface declarations for Phoenix

2011-09-01 20:43 VZ, revision 68969

Don't warn about wxMetaFile in configure by default. Only warn if an explicit --enable-metafile was given, otherwise just turn it on only for the platforms that do support it, similarly to what was done for --enable-hotkey in the previous commit.

2011-09-01 20:43 VZ, revision 68968

Add wxUSE_HOTKEY support to configure. Add --enable-hotkey switch to allow enabling hot keys support and enable it by default under MSW and OS X that do support them but disable it elsewhere to avoid unnecessary warnings about them being unsupported. See #12354.

2011-09-01 18:20 SC, revision 68967

fixes #13443, thanks :-)