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

2009-07-23 01:23 VZ, revision 61501

Correct example in wxStringBufferLength documentation.

2009-07-23 01:14 PJC, revision 61500

Starting to implement wxRibbonGallery widget. Added gallery to ribbon sample.

2009-07-22 20:12 SC, revision 61499

backport of r60227, fixes #11012

2009-07-22 19:56 SC, revision 61498

added missing files

2009-07-22 19:56 VZ, revision 61497

Use wxINT32_MAX instead of LONG_MAX as the upper bound in wxDateTime::IsInStdRange(). Under Debian Linux 64 bit time_t is 64 bit long but libc doesn't seem to handle values beyond 2^32 correctly, e.g. wrong results are returned from localtime() for them. And it would seem that platforms where sizeof(long) > sizeof(time_t) might exist too so it seems safer to only work with 32 bit time_t values until we can reliably detect platforms which support 64 bit ones.

2009-07-22 18:44 VZ, revision 61496

Handle %e in ParseFormat(). This allows us to parse the format returned by wxLocale::GetInfo(wxLOCALE_DATE_TIME_FMT) under Linux.

2009-07-22 18:41 VZ, revision 61495

Added ParseFormat("%s") tests.

2009-07-22 17:32 SC, revision 61494

added missing files

2009-07-22 16:30 VZ, revision 61493

Don't call IAutoComplete::Init() twice for the same control as this leaks memory, just change the strings used for completion instead (closes #10968)

2009-07-22 11:48 SC, revision 61492

adapting to SDK 3.0

2009-07-21 22:24 BBE, revision 61491

Corrected the name of wxTRACE_EVT_SOURCE. Using Connect() instead of Bind() in fswatcher test. Cleanup.

2009-07-21 16:16 VZ, revision 61488

Support delayed destruction in console applications too.\n\nThis only works if there is a running event loop but if there is one, we can have the same kind of problems with non-GUI objects such as sockets in console applications as we have with windows in GUI ones, so we must support this (see #10989).

2009-07-21 13:26 VZ, revision 61487

added a test for white space after CDATA (see #10552)

2009-07-21 01:54 VZ, revision 61485

Include wx/dataobj.h from wx/clipbrd.h. This is necessary in order to define wxVector<wxDataFormat> at least when wxVector is std::vector (as in wxUSE_STL==1 build) because vectors of incomplete types can't be used. Also removed inclusions of this and other unneeded headers from MSW and OS X headers and removed a hopefully out of date comment about Mac code being wx 1.xx-based from the latter.

2009-07-21 00:39 BBE, revision 61484

Getting rid of OnXXX() methods in Unix implementation.

2009-07-21 00:37 BBE, revision 61483

Making use of wxSharedPtr to ensure correct disposal of wxFSWatchEntry shared between 2 threads wxFileSystemWatcherEvent: better Clone() A couple of "const"s added. Cleanup & comments changes. Style.

2009-07-21 00:05 BBE, revision 61482

Merge r61004-r61480 from trunk: generated new configure

2009-07-20 23:29 BBE, revision 61481

Merge r61004-r61480 from trunk. To be up to date.

2009-07-20 21:38 BBE, revision 61480

Commented out duplicate operator<< for wxFileName in fswachertest. Quite dirty, to be changed in near future. Base for event loop sources test.

2009-07-20 21:36 BBE, revision 61479

Delegate resposibility of removing wxFSWatchEntry to subclasses of base file system watcher. A couple of small fixes.

2009-07-20 21:34 BBE, revision 61478

More careful code inclusion/exclusion with event loop sources.

2009-07-20 21:32 BBE, revision 61477

Init() doesn't need to be virtual

2009-07-20 21:30 BBE, revision 61476

Implementation of MSW file system watcher. Changed the way of delivering fswatcher events: removed OnXXX handlers, only connecting wxEvtHandler works wxFileSystemWatcherEvent cloning.

2009-07-20 18:47 VZ, revision 61475

Put braces around all calls to wxLogFunctions() inside an if statement. This suppresses all the remaining g++ -Wparentheses warnings and uses consistent style everywhere.

2009-07-20 17:53 PJC, revision 61473

Implemented events for wxRibbonButtonBar. Added button bar event handlers to ribbon sample. Improved painting of hybrid and dropdown buttons on a ribbon button bar. Implemented visible feedback of ribbon button bar buttons being hovered. Events dispatched from an expanded ribbon panel are now correctly sent to their handlers on the original panel. A button bar can now vertically stack more than just the three right-most buttons. Implemented missing region calculations for ribbon button bar buttons. Added button bar interface file. Updated interface files to match recent changes. Fixed occasional crash when expanding or unexpanding a ribbon panel. Fixed ribbon panel background not being painted properly when expanded and near the end of a ribbon bar. Fixed ribbon panel not staying expanded (and thus visible) when focus moves to a child of the panel. Fixed ribbon panel being unable to attain the hovered state after it's expanded panel is clicked.