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-08-03 22:42 VZ, revision 61595

Implement wxDataViewTreeStore::DeleteAllItems(). Just delete all root children. Closes #11063.

2009-08-03 22:37 VZ, revision 61594

Correct week day returned from wxCalendarCtrl::HitTest() on header click. A combination of a wx bug in conversion from native control week days to wxDateTime week days and a bug of native control itself when the first week day is not Monday resulted in the day being off by one it did start with Monday. The new code works correctly in both Monday and Sunday cases, at least until the bug in comctl32.dll is corrected. See comment:5 of #11057.

2009-08-03 22:36 VZ, revision 61593

Added symbolic names for native control week days. No real changes, but MonthCal_Monday/Sunday is more clear than 0 or 6.

2009-08-03 22:10 VZ, revision 61592

Always use MCHITTESTINFO of minimal size. This struct has gained additional fields under Vista which are not supported under previous versions. We don't use these fields but just using a bigger struct makes functions using it fail under pre-Vista systems, so don't do this. Closes #11057.

2009-08-03 11:09 MJM, revision 61591

Uncomment tabmdi code so that it can be used again, it compiles but is not currently usable. Modify auimdi samples so that Tile/Cascade can be tested.

2009-08-03 02:51 VZ, revision 61590

Minor changes to wxGridSizer ctor docs. See #11040.

2009-08-03 02:44 VZ, revision 61589

Use numeric values in VarFileInfo block. This allows windres to compile it successfully and is probably the right thing to do for the SDK resource compiler as well (see #11055).

2009-08-03 00:03 MJM, revision 61588

Fix dependencies of "auimdi" sample.

2009-08-02 23:28 MJM, revision 61587

Add new sample "auimdi" to help test changes to aui mdi classes.

2009-08-02 22:48 MJM, revision 61586

Uncomment pieces of wxAuiNotebook destructor that were temporarily commented out.

2009-08-02 22:42 MJM, revision 61585

Re-implement wxAuiNotebook::DeletePage. Re-implement wxAuiNotebook::RemovePage. Fix various assert checks that were incorrect.

2009-08-02 22:14 MJM, revision 61584

Fix problem with wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE, was being treated as if it was always vetoed.

2009-08-02 22:01 MJM, revision 61583

Re-implement wxAuiNotebook::GetActiveTabCtrl Change wxAuiNotebook::ShowWindowMenu to use GetActiveTabCtrl instead of duplicating code itself. Add wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING to wxAuiNotebook::ShowWindowMenu.

2009-08-02 21:46 MJM, revision 61582

Re-implement wxAuiNotebook::ShowWindowMenu

2009-08-02 21:27 MJM, revision 61581

wxAuiManager: Add new methods FindTab and GetPaneCount. Add new overload for GetPane method that takes an index position. Remove static modifier from various helper functions so that they can be used in auibook.cpp as well (Prefix them with Aui to make collisions less likely) Add new helper function IsNotebookPane that will tell if a pane is part of a notebook or not. Add new helper function Aui_GetActivePane that returns the currently active pane. Modify OnMiddleUp method to send off a wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_UP event for wxAuiNotebooks. Modify OnPaneButton method to send off a EVT_AUINOTEBOOK_PAGE_CLOSE event for wxAuiNotebooks. wxAuiNotebook: Add externs for various helper functions that we need from frammanager.cpp Re-implement GetArtProvider method. Re-implement AddPage method. Re-implement InsertPage method. Re-implement GetPageIndex method. Re-implement SetPageText method. Re-implement GetPageText method. Re-implement SetPageBitmap method. Re-implement GetPageBitmap method. Re-implement GetSelection method. Re-implement SetSelection method. Re-implement GetPageCount method. Re-implement GetPage method. Re-implement Split method.

2009-08-02 03:03 VZ, revision 61578

Correct wxPATH_NORM_DOTS comment and documentation. It doesn't prepend the current working directory, only wxPATH_NORM_ABSOLUTE does. Closes #11035.

2009-08-02 02:59 VZ, revision 61577

Check indices validity better in wxGridStringTable. Calling GetValue(-1, -1) could crash as the code naively only checked upper boundary (and didn't use unsigned which would have made the extra check unnecessary but it's too late for this now). Closes #11044.

2009-08-02 02:53 VZ, revision 61576

Mention that wxEVT_GRID_SELECT_CELL is generated by SetGridCursor() in one more place. It was already done in SetGridCursor() documentation; do it in wxEVT_GRID_SELECT_CELL own description as well (see #11045).

2009-08-02 02:48 VZ, revision 61575

Make wxGridSizer ctors more consistent. The old and confusing wxGridSizer(int cols, int vgap = 0, int hgap = 0) is removed and replaced with wxGridSizer(int cols, int vgap, int hgap). New ctor overloads using wxSize for the gap parameter added. Closes #11040.

2009-08-02 02:48 VZ, revision 61574

Add checks of wxGridSizer::Set{Cols,Rows}() arguments. Number of rows or columns must be positive (see #11040).

2009-08-02 02:19 VZ, revision 61573

Skip VarFileInfo block when using windres. It doesn't seem to understand this syntax and dies with an uninformative "syntax error". Closes #11055.

2009-07-31 20:48 VS, revision 61572

compilation fix: only one wxInitialize form may have default argument values. It doesn't make sense to specify only argc>0, so removed default values and added default wxInitializer ctor.

2009-07-31 16:03 JMS, revision 61571

In wxPropertyGridPageState::DoDelete(), clear grid's m_propHover if it matches the property being deleted

2009-07-31 15:38 VZ, revision 61570

Export public wxDelegateTheme class. This class is supposed to be public but wasn't accessible in shared library build as it didn't have public visibility. Closes #11051.

2009-07-31 14:17 VZ, revision 61569

Don't test whether wxTopLevelWindowNative is defined. It seems to be defined for all ports now so there is no need to check whether it is.