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

2011-08-28 23:27 DS, revision 68939

Call GetAlpha() to get a pointer instead of checking for alpha first. It's safe to call GetAlpha() even if there's no alpha because in that case NULL will be returned.

2011-08-28 15:00 SC, revision 68938

make sure svn info for an already existing .xcodeproj folder is not deleted, replace project file itself in place

2011-08-28 09:11 SC, revision 68937

adding missing doc string for BACKSPACE

2011-08-28 08:54 SC, revision 68936

routing keys like ESC etc, fixes #13429

2011-08-28 01:26 RD, revision 68935

* Implement dynamic loading of the Cairo DLL on Windows similar to how it was done for GDI+. * Enable the use of the wxCairoContext on MSW. * Enable creating a wxGCDC from an exisiting wxGraphicsContext. * Since it's possible for a DLL that is using wx to not be on the PATH nor in the same location as the .exe, change the wxDynamicLibrary::RawLoad method to explicitly look first in the same place as the main wx-using binary. This way it will find DLLs that are in the same folder as the wx-using binary even if that would not be in the normal DLL search path. * Change wxDCImpl and wxDC::GetLogicalScale to be const methods.

2011-08-27 18:44 VS, revision 68932

More understandable symbolic constants in generic wxDVC's DoJob class.

2011-08-27 18:44 VS, revision 68931

Use spacebar to activate items in generic wxDataViewCtrl too. Pressing Spacebar now behaves the same as Enter in the generic control, for consistency with the GTK+ control and native Windows list controls.

2011-08-27 18:44 VS, revision 68930

Remove DestroyTreeHelper(), make GetChildNodes() const, add RemoveChild(). There's no reason for DestroyTreeHelper() code, that's what destructors are for. On a related note, make removal of children from a node more explicit too.

2011-08-27 18:44 VS, revision 68929

Add wxDataViewMainWindow::GetModel() helper. It's slightly less verbose than GetOwner()->GetModel() used all over the place.

2011-08-27 18:44 VS, revision 68928

Better names in wxDataViewTreeNode. GetChildNodes() instead of GetNodes(), AddChild() instead of AddNode().

2011-08-27 17:23 VS, revision 68927

Use wxTE_PROCESS_ENTER with wxDataViewCtrl text controls. wxDVC code depends on wxEVT_COMMAND_TEXT_ENTER to hide the inline editing controls. Fixes #13412.

2011-08-27 16:58 VZ, revision 68926

No real changes, minor corrections to the docs. Don't leave a line break inside a @code block as it's preserved in the HTML output, making it appear ugly.

2011-08-27 16:56 VZ, revision 68925

Copy generic images when building the documentation too. The images used by @genericAppearance Doxygen macro were not copied to the output directory.

2011-08-27 16:50 VZ, revision 68924

Compilation fix for wxTreeListCtrl when not using PCH. Include wx/dc.h normally included from wx/wxprec.h.

2011-08-27 16:11 VZ, revision 68923

No changes, just fix the file name in the header comment of wxDVC test. s/tree/dataview/

2011-08-27 16:11 VZ, revision 68922

Make wxBU_EXACTFIT fir the button text more exactly. Too big margins were added for the buttons with wxBU_EXACTFIT style making them larger than strictly necessary. Reduce the margins to make them really as small as possible.

2011-08-27 16:11 VZ, revision 68921

Added wxFLP_SMALL and wxDIRP_SMALL styles for wx{File,Dir}PickerCtrl. These styles allow to use a smaller browse button as the standard one takes too much space, often leaving too little of it for the more important text control part. Notice that both styles are, in fact, equal to wxPB_SMALL but only file and directory pickers currently use it as it doesn't make sense for the colour and font pickers.

2011-08-27 16:11 VZ, revision 68920

Auto complete file names in the text controls of wx{File,Dir}PickerCtrl. There doesn't seem to be any reason not to do this in the controls which we know are meant for entering file or directory names into them.

2011-08-27 16:11 VZ, revision 68919

Make the file and dir picket controls expand in widgets sample. The controls were too small to see long paths in them comfortably while there was plenty of space in the page, use wxEXPAND flag for them.

2011-08-27 16:11 VZ, revision 68918

Add wxTextEntry::AutoCompleteDirectories(). As we already had MSW-specific AutoCompleteFileNames(), we can just as well also add the also useful AutoCompleteDirectories() to be used with the text controls used for path entry.

2011-08-27 16:11 VZ, revision 68917

No changes, just fix a typo in wxBannerWindow documentation.

2011-08-27 16:11 VZ, revision 68916

Add new wxTreeListCtrl class. This is a facade for wxDataViewCtrl allowing to easily work with multi-column trees, possibly with an optional checkbox in the first column. Its API is very similar to wxTreeListCtrl and it provides a simple migration path from the latter. Add the class itself, documentation for it and minimal unit tests.

2011-08-27 15:24 VS, revision 68915

Notify GtkTreeView if a node stops being a parent. GtkTreeView requires the row-has-child-toggled signal to be emitted in this situation, so do it from ItemDeleted handler. Curiously, it handles adding the first child automatically. That's good, because detecting this situation when adding the first child wouldn't be trivial and so not having to do it is a plus. (Emitting it on every node addition doesn't sound like a terribly bright idea.)

2011-08-27 15:24 VS, revision 68914

Save memory in wxDataViewTreeNode. Put data that are meaningful only for non-leaf nodes into a separate struct that is only allocated for branch nodes. This makes branch nodes larger by sizeof(void*), but leaf nodes save >50% of memory.

2011-08-27 15:24 VS, revision 68913

Simplified generic wxDataViewCtrl's tree structure. Use just one type, wxDataViewTreeNode, to represent any kind of node. Previously a complicated structure that represented leaves and non-leaf nodes differently was used. This make the code way too complicated and caused some smaller bugs (see e.g. #13256). As a side effect, this change makes the control react correctly to changes in IsContainer() return values. Also fixes #13256.