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

2010-04-06 15:55 VZ, revision 63869

Add default constructor to wxGraphicsGradientStop. It may be convenient to create wxGraphicsGradientStop first and initialize it later so allow doing this by providing the default argument for constructor parameters and thus allowing to use it as the default constructor. See #11897.

2010-04-06 15:55 VZ, revision 63868

Correct check for MSVC version in wxUSE_GRAPHICS_CONTEXT definition. Set wxUSE_GRAPHICS_CONTEXT to 1 by default for MSVC 7.1+ and not 8+.

2010-04-06 11:47 JJ, revision 63867

Update OpenVMS compile support

2010-04-06 02:17 VZ, revision 63866

Correct checks for gradient stop position. It may be <= 1 in the final version and not < 1. See #11897.

2010-04-05 19:52 RR, revision 63865

non PCH compilation

2010-04-05 19:19 VS, revision 63864

Fix text input and completion in wxComboCtrl and wxOwnerDrawnComboBox. Both wxEVT_KEY_DOWN and wxEVT_CHAR must be handled and only the latter used for completion (or any characters input). Don't make incorrect assumptions about wxEVT_CHAR keycodes either, it's only the Unicode character and printability that matter. Otherwise, completion in readonly controls wouldn't work correctly for e.g. numbers on numpad or non-ASCII characters.

2010-04-05 19:18 VS, revision 63863

wxOwnerDrawnComboBox: handle Home and End keys as native control does.

2010-04-05 19:18 VS, revision 63862

Pass events around with ProcessEvent(), not AddPendingEvent(). The latter adds the event for later processing. As a result, the event appears to be processed to the caller, even if the handled it was passed to called Skip() on it. ProcessEvent() doesn't suffer from this problem, it may modify the event as expected.

2010-04-05 19:18 VS, revision 63861

wxOwnerDrawnComboBox: handle numpad navigation keys. For consitency with the native control, up/down/pgup/pgdown keys should be handled even when pressed on the numpad.

2010-04-05 19:18 VS, revision 63860

Implement native mousewheel behaviour in wxOwnerDrawnComboBox.

2010-04-05 19:18 VS, revision 63859

In wxPopupFocusHandler, watch for EVT_CHAR, not EVT_KEY_DOWN. We should close the popup only if neither of these events was processed; previously, EVT_CHAR would never reach the popup in open state, as it would be closed automatically.

2010-04-05 14:44 SC, revision 63858

moving OnInit back

2010-04-05 14:15 VZ, revision 63857

Add support for gradient stops to wxGraphicsContext. Allow specifying a set of gradient stops instead of just the beginning and ending colours. Add the new wxGraphicsGradientStop(s) classes and new wxGraphicsContext::Create{Linear,Radial}GradientBrush() overloads. Also change the same methods of wxGraphicsRenderer to take wxGraphicsGradientStops instead of a pair of colours. Implement the new API for MSW and Cairo. OS X still uses just the two colours for now. Closes #11897.

2010-04-05 13:44 VZ, revision 63856

Add wxTransparentColour global pseudo-variable. Introduce a symbolic name for a fully transparent colour. See #11897.

2010-04-05 13:44 VZ, revision 63855

Use helper wxColourToColor function in wxMSW wxGraphicsContext code. Don't repeat Color ctor from wxColour all the time.

2010-04-05 03:07 PC, revision 63854

avoid setting negative window size

2010-04-05 03:06 PC, revision 63853

freeze whole window for TLW

2010-04-05 02:45 PC, revision 63852

avoid permanently frozen TLW when frozen child is destroyed with GTK+ 2.18

2010-04-04 17:22 JMS, revision 63850

Resolve GCC's 'type-punned pointer will break strict-aliasing rules' warning by breaking up code in wxAny GetValue() and SetValue() functions into several lines (fixes #11865)

2010-04-04 15:19 VZ, revision 63849

Fix wxTaskBarIcon to work under all Windows versions. When the code was compiled using a new SDK, creating wxTaskBarIcon failed under older Windows systems because of a too big NOTIFYICONDATA size specified by the program. Fix this by using the fixed NOTIFYICONDATA_V2_SIZE to get old version of the struct which nevertheless contains everything we need and even fall back to NOTIFYICONDATA_V1_SIZE for Win9x if needed. Closes #11886.

2010-04-03 14:25 VZ, revision 63842

Correct compilation breakage of r63832. wx/setup.h can't use wxCHECK_VISUALC_VERSION() which is defined in wx/platform.h _after_ wx/setup.h inclusion. Replace wxCHECK_VISUALC_VERSION() with manual tests for _MSC_VER. Also add more comments to explain what's going on.

2010-04-03 11:58 SC, revision 63841

shuffling code back from eventloop to common app utils

2010-04-03 11:49 SC, revision 63840

no special casing for iphone necessary

2010-04-03 11:43 SC, revision 63839

fixing wrong version commit

2010-04-03 11:10 SC, revision 63838

support for toggle bitmap button