2009-09-23 07:05:52 -04:00
|
|
|
-------------------------------------------------------------------------------
|
2006-12-03 08:52:48 -05:00
|
|
|
wxWidgets Change Log
|
|
|
|
-------------------------------------------------------------------------------
|
2002-12-04 21:07:05 -05:00
|
|
|
|
2013-11-15 08:33:34 -05:00
|
|
|
Note: This file contains the list of changes since wxWidgets 3.x, please see
|
|
|
|
docs/changes_30.txt for the changes in the previous versions.
|
2013-11-21 08:47:05 -05:00
|
|
|
|
|
|
|
|
2014-01-25 12:39:21 -05:00
|
|
|
INCOMPATIBLE CHANGES SINCE 3.0.x:
|
|
|
|
=================================
|
|
|
|
|
|
|
|
Changes in behaviour not resulting in compilation errors
|
|
|
|
--------------------------------------------------------
|
|
|
|
|
|
|
|
- wxRibbonButtonBar::DeleteButton() now deletes and not just removes the button.
|
2014-04-08 17:38:09 -04:00
|
|
|
- Default interpolation mode in wxGDIPlusContext under MSW is now
|
|
|
|
wxINTERPOLATION_DEFAULT and not wxINTERPOLATION_GOOD as in 3.0 for
|
|
|
|
consistency with OS X, call SetInterpolationQuality() explicitly if needed.
|
2014-01-25 12:39:21 -05:00
|
|
|
|
2014-12-05 17:17:23 -05:00
|
|
|
- Calling wxYield() in wxMSW now generates wxEVT_IDLE events, just as in the
|
|
|
|
other ports, but this can be unexpected for the applications not expecting
|
|
|
|
their idle handlers to be called from inside wxYield().
|
|
|
|
|
2015-02-03 13:28:21 -05:00
|
|
|
- Creating wxBitmap with 0 width or height now always fails in all ports
|
|
|
|
(it used to succeed in wxMSW).
|
|
|
|
|
2015-04-05 14:30:02 -04:00
|
|
|
- Using invalid flags with wxBoxSizer or wxGridSizer items now triggers asserts
|
|
|
|
when done from the code or error messages when done in XRC.
|
2015-04-03 10:32:32 -04:00
|
|
|
|
2016-02-06 19:32:22 -05:00
|
|
|
- wxWS_EX_VALIDATE_RECURSIVELY is now the default behaviour, i.e. calling
|
|
|
|
Validate() or TransferData{From,To}Window() will now also call the same
|
|
|
|
function for all children.
|
|
|
|
|
2016-02-03 12:19:14 -05:00
|
|
|
- wxOSX/Carbon port doesn't exist any more, wxOSX/Cocoa will be silently used
|
|
|
|
instead even if configure --with-osx_carbon option is used.
|
|
|
|
|
2015-06-24 09:31:04 -04:00
|
|
|
- The pure virtual function wxAppTrait::GetToolkitVersion() now has a parameter
|
|
|
|
for getting the micro version. If you override GetToolkitVersion() you need
|
|
|
|
to add this new third parameter.
|
|
|
|
|
2014-05-27 19:59:10 -04:00
|
|
|
Changes in behaviour which may result in build errors
|
|
|
|
-----------------------------------------------------
|
|
|
|
|
|
|
|
- "webview" library is not included in `wx-config --libs` output any more, you
|
|
|
|
need to request it explicitly, e.g. `wx-config --libs std,webview`.
|
|
|
|
|
2015-10-07 12:31:43 -04:00
|
|
|
- wxMSW now requires linking with shlwapi.lib and version.lib. This is done
|
|
|
|
automatically in most cases, but if you use a static build of the library
|
|
|
|
with a non-MSVC compiler such as MinGW and do not use wx-config, then you
|
|
|
|
will need to add these libraries to your make or project files yourself.
|
|
|
|
|
2015-05-21 20:27:27 -04:00
|
|
|
- WXWIN_OS_DESCRIPTION doesn't exist any longer, use wxGetOsDescription().
|
|
|
|
|
2014-01-25 12:39:21 -05:00
|
|
|
|
2016-03-02 12:55:00 -05:00
|
|
|
3.1.1: (not released yet)
|
|
|
|
----------------------------
|
|
|
|
|
2016-03-04 08:49:40 -05:00
|
|
|
All:
|
|
|
|
|
|
|
|
- Add support for the micro version (third component) to OS and toolkit version
|
|
|
|
functions. See wxGetOsVersion(), wxPlatformInfo, and wxAppTraits.
|
2016-03-04 09:17:35 -05:00
|
|
|
- wxLogInfo() now logs messages if the log level is high enough, even without
|
|
|
|
wxLog::SetVerbose() which now only affects wxLogVerbose().
|
2016-03-04 21:09:59 -05:00
|
|
|
- Add wxFileType::GetExpandedCommand() (troelsk).
|
2016-03-04 08:49:40 -05:00
|
|
|
|
2016-03-05 12:01:01 -05:00
|
|
|
All (GUI):
|
|
|
|
|
2016-03-08 19:08:42 -05:00
|
|
|
- Add support for wxAuiManager and wxAuiPaneInfo to XRC (Andrea Zanellato).
|
2016-03-05 12:01:01 -05:00
|
|
|
- Update Scintilla to v3.6.3 (Paul Kulchenko).
|
|
|
|
|
2016-03-07 09:00:07 -05:00
|
|
|
wxGTK:
|
|
|
|
|
|
|
|
- Implement setting link colours in wxHyperlinkCtrl for GTK+3 (Hanmac).
|
|
|
|
|
2016-03-02 12:55:00 -05:00
|
|
|
wxMSW:
|
|
|
|
|
|
|
|
- Fix crash when using wxCHMHelpController() in 64 bit builds (Xlord2).
|
2016-03-04 22:04:20 -05:00
|
|
|
- Fix MDI menu display after failure to create a child frame (troelsk).
|
2016-03-02 12:55:00 -05:00
|
|
|
|
2016-03-02 13:01:14 -05:00
|
|
|
wxOSX:
|
|
|
|
|
2016-03-04 08:56:17 -05:00
|
|
|
- Remove extra borders around wxFilePickerCtrl (John Roberts).
|
2016-03-04 13:43:53 -05:00
|
|
|
- Set up extensions filter correctly in wxFileDialog (nick863).
|
2016-03-02 13:01:14 -05:00
|
|
|
- Turn off automatic quotes substitutions in wxTextCtrl (Xlord2).
|
2016-03-18 19:12:38 -04:00
|
|
|
- Implement wxDataViewChoiceByIndexRenderer (wanup).
|
2016-03-02 13:01:14 -05:00
|
|
|
|
2016-03-04 20:48:55 -05:00
|
|
|
Unix:
|
|
|
|
|
|
|
|
- Support new gstreamer API in 1.7.2+ in wxMediaCtrl (Sebastian Dröge).
|
|
|
|
|
2016-03-02 13:01:14 -05:00
|
|
|
|
2016-02-28 16:33:37 -05:00
|
|
|
3.1.0: (released 2016-02-29)
|
2013-11-21 08:47:05 -05:00
|
|
|
----------------------------
|
2013-11-22 19:34:55 -05:00
|
|
|
|
2015-04-20 14:07:57 -04:00
|
|
|
- Many improvements for high DPI monitors support, notably XRC now interprets
|
|
|
|
all pixel values as being in resolution-independent pixels.
|
|
|
|
|
2014-08-23 21:50:11 -04:00
|
|
|
- wxQt branch implementing Qt5-based port of wxWidgets API was merged into
|
|
|
|
the trunk (Mariano Reingart, Google Summer of Code project).
|
|
|
|
|
2015-08-03 11:47:09 -04:00
|
|
|
- Added wxNativeWindow allowing to embed native widgets in wxWidgets programs.
|
|
|
|
|
2016-02-22 18:30:49 -05:00
|
|
|
- Improve wxGLCanvas to be more type safe and better support modern OpenGL.
|
|
|
|
|
2013-12-31 09:03:34 -05:00
|
|
|
All:
|
|
|
|
|
2015-08-13 08:27:24 -04:00
|
|
|
- Add UTF-8 and ZIP 64 support to wxZip{Input,Output}Stream (Tobias Taschner).
|
2015-11-14 19:38:26 -05:00
|
|
|
- Upgrade libpng to 1.6.21 fixing several security bugs (Paul Kulchenko).
|
2016-02-23 22:00:07 -05:00
|
|
|
- Support gstreamer 0.10 and 1.0 in wxMediaCtrl (Sebastian Dröge).
|
2016-02-12 21:59:43 -05:00
|
|
|
- Fix handling of Unicode file names in wxFileSystem::FindFirst().
|
2015-09-07 16:06:48 -04:00
|
|
|
- Add wxStandardPaths::GetUserDir() (Tobias Taschner).
|
2014-10-24 17:54:51 -04:00
|
|
|
- Allow calling wxItemContainer::Add() and similar with std::vector<> argument.
|
2014-10-12 16:48:41 -04:00
|
|
|
- Add "%z" support to printf()-like functions like wxString::Format() (RIVDSL).
|
2015-04-26 09:34:18 -04:00
|
|
|
- Add DOCTYPE support to wxXmlDocument (Nick Matthews).
|
2014-08-29 19:22:15 -04:00
|
|
|
- Add wxPowerResourceBlocker (Tobias Taschner).
|
2014-08-24 11:31:52 -04:00
|
|
|
- Add wxApp::StoreCurrentException() and RethrowStoredException() and implement
|
|
|
|
their functionality by default when using C++11 compiler.
|
2014-01-28 08:04:55 -05:00
|
|
|
- Allow iterating over wxCmdLineParser arguments in order (Armel Asselin).
|
2013-12-31 09:03:34 -05:00
|
|
|
- Add wxScopedArray ctor taking the number of elements to allocate.
|
2014-03-11 12:04:06 -04:00
|
|
|
- Add wxDynamicLibrary::GetModuleFromAddress() (Luca Bacci).
|
2014-03-11 12:04:17 -04:00
|
|
|
- Implement wxThread::SetPriority() for pthreads (Luca Bacci).
|
2014-03-19 18:57:44 -04:00
|
|
|
- Add wxInt64 support to wxText{Input,Output}Stream (Alexander Bezzubikov).
|
2014-03-20 09:26:28 -04:00
|
|
|
- Define wxOVERRIDE as override for supporting compilers (Thomas Goyne).
|
2014-06-22 21:08:50 -04:00
|
|
|
- Allow specifying custom comparator for wxSortedArrayString (Catalin Raceanu).
|
2014-08-03 08:47:41 -04:00
|
|
|
- Add wxDateTime::GetWeekBasedYear().
|
2014-09-02 11:35:02 -04:00
|
|
|
- Specialize std::hash<> for wxString when using C++11.
|
2014-09-10 12:51:06 -04:00
|
|
|
- Allow recursive calls to wxYield().
|
2014-10-11 12:30:06 -04:00
|
|
|
- Add wxART_FULL_SCREEN standard bitmap (Igor Korot).
|
2014-10-20 11:08:09 -04:00
|
|
|
- Fix wxStringTokenizer copy ctor and assignment operator.
|
2015-01-24 17:08:41 -05:00
|
|
|
- Added wxASSERT_MSG_AT() and wxFAIL_MSG_AT() macros.
|
2016-01-02 11:32:22 -05:00
|
|
|
- Accept replacement character in wxString::ToAscii() (Stefano D. Mtangoo).
|
2013-12-31 09:03:34 -05:00
|
|
|
|
2014-07-24 07:34:14 -04:00
|
|
|
Unix:
|
|
|
|
|
2015-05-09 13:28:04 -04:00
|
|
|
- Fix bug in wxExecute() if child exited too quickly (Kevin B. McCarty).
|
2014-07-24 07:34:14 -04:00
|
|
|
- Add --disable-sys-libs configure option.
|
2016-01-24 10:19:12 -05:00
|
|
|
- Add --enable-cxx11 configure option.
|
2014-07-24 07:34:14 -04:00
|
|
|
|
2013-11-22 19:34:55 -05:00
|
|
|
All (GUI):
|
|
|
|
|
2014-08-06 19:31:41 -04:00
|
|
|
- Allow requesting modern (3.x+) OpenGL version in wxGLCanvas (Fabio Arnold).
|
2015-03-06 11:43:29 -05:00
|
|
|
- Add wxActivityIndicator.
|
2015-03-19 19:01:57 -04:00
|
|
|
- Add wxWindow::FromDIP() for simpler high DPI support.
|
2015-09-24 08:48:11 -04:00
|
|
|
- Allow initially hiding sizer items in XRC (Bogdan Iordanescu).
|
2014-10-24 17:54:38 -04:00
|
|
|
- Allow customizing window shown by wxBusyInfo.
|
2015-02-08 19:26:11 -05:00
|
|
|
- Add wxAddRemoveCtrl.
|
2015-02-15 15:09:10 -05:00
|
|
|
- Add wxAppProgressIndicator for MSW (Chaobin Zhang) and OS X (Tobias Taschner).
|
2016-02-06 13:18:58 -05:00
|
|
|
- Add support for using checkboxes to wxListCtrl (Maarten Bent).
|
2016-02-06 12:32:13 -05:00
|
|
|
- Add wxListBox::GetTopItem() and GetCountPerPage() (Andreas Falkenhahn).
|
2015-11-24 21:40:40 -05:00
|
|
|
- Add wxTextEntry::ForceUpper().
|
2016-01-22 08:41:06 -05:00
|
|
|
- Add wxTextEntryDialog::ForceUpper().
|
2014-12-16 08:59:26 -05:00
|
|
|
- Add wxEVT_MAGNIFY mouse event (Joost Nieuwenhuijse).
|
2015-03-10 15:28:22 -04:00
|
|
|
- Add wxProcess::Activate().
|
2015-09-11 12:47:49 -04:00
|
|
|
- Fix setting colours of labels in wxSlider.
|
|
|
|
- Fix setting background colour of wxRadioBox buttons.
|
2015-09-06 08:17:46 -04:00
|
|
|
- Add wxTopLevelWindow::Enable{Maximize,Minimize}Button() (John Roberts).
|
2014-11-10 20:02:14 -05:00
|
|
|
- Make results of wxDC::DrawEllipticArc() consistent across all platforms.
|
2014-02-18 10:05:52 -05:00
|
|
|
- XRC handler for wxAuiToolBar added (Kinaou Hervé, David Hart).
|
2015-03-11 17:02:23 -04:00
|
|
|
- Improve wxLIST_AUTOSIZE_XXX support in generic wxListCtrl (Kinaou Hervé).
|
2015-12-02 17:53:00 -05:00
|
|
|
- Support "color", "size" and "font" CSS for fonts in wxHTML (Kinaou Hervé).
|
2015-12-02 21:55:52 -05:00
|
|
|
- Fix one pixel gaps between consecutive underlined words in wxHTML.
|
2014-11-10 20:02:50 -05:00
|
|
|
- Add wxCursor::GetHotSpot().
|
2014-03-05 11:29:46 -05:00
|
|
|
- Add wxFD_NO_FOLLOW style for wxFileDialog (Luca Bacci).
|
2014-02-22 12:26:27 -05:00
|
|
|
- Add support for embedding bitmaps in generated SVG in wxSVGFileDC (iwbnwif).
|
2014-02-05 17:12:53 -05:00
|
|
|
- Add support for sorting wxDataViewCtrl by multiple columns (Trigve).
|
2014-04-27 18:41:40 -04:00
|
|
|
- Allow dropping data on wxDataViewCtrl background (Laurent Poujoulat).
|
2014-08-07 21:03:31 -04:00
|
|
|
- Add wxRendererNative::DrawGauge() (Tobias Taschner).
|
2015-09-17 08:38:03 -04:00
|
|
|
- Add wxRendererNative::DrawItemText() (Tobias Taschner).
|
2013-12-18 11:00:43 -05:00
|
|
|
- Add wxHtmlWindow::SetDefaultHTMLCursor() (Jeff A. Marr).
|
2013-12-18 11:00:21 -05:00
|
|
|
- Add default ctor and Create() to wxContextHelpButton (Hanmac).
|
2014-01-21 13:39:14 -05:00
|
|
|
- Send events when toggling wxPropertyGrid nodes from keyboard (Armel Asselin).
|
2014-02-04 10:59:52 -05:00
|
|
|
- Fix wxRearrangeList::Check() which asserted and misbehaved before.
|
2014-02-15 11:19:43 -05:00
|
|
|
- Optimized wxRTC insertion and deletion when floating objects are present.
|
2014-03-10 07:08:42 -04:00
|
|
|
- Added on-demand image loading option to wxRTC.
|
2014-03-11 16:48:20 -04:00
|
|
|
- Add wxFont::GetBaseFont() (Melroy Tellis).
|
2015-06-14 20:20:11 -04:00
|
|
|
- Update Scintilla to v3.5.5 (Christian Walther, Heyoupeng, ARATA Mizuki).
|
2014-05-08 10:43:45 -04:00
|
|
|
- Add wxStyledTextCtrl copy/paste text events (Christian Walther).
|
2014-05-10 12:16:01 -04:00
|
|
|
- Improve RTL support in wxStyledTextCtrl (Zane U. Ji).
|
2014-03-13 21:36:54 -04:00
|
|
|
- Add support for loading old V1 BMP files to wxImage (Artur Wieczorek).
|
2014-05-04 18:12:42 -04:00
|
|
|
- Improve auto sizing of wrapped cells in wxGrid (iwbnwif).
|
2014-05-05 10:42:35 -04:00
|
|
|
- Fix handling of rectangular selections in wxStyledTextCtrl (roberto).
|
2014-05-29 19:48:46 -04:00
|
|
|
- Fix characters outside of the BMP in wxStyledTextCtrl (Thomas Goyne).
|
2014-06-01 21:15:11 -04:00
|
|
|
- Allow access to the currently shown wxInfoBar buttons (Hanmac).
|
2014-07-06 06:32:42 -04:00
|
|
|
- Add wxGenericListCtrl::EndEditLabel() (Tim Kosse).
|
2014-07-12 15:34:50 -04:00
|
|
|
- Use native renderer for drawing check boxes in wxPropertyGrid (Eran Ifrah).
|
2014-08-29 17:17:16 -04:00
|
|
|
- Fix drawing custom colours of wxEnumProperty items in wxPG (Artur Wieczorek).
|
2014-09-04 15:44:52 -04:00
|
|
|
- Add wxBitmap ctor from wxCursor.
|
2014-09-05 08:46:38 -04:00
|
|
|
- Always disable wxWizard "Back" button on the starting page (pmgrace30).
|
2014-09-10 12:52:01 -04:00
|
|
|
- Add wxUIActionSimulator::Select().
|
2014-10-13 08:08:10 -04:00
|
|
|
- Add wxOwnerDrawnComboBox::Is{List,Text}Empty() methods.
|
2014-11-15 12:14:39 -05:00
|
|
|
- Fix creating/removing mode buttons in wxPG manager (Artur Wieczorek).
|
2014-12-05 17:17:58 -05:00
|
|
|
- Harmonize wxMenuEvent handling between all major ports.
|
2015-02-13 14:42:07 -05:00
|
|
|
- Fix wxPGChoices copy ctor (Snoits).
|
2015-02-15 13:35:13 -05:00
|
|
|
- Show how to handle files on command line in docview sample (Neil Mayhew).
|
2015-05-09 13:05:05 -04:00
|
|
|
- Improve wxFileCtrl::SetFilename() and SetPath() (Kevin B. McCarty).
|
2015-05-10 16:07:46 -04:00
|
|
|
- Fix a crash when using animated GIFs in wxHtmlListBox.
|
2015-08-08 05:30:45 -04:00
|
|
|
- Use platform-specific stock icons for wxEditableListBox buttons.
|
2016-01-08 18:38:17 -05:00
|
|
|
- Add support for the events from multimedia keys (Jens Göpfert).
|
2014-04-12 08:18:47 -04:00
|
|
|
- Improve wxAUI appearance in high contrast themes (Zane U. Ji).
|
2016-01-30 20:22:55 -05:00
|
|
|
- Allow suppressing warnings from wxImage::LoadFile().
|
2016-02-07 19:10:47 -05:00
|
|
|
- Allow customizing wxRibbon highlight colours (wxBen).
|
2013-12-28 19:01:43 -05:00
|
|
|
|
2014-01-10 09:18:54 -05:00
|
|
|
wxGTK:
|
|
|
|
|
|
|
|
- Support building wxGTK3 under Windows (Kolya Kosenko).
|
2016-02-28 12:03:35 -05:00
|
|
|
- Implement support for non-wxTextCtrl custom editors in wxDataViewCtrl.
|
2014-10-12 16:48:52 -04:00
|
|
|
- Fix vertical cell alignment in wxDataViewCtrl.
|
2014-11-01 09:56:30 -04:00
|
|
|
- Fix clearing of wxComboBox with wxCB_READONLY (Chuddah).
|
2015-05-09 13:22:28 -04:00
|
|
|
- Fix setting "pressed" bitmap for wxToggleButton (Kevin B. McCarty).
|
2015-03-02 08:32:53 -05:00
|
|
|
- Fix GTK+ warnings for wxFileDialog with wxFD_MULTIPLE style.
|
2016-01-30 12:54:09 -05:00
|
|
|
- Don't generate wxEVT_LIST_ITEM_RIGHT_CLICK outside of item area (Igor Korot).
|
2016-02-05 11:00:57 -05:00
|
|
|
- Implement wxDataViewCtrl::SetIndent().
|
2014-01-10 09:18:54 -05:00
|
|
|
|
2013-12-28 19:01:43 -05:00
|
|
|
wxMSW:
|
|
|
|
|
2015-03-24 18:39:40 -04:00
|
|
|
- Make default wxSizer border DPI-aware.
|
2016-02-13 06:31:49 -05:00
|
|
|
- Implement native appearance for wxAUI tabs and toolbars (Tobias Taschner).
|
2016-02-18 16:56:48 -05:00
|
|
|
- Show more modern-looking wxNotificationMessages under 8+ (Tobias Taschner).
|
2014-01-19 08:15:48 -05:00
|
|
|
- Improve wxMimeTypesManager open command detection (Eric Jensen).
|
2013-12-28 19:01:43 -05:00
|
|
|
- Make wxFILTER_INCLUDE_LIST in wxTextValidator actually usable.
|
2015-06-18 17:57:59 -04:00
|
|
|
- Fix handling crashes in wxEVT_PAINT event handlers.
|
2015-06-19 00:43:06 -04:00
|
|
|
- Fix wxStackWalker to work with Unicode identifiers (Suzumizaki-kimitaka).
|
2014-12-06 20:52:42 -05:00
|
|
|
- Fix appearance of toggled wxToggleButtons with bitmap (tm).
|
2014-03-23 11:18:37 -04:00
|
|
|
- Fix setting menu item bitmaps after appending them (Artur Wieczorek).
|
2014-06-09 16:33:17 -04:00
|
|
|
- Fix setting label of submenu items (Artur Wieczorek).
|
2014-01-21 13:39:09 -05:00
|
|
|
- Fix handling of selected images in wxBitmapButton (Artur Wieczorek).
|
2014-02-24 15:55:00 -05:00
|
|
|
- Fix loading of bitmap with non-pre-multiplied alpha (Artur Wieczorek).
|
2014-01-31 14:33:53 -05:00
|
|
|
- Support multiline strings in wxDC::DrawRotatedText() (Artur Wieczorek).
|
2014-03-06 20:19:13 -05:00
|
|
|
- Fix stretchable spacers in vertical toolbars (Artur Wieczorek).
|
2014-05-04 18:13:12 -04:00
|
|
|
- Implement setting foreground colour for wxRadioButton (Artur Wieczorek).
|
2014-03-18 13:23:13 -04:00
|
|
|
- Add font colour support to wxFontPickerCtrl (Pana Alexandru).
|
2014-03-11 12:04:22 -04:00
|
|
|
- Add wxEnhMetaFile::Detach() (Luca Bacci).
|
2014-03-12 19:04:24 -04:00
|
|
|
- Add support for saving 256*256 32bpp ICOs in PNG format (Artur Wieczorek).
|
2014-03-26 20:02:28 -04:00
|
|
|
- Keep menu item icon after removing and adding it back (Artur Wieczorek).
|
2014-04-27 18:41:50 -04:00
|
|
|
- Add wxThread::MSWGetHandle() (troelsk).
|
2014-05-06 14:20:38 -04:00
|
|
|
- Allow using sizers for laying out wxMDIClientWindow (Artur Wieczorek).
|
2014-08-03 08:47:26 -04:00
|
|
|
- Fix updating wxSlider background when its parent background changes.
|
2014-09-10 12:51:17 -04:00
|
|
|
- Implement wxListBox::EnsureVisible() (RIVDSL).
|
2014-09-27 16:46:25 -04:00
|
|
|
- Drastically improve efficiency of selecting all items in wxDataViewCtrl.
|
2016-02-05 20:04:00 -05:00
|
|
|
- Fix spurious selection events generation in wxDataViewCtrl.
|
2014-11-10 20:02:31 -05:00
|
|
|
- Fix wxMenuEvent::GetMenu() for wxEVT_MENU_{OPEN,CLOSE} in MDI frames.
|
2014-12-05 17:19:10 -05:00
|
|
|
- Fix updating wxSpinCtrlDouble tooltip text (Laurent Poujoulat).
|
2014-12-05 17:19:25 -05:00
|
|
|
- Fix appearance of checked disabled wxToolBar tools with custom images.
|
2014-12-27 09:24:58 -05:00
|
|
|
- Fix reading of not NUL-terminated strings using wxRegKey (Steffen Olszewski).
|
2015-01-02 20:07:53 -05:00
|
|
|
- Fix unexpected change in MDI children order after showing a file dialog.
|
2015-03-22 20:10:00 -04:00
|
|
|
- Don't send events for already selected radio popup menu items (Kinaou Hervé).
|
2015-05-31 18:32:09 -04:00
|
|
|
- wxListCtrl::GetItemCount() in wxEVT_LIST_INSERT_ITEM is no longer off by 1.
|
2015-05-31 18:40:26 -04:00
|
|
|
- Don't send bogus root selection events when clicking wxTreeCtrl (sbrowne).
|
2015-07-17 09:11:01 -04:00
|
|
|
- Avoid bogus assert after calling wxDatePickerCtrl::SetRange().
|
2015-07-21 11:38:36 -04:00
|
|
|
- Add solution file for building with MSVS 2014 (Peter Tissen).
|
2015-08-04 07:23:25 -04:00
|
|
|
- Correct wxGetOsDescription() for Windows 10 (Tobias Taschner).
|
2015-09-17 08:46:27 -04:00
|
|
|
- Make wxListCtrl &c appearance more native on modern systems (Tobias Taschner).
|
2015-09-04 10:23:13 -04:00
|
|
|
- Don't send wxActivateEvent for minimized windows (bzcdr).
|
2015-10-31 13:05:43 -04:00
|
|
|
- Return correct OS version under Windows 8.1 and later.
|
2016-01-29 19:55:15 -05:00
|
|
|
- Fix crash in wxD2DContext when using non-MSVC compiler (iwbnwif).
|
2016-02-03 13:01:46 -05:00
|
|
|
- Notify shell about the changes done by wxMimeTypesManager (Maarten Bent).
|
2016-02-10 09:22:51 -05:00
|
|
|
- Fix wxPrintf() and friends when using MinGW with ANSI stdio option.
|
2016-02-13 06:49:21 -05:00
|
|
|
- Fix strike-through support in wxFont with GDI+ (David Vanderson).
|
2016-02-21 08:38:17 -05:00
|
|
|
- Fix UTF-32 conversion for non-BMP characters (ARATA Mizuki).
|
2016-02-21 08:44:23 -05:00
|
|
|
- Use correct parent for the native modal dialogs (Andreas Falkenhahn).
|
2016-02-21 08:51:25 -05:00
|
|
|
- Fix layout of wxSlider with wxSL_VALUE_LABEL only (gafatoa).
|
2014-02-04 04:32:16 -05:00
|
|
|
|
|
|
|
wxOSX/Cocoa:
|
|
|
|
|
2016-02-22 17:53:30 -05:00
|
|
|
- Make wxiOS (iPhone) port build and minimally work again (Tobias Taschner).
|
2015-06-05 17:28:30 -04:00
|
|
|
- Use more efficient FSEvents (10.7+) in wxFileSystemWatcher (Roberto Perpuly).
|
2015-03-12 08:37:17 -04:00
|
|
|
- Implement wxWindow::Disable() for non-native controls too (Steve Browne).
|
2015-09-06 08:12:16 -04:00
|
|
|
- Implement wxTopLevelWindow::EnableCloseButton() (John Roberts).
|
2015-05-09 12:21:36 -04:00
|
|
|
- Fix wxEVT_CHAR for non-BMP Unicode characters (ARATA Mizuki).
|
2016-01-31 20:12:10 -05:00
|
|
|
- Add wxTE_AUTO_URL support to wxTextCtrl (Igor Korot).
|
|
|
|
- Add support for wxEVT_COMBOBOX_{DROPDOWN, CLOSEUP} events (Igor Korot).
|
2016-02-22 16:51:59 -05:00
|
|
|
- Implement strike-through support in wxFont (Igor Korot, Daniel Kulp).
|
2015-09-09 09:47:48 -04:00
|
|
|
- Provide native implementation of wxStandardPaths (Tobias Taschner).
|
2015-10-21 18:06:45 -04:00
|
|
|
- Add wxTE_{RIGHT,CENTER} support for multiline wxTextCtrl (Andreas Falkenhahn).
|
2015-10-25 13:46:06 -04:00
|
|
|
- Don't leave wxSlider labels shown when the slider itself is hidden.
|
2015-11-08 21:48:24 -05:00
|
|
|
- Don't generate wxEVT_TEXT_ENTER for controls without wxTE_PROCESS_ENTER.
|
2016-01-08 11:02:19 -05:00
|
|
|
- Implement wxToolTip::SetDelay() (David Vanderson).
|
2016-01-31 19:58:17 -05:00
|
|
|
- Correct positioning of popup menus relative to mouse pointer (John Roberts).
|
2016-02-27 10:31:47 -05:00
|
|
|
- Add support for right-aligned checkboxes (John Roberts).
|