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-05-18 20:43 JTN, revision 64335

wxPen implementation (QPen)

2010-05-18 12:29 VZ, revision 64334

Add AM_PATH_WXRC to wxwin.m4 for backwards compatibility. Although the new WXRC_CHECK is preferred, still allow using AM_PATH_WXRC for the applications which need to build in both 2.8 and 2.9 environments. Closes #12069.

2010-05-18 12:29 VZ, revision 64333

Compilation fix for wxUSE_LOG_DEBUG==0 case. Don't do anything in wxDISABLE_DEBUG_LOGGING_IN_RELEASE_BUILD() if we don't use debug logging anyhow. Closes #12070.

2010-05-16 22:12 SJL, revision 64332

Rework wxUIActionSimulator X11 backend. Refactor key event sending into a separate function and move it into an anonymous namespace along with the existing SendButtonEvent. Replace much of the window and display code with a simpler alternative. Add conversion from a wxKeyCode to an X11 KeyCode as per wxMSW, to do this wxCharCodeXToWX and wxCharCodeWXToX declarations were moved to utilsx11.h and WXKeySym was defined.

2010-05-16 17:52 RR, revision 64327

Added quick implementation of wxDataViewChoiceByIndexRenderer, closes #11970 (wxDataViewChoiceRenderer set/get methods should use the current selection index

2010-05-16 17:44 FM, revision 64326

remove TestTimer() (adds nothing to existing tests) and move wxStopWatch tests to a new CppUnit test.

2010-05-16 17:36 RR, revision 64325

No-PCH compilation fix

2010-05-16 17:32 FM, revision 64324

move TestUtf8() and TestEncodingConverter() functions to UnicodeTestCase. Disable some code which does not run clean and mark it with FIXME comments (needs revision).

2010-05-16 17:29 RR, revision 64323

Part II of: Add GetChoice() and GetChoices() getters to all choice renderers and actually mention it in the docs

2010-05-16 17:26 RR, revision 64322

Add GetChoice() and GetChoices() getters to all choice renderers and actually mention it in the docs

2010-05-16 16:53 FM, revision 64321

remove ZIP tests: they seem to have been greatly expanded and enhanced by tests/archive/archive.cpp and tests/archive/ziptest.cpp

2010-05-16 16:44 RR, revision 64320

Don't call super class explicitly so overriding is possible, closes #12025 (wxDataViewVirtualListModel calls super-class' version of certain virtual methods).

2010-05-16 16:36 FM, revision 64319

remove wxDateTime tests which were already extracted as tests/datetime/datetime.cpp (keep only the interactive test)

2010-05-16 16:31 FM, revision 64318

move TestTextInputStream() function in CppUnit's TextStreamTestCase class

2010-05-16 16:30 RR, revision 64317

Applied #11755: wxBitmapToggleButton Xml Handler

2010-05-16 16:23 RR, revision 64316

Allow calling iter_children with parent being NULL, hopefully fixes #12035 (wxDataViewCtrl crashes when selecting item)

2010-05-16 16:02 PMO, revision 64315

Update to trunk r64311

2010-05-16 15:21 VS, revision 64314

Fix incorrect painting of backgrounds inside notebook. Children without transparent background (e.g. wxListBox) were still pained using notebook's background brush. They shouldn't, it should apply only to transparent-bg controls. This fix is not perfect, see #12057.

2010-05-16 14:31 VZ, revision 64313

Mention that stock bitmaps are a wxGTK-only feature for now. Apparently people expect to see stock bitmaps under MSW too, make it clear that they won't be used there. See #12051.

2010-05-16 14:31 VZ, revision 64312

Fix links to wxArtClient and wxArtID in the generated documentation. Add a "class" keyword to fix what looks like a bug in Doxygen. Closes #12052.

2010-05-15 17:24 PMO, revision 64311

Added wxCalendarCtrl implementation from Kolya Kosenko

2010-05-15 13:36 PMO, revision 64310

Remove obsolete qt files

2010-05-15 13:15 VZ, revision 64309

Clip drawing in wxRendererGeneric::DrawHeaderButtonContents(). Clip drawing of the icon and bitmap to the header rectangle. Don't clip the text because we already ellipsize it to avoid overflowing but do the ellipsization correctly, using wxControl::Ellipsize() instead of the simple (and wrong) duplicated version here. Also correct and simplify the alignment calculations. Closes #12047.

2010-05-15 13:15 VZ, revision 64308

Don't change the current pen and brush in DrawHeaderButtonContents(). Renderer methods shouldn't affect the functions drawing on the DC after it but the wxRendererGeneric implementation did. Use wxDC{Pen,Brush}Changer classes instead of calling wxDC::Set{Pen,Brush}() directly.

2010-05-15 12:47 VZ, revision 64307

Add more tests for wxRendererNative::DrawHeaderButton(). Test using icons and bitmaps in it. Also show the native/default implementation of this method and not only our overridden version. See #12047.