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-06-13 09:06 MYA, revision 64574

Change to a better name. :)

2010-06-13 08:40 MYA, revision 64573

Validate the input data from image dialog.

2010-06-13 07:38 MYA, revision 64572

Popup the image dialog in richtext sample.

2010-06-12 23:26 VZ, revision 64571

Fix scrolling to the bottom in wxTextCtrl::AppendText(). The old code used EM_LINESCROLL which could scroll too far if the caret wasn't in the first line of the control. Instead of trying to compute the correct number of the lines to scroll, just use WM_VSCROLL with SB_BOTTOM parameter instead. Closes #12123.

2010-06-12 23:10 SJL, revision 64570

Add support for wxKeyCode conversion in OSX wxUIActionSimulator code. Improve key sending order. Closes #12117

2010-06-12 20:21 VZ, revision 64569

Fix processing of events for MRU entries #10 and more in docview. We only handled events for wxID_FILE1..wxID_FILE9 range but there can be more than 9 entries in the MRU list. Handle events for as many of them as there are correctly. This required adding a fallback handler for all menu events and checking if the id of the menu item is in the MRU range inside it. Also move this to wxDocManager itself from wxDocParentFrameAnyBase as it's common for all kinds of frames anyhow. Closes #12141.

2010-06-12 13:28 VZ, revision 64566

Stop the timer in console IPC client sample once we don't need it any more. Under MSW the timer appeared to be flooding the message queue with timer events faster than we could process them (which seems incredible for the timer interval of 1 second but still seems to happen), so the idle events were never generated and the sample didn't work at all. Now stop the timer once we get a last notification from it to let the program become idle and run the test function scheduled from the timer handler. See #11528.

2010-06-12 13:28 VZ, revision 64565

Avoid sending spurious socket read notifications in wxMSW. If a read notification is generated for a socket, it should be possible to read something from it without blocking but this doesn't seem to be always the case under MSW for some reason. And this results in all sorts of problems in wxSocket and wxIPC code, so check for this at wxSocketImpl level and not send the notification at all if there is no data to read. See #11528.

2010-06-12 12:31 JMS, revision 64564

For wxTextCtrl editor, set the bold font before margins are set up or it will not work properly

2010-06-12 11:47 JMS, revision 64563

Keyboard handling was blocked by label editor. Also try to maintain label editor focus state when navigating between properties.

2010-06-12 11:30 JMS, revision 64562

Added wxPropertyGrid::DedicateKey(), which prevents specific key presses from being eaten by editor controls. This is useful for customizing keyboard navigation. Also added utility function wxPGFindInVector<>(), which is used in the new code, and also in some other places.

2010-06-11 22:42 VZ, revision 64559

Add wx/msgqueue.h to the list of wxBase headers and rebake. This header has somehow never been added to build/bakefiles/files.bkl, do add it now.

2010-06-10 17:17 JWE, revision 64557

unitary test finished for wxMaskedEdit

2010-06-10 16:56 VZ, revision 64555

Fix typo in an error message in XTI code. Closes #12139.

2010-06-10 16:36 MYA, revision 64554

Make the dialog and the sample ready, now deal with the simple aligment/resize layout.

2010-06-10 14:43 RR, revision 64552

Implemented wxDataViewColumn for wxOSX/Cocoa

2010-06-10 13:53 RR, revision 64550

Suppress warning about double->int conversion

2010-06-10 13:47 RR, revision 64549

Make wxDataViewCtrl::GetColumnPosition() return the index under MSW as per GTK and the docs (fixes #12129), give immediate visual feedback after calling e.g. wxDataViewColumn::SetHidden(true) under MSW, also per GTK+ and as I'd expect. Make GTK+ control emit header click events also for non-reorderable columns. Add a few tests for wxDataViewColumn::SetHidden() and wxDataViewCtrl::GetColumnPosition()

2010-06-10 12:40 VZ, revision 64548

Add missing Init() call to one of wxListBox ctors in wxMSW. Overloaded ctor taking wxArrayString didn't call Init() so the wxListBox fields were not initialized. Fix it by adding the Init() call. Closes #12138.

2010-06-09 22:35 JMS, revision 64544

wxAny CheckType() member functions are now const

2010-06-09 22:22 JMS, revision 64543

wxAny CheckType() member functions should be const

2010-06-09 20:10 JTN, revision 64542

WindowDC implementation

2010-06-09 20:05 JTN, revision 64541

Fixes QImage -> wxImage conversion

2010-06-09 20:04 JTN, revision 64540

Fix #64534 commit

2010-06-09 20:03 FM, revision 64539

Increase interoperability between wxPoint and wxRealPoint introducing constructors which convert between the two classes.