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

2014-08-23 02:22 VZ, revision 77140

Fix zorder between combo box and static box in controls sample for wxQT (so the combobox can receive events after staticbox is created)

2014-08-23 02:22 VZ, revision 77139

Fix choice best size calculation (it was overriding wxQT hints, specially for default height)

2014-08-23 02:22 VZ, revision 77138

Fix combobox sizing in wxQT (minimal is bigger than normal hint in this case) IMPORTANT: not seting MinSize as semantic seems a bit different with wxWidgets so it causes regressions in wxNotebook

2014-08-23 02:22 VZ, revision 77137

Use label height for top border in static box (to fix inner sizing issues in wxQT, similar solution than wxMSW)

2014-08-23 02:22 VZ, revision 77136

Fix radio box vertical / horizontal style implementation (selecting QVBoxLayout or QHBoxLayout accordingly)

2014-08-23 02:22 VZ, revision 77135

Fix sizing in radio box using a QVBoxLayout so get best size works (qt sizeHint)

2014-08-23 02:22 VZ, revision 77134

Remove rule for Qt's moc precompiler as no longer needed

2014-08-23 02:22 VZ, revision 77133

Use new Qt5 syntax to connect signals to QObject's member functions in wxQT, removing SLOT and SIGNAL macros (third stage to remove moc)

2014-08-23 02:22 VZ, revision 77132

Remove Q_OBJECT and Q_SLOTS from wxQT headers to avoid vtable linking issues (second stage to remove moc)

2014-08-23 02:22 VZ, revision 77131

Unify wxQT helpers code (*_qt.cpp) inside main source files (*.cpp), some headers (*_qt.h) remains independent to avoid include problems (first stage to remove moc)

2014-08-23 02:21 VZ, revision 77130

Remove Q_OBJECT macro for wxQT notebook to avoid vtable link-time error due no moc precompilation being used (not needed as not using slots)

2014-08-23 02:21 VZ, revision 77129

Use wxQtEventSignalHandler for wxQtTabWidget helper (and move declaration to header)

2014-08-23 02:21 VZ, revision 77128

Revert wxQT provisional notebook size fix in sample control (fixed in previous commits)

2014-08-23 02:21 VZ, revision 77127

Move DoGetBestSize() from wxWindow to wxControl to let wxWindowBase properly calculate sizes (ie. tabs inside wxNotebook) in wxQT

2014-08-23 02:21 VZ, revision 77126

Fix bad logic preventing wxSizeEvent triggering at Window::Show() due unreachable code in wxQT

2014-08-23 02:21 VZ, revision 77125

Fix notebook tab selection on insert (wxQt)

2014-08-23 02:21 VZ, revision 77124

Use wxVector<int> in new code for storage of internal imageId in notebook tabs (wxQT), wxArrayXXX stuff is legacy

2014-08-23 02:21 VZ, revision 77123

Fix style coding guidelines remarks

2014-08-23 02:21 VZ, revision 77122

Add support for notebook page change events in wxQT (using helper and new Qt5 connect syntax calling QObject member)

2014-08-23 02:21 VZ, revision 77121

Add some checks and to test wxQT notebook implementation with controls sample

2014-08-23 02:21 VZ, revision 77120

Fix notebook page removal in wxQT (add missing call to base)

2014-08-23 02:21 VZ, revision 77119

Add internal imageId array to implement notebook tabs image retrival in wxQT

2014-08-23 02:21 VZ, revision 77118

Implement notebook set page image and removal in wxQT

2014-08-23 02:21 VZ, revision 77117

Add support for images (QIcon) in notebook tabs (wxQT)

2014-08-23 02:21 VZ, revision 77116

Add inserted notebook page to the internal array of pages in wxQT (fix page order and possibly other issues)