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

2013-07-01 02:49 VZ, revision 74316

Fix missing documentation for several GDI functions. The documentation for wxGetClientDisplayRect(), wxGetDisplayPPI(), wxGetDisplaySize() and wxGetDisplaySizeMM() didn't appear in the output because they were documented as "overloads" of the corresponding functions without "Get" prefix inside an @addtogroup Doxygen macro and apparently this is not supported. Simply document them separately to fix this.

2013-06-29 19:16 PC, revision 74315

fix assertion failure when string transform is requested before entry is set

2013-06-29 14:53 VZ, revision 74314

Forward events to active child in wxMDIParentFrameBase, not only wxMSW. Menu, toolbar and update UI events should be forwarded to the active child under all platforms in MDI applications and not only MSW, so move TryBefore() overload from wxMSW wxMDIParentFrame to wxMDIParentFrameBase. This should make things more consistent in general and notably fixes the lack of toolbar events in wxDocChildFrame since the changes of r73928.

2013-06-29 14:53 VZ, revision 74313

Fix VC6 compilation of wxRichTextTable code. In addition to breaking VC6 build, the code also rather strangely declared "row" inside a for loop first and then declared it in the function scope. Leave just the second declaration.

2013-06-29 14:52 VZ, revision 74312

Add support for horizontal mouse wheel scrolling in wxSTC. Handle horizontal mouse wheel scrolling events in a similar (but simpler, as they always scroll and never change the font size) way to the vertical ones in wxStyledTextCtrl. Closes #15266.

2013-06-29 14:52 VZ, revision 74311

Use more readable wxListCtrl::AppendColumn() in the samples. Call this function instead of InsertColumn() with incrementing indices. See #15265.

2013-06-29 14:52 VZ, revision 74310

Use wxListColumnFormat for wxListCtrl::AppendColumn() format argument. This is safer than using just an untyped int. Closes #15265.

2013-06-29 14:51 VZ, revision 74309

Fix wxIMAGE_QUALITY_HIGH definition. Embarrassingly, wxIMAGE_QUALITY_HIGH was never used as it had the same value as wxIMAGE_QUALITY_BILINEAR due to the changes to these constants in r67203. After fixing its value in the enum, also change the switch on this enum elements to avoid g++ warnings about unhandled enum values. See #12845, #15281.

2013-06-29 14:51 VZ, revision 74308

Fix dnd events in generic wxDataViewCtrl when moving out of the window. The wxEVT_DATAVIEW_ITEM_BEGIN_DRAG event wasn't triggered if the mouse moved below the last item or beyond the last column of a control or left the window completely. Fix this by checking for the beginning of the drag before checking for the mouse being out of items area and also force the drag to start if the mouse is leaving the window as we would never do it otherwise. Closes #15258.

2013-06-29 14:51 VZ, revision 74307

Don't append just a dot in wxGTK wxFileDialog if no default extension. We always appended the default extension (for the currently selected pattern) to the file name but this was the wrong thing to do if there was no extension at all as this resulted in appending just a dot to the filename. So only do it if there is an extension to append. Closes #15285.

2013-06-29 14:50 VZ, revision 74306

Allow resetting background colour of wxHtmlContainerCell. Don't use m_UseBkColour flag which remained always set once SetBackgroundColour() had been called, but just rely on m_BkColour itself being valid to determine whether we should use it. This allows to reset the background colour after setting it. Closes #15287.

2013-06-29 13:00 VZ, revision 74305

Italian translations update from Roberto Boriotti.

2013-06-29 12:06 JS, revision 74304

Applied patch #15286: documentation and col/rowspan demo by dghart

2013-06-28 15:24 SC, revision 74303

support getting device resolution on all osx ports

2013-06-28 12:41 SC, revision 74302

new method for contentScaleFactor on main screen

2013-06-27 14:48 SC, revision 74301

new method for contentScaleFactor on main screen

2013-06-27 09:24 SC, revision 74300

native bitmap scaling codes

2013-06-27 07:54 SC, revision 74299

use correct scale when drawing

2013-06-25 19:37 SC, revision 74298

adding impls to wxBitmap on msw as this doesn't inherit from base - Thanks Vaclav!

2013-06-25 19:15 SC, revision 74297

adding default for Create with dc

2013-06-25 18:28 SC, revision 74296

incomplete paste error

2013-06-25 18:25 SC, revision 74295

adding default impl for CreateScaled

2013-06-25 17:41 SC, revision 74294

virtual method hiding in GTK, so add direct implementation

2013-06-25 17:38 JS, revision 74293

Applied rowspan patch #15276 (dghart)

2013-06-25 17:30 JS, revision 74292

Applied colspan corrections, #15274 and #15275 (dghart)