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-08-03 19:14 JS, revision 65169

Don't reset bullet number and outline number when applying style sheet.

2010-08-03 15:37 JTN, revision 65168

wxDC: Blitting support (Implemented painting to a QImage first, then to the actual device)

2010-08-03 14:59 VS, revision 65167

Fix MSVC warning about int->bool conversion.

2010-08-03 13:28 JTN, revision 65166

wxDC: useMask implemented

2010-08-02 23:14 RAW, revision 65162

Removed use of a compatibility header.

2010-08-02 15:26 JS, revision 65157

Don't create a font when converting to wxTextAttrEx unless one exists in the wxRichTextAttr

2010-08-01 21:48 JTN, revision 65156

Window styles for wxWindow, wxTopLevelWindow, wxFrame, wxMessageDialog. Changed wxWindow implementation to QFrame (to allow for borders)

2010-08-01 15:40 PMO, revision 65155

Minimum implementation for wxCheckList, wxRadioButton, wxTextCtrl, wxButton, wxNotebook, wxBitmapButton, wxComboBox, wxStaticBitmap, wxSlider, wxStaticText, wxListBox, wxCheckBox, wxGauge, wxChoice

2010-08-01 12:11 VS, revision 65154

Fix Tab navigation when focused control is disabled.

2010-08-01 01:51 RAW, revision 65153

Fully filled out configure.in with the settings for wxCommandLinkButton and wxRichMessageDialog.

2010-08-01 01:31 RAW, revision 65152

Added wxRTTI information to platforms using generic wrappers for wxCommandLinkButton and wxRichMessageDialog.

2010-08-01 01:22 RAW, revision 65151

HasNativeTaskDialog() always returns false when task dialogs are not available at compile-time and moved to the wxMSWMessageDialog namespace.

2010-07-31 21:53 JTN, revision 65150

Dialog fixes (crashed when exiting by clicking on top-right X)

2010-07-31 20:43 JTN, revision 65149

Accelerator implementation. Documented in wx/qt/accel.h

2010-07-30 12:15 JWE, revision 65142

add F formatCodes and remove printf

2010-07-30 11:19 JWE, revision 65141

add docs and sample doc

2010-07-29 22:54 VS, revision 65140

Fix wxDataViewCtrl to omit expander space for all kinds of lists. List-only models don't have expanders and so the control shouldn't reserve any space for them; the notion of expander column doesn't make sense here. Previously, this was done correctly only for wxDataViewVirtualListModel; "ordinary" list models, such as the one used by wxDataViewListCtrl, were treated as generic tree models and 0th column had ugly empty space reserved for (never used) expander. This patch fixes it by adding IsListModel() helper function in addition to existing IsVirtualListModel(). Some of the IsVirtualListModel() tests were changed into IsListModel() checks as appropriate.

2010-07-29 18:57 RR, revision 65139

Add ability to render checkbox in undeterminate state, fixes #12290: wxRendererGTK does not support wx.CONTROL_UNDETERMINED for checkboxes

2010-07-29 17:30 VS, revision 65138

Fix gcc warning in wxDataViewListCtrl::ItemToRow().

2010-07-28 20:22 VZ, revision 65131

Fix wxOSX wxTextCtrl refactoring of r65129. Add the Init() calls in wxNSTextFieldControl ctors forgotten the last time. Closes #12284.

2010-07-28 20:22 VZ, revision 65130

Allow non-modal windows shown from modal dialogs to work in wxOSX. Use kCGUtilityWindowLevel for such windows instead of kCGFloatingWindowLevel and also call setWorksWhenModal:YES. Closes #12187.

2010-07-28 13:27 VZ, revision 65129

Add association between wxOSX wxTextWidgetImpl and wxTextEntry. This allows to always find the correct wxTextEntry to use in the implementation of text-related widgets without using any casts. Notably, the wrong up-cast of wxWindow to wxTextCtrl in wxNSTextFieldControl::controlAction() which resulted in a crash when the window was actually a wxComboBox can now be fixed. Closes #12284.

2010-07-28 13:26 VZ, revision 65128

Correct the check for MRU menu items range. The last id of the range if offset by the first one by the number of items in the menu, not the base id of the file history menu. Closes #12141.

2010-07-28 13:26 VZ, revision 65127

Correct id in the wxRichTextCtrl::OnUndo() documentation. wxID_PASTE was wrongly used instead of wxID_UNDO. Closes #12278.

2010-07-28 13:26 VZ, revision 65126

Return after activating already opened document in wxDocManager. Add accidentally omitted "return" in wxDocManager::CreateDocument() to prevent recreating already opened documents. Closes #12277.