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

2012-02-15 16:40 VZ, revision 70607

Remove non-existent wxPGChoices methods from the documentation. wxPGProperty::Add(wxArrayString, ValArrItem), GetItemAtY() and HasValue() were documented but don't actually exist, remove them. Also correct wxPGProperty::Empty() scope: it's protected and not public. Closes #13988.

2012-02-15 16:40 VZ, revision 70606

Fix typo in wxOwnerDrawnComboBox ctor documentation. "[]" was in the wrong place. Closes #13987.

2012-02-15 16:40 VZ, revision 70605

Fix typo in wxMultiChoiceDialog::GetSelections() name in the documentation. Closes #13986.

2012-02-15 16:40 VZ, revision 70604

Mark Mac-specific wxMenuBar methods with @onlyfor{wxosx}. Closes #13985.

2012-02-15 16:39 VZ, revision 70603

Document the default size of new wxMemoryBuffer correctly. Documenting it as DefBufSize wasn't really helpful, so just use its value instead (an alternative would be to document DefBufSize -- with its value -- but it doesn't seem very useful to make it part of the public API). Closes #13984.

2012-02-15 16:39 VZ, revision 70602

Fix wxMediaCtrl::GetPlaybackRate() method name in the documentation. Closes #13983.

2012-02-15 16:39 VZ, revision 70601

Document wxConvFileName variable, not wxMBConvFile class. The class doesn't exist (and the documentation even says that much) but the global variable does exist, so document it instead. Closes #13982.

2012-02-15 16:39 VZ, revision 70600

Added wxFileName::Exists(). This function checks for existence of anything with the given name, not necessarily just a file or a directory. Extend the unit test to verify that it returns true for /dev/null on Unix systems. Closes #953.

2012-02-15 16:39 VZ, revision 70599

Refactor wxFileName existence checking code. Merge FileExists() and DirExists() together in a single wxFileSystemObjectExists() helper in preparation for adding a function checking for the existence of any kind of file system object. There should be no changes for MSW/Unix but OS/2 file detection was changed slightly to always use DosQueryPathInfo() instead of using it only for the directories and stat() for files. Not sure if this is the right thing to do there but it seems like the code should work. Also add a simple unit test for these functions. See #953.

2012-02-15 16:39 VZ, revision 70598

Explicitly document that hidden windows get wxEVT_IDLE events. This wasn't always the case and could be unexpected so document this behaviour clearly, also explain the rationale for it.

2012-02-15 08:04 PC, revision 70597

avoid sending mouse events to the wrong window, fixes #2917

2012-02-15 01:36 VZ, revision 70594

Document wxLogGui::DoShow{Single,Multiple}LogMessage() as private. These methods should be documented because they can be overridden but they're private so document them as such. Closes #13981.

2012-02-15 01:35 VZ, revision 70593

Don't document wxListCtrl::SetColumnsOrder() as being const. Because it isn't. Closes #13980.

2012-02-15 01:35 VZ, revision 70592

Clean up wxListBox documentation. Remove the methods inherited from the base class, there is no need to re-document them here, especially as this was done incorrectly for Set(). Do document EnsureVisible() and IsSorted(). Closes #13979.

2012-02-15 01:35 VZ, revision 70591

Make documentation of wxIcon::ConvertToDisabled() more explicit. Use @onlyfor{wxmsw} and explain how can the same task be done under the other platforms. Closes #13977.

2012-02-15 01:35 VZ, revision 70590

Document wxFTP::TransferMode enum in the correct scope. It's declared inside wxFTP class and not in global scope. Closes #13976.

2012-02-15 01:35 VZ, revision 70589

Document wxGB{Position,Size}::operator!=(), remove operator!(). The latter doesn't exist (any more?), the former does. Closes #13975.

2012-02-15 01:35 VZ, revision 70588

Remove documentation of non-existent wxFontMapper::SetConfig(). Closes #13974.

2012-02-15 01:35 VZ, revision 70587

Document Mac-only wxFileName methods as being Mac-only. Use @onlyfor for them for consistency and to help the automated code generators. Closes #13971.

2012-02-15 01:35 VZ, revision 70586

Document wxFileType::MessageParameters class. Documentation is not really very helpful but better than nothing. Closes #13972.

2012-02-15 01:35 VZ, revision 70585

Fix wrong type of wild card parameter in wxFileCtrl documentation. It is a string, not a point. Closes #13970.

2012-02-15 01:35 VZ, revision 70584

Make wxDragImage ctors taking hot spot point really deprecated in wxMSW. They were documented as deprecated and deprecated in the generic version (and actually not even available there any more without WXWIN_COMPATIBILITY_2_6) but not in wxMSW, where we just had the weird wxLogDebug() statements that were inconsistent with our handling of deprecation everywhere else. Do deprecate them now, remove wxLogDebug() and also remove the deprecated ctors and Create() overloads from the documentation. Finally, remove the documentation of deprecated and available in the generic version only ctor taking only wxCursor (closes #13967).

2012-02-15 01:35 VZ, revision 70583

Document wxDocManager::CreatePreviewFrame() as being protected, not public. Simply move the function documentation to the correct class section. Closes #13966.

2012-02-15 01:35 VZ, revision 70582

Don't document private event handlers in doc/view frame classes. wxDoc[MDI]ParentFrame::OnCloseWindow(), wxDoc[MDI]ChildFrame::OnActivate() and OnCloseWindow() are all private, don't document them as public. Just mention that the wxEVT_CLOSE_WINDOW and wxEVT_ACTIVATE should be left for the processing in the frame classes to let the default handling take place. Closes #13965.

2012-02-15 00:14 VZ, revision 70581

Mention __WIN64__ in the preprocessor defines documentation.

2012-02-15 00:09 VZ, revision 70580

Remove the mention of non-existing wxPrintf_l() from the documentation. This function doesn't exist (yet), so don't advise people to use it.

2012-02-13 16:23 SC, revision 70579

adding missing initializer to raw_control, fixes #13963

2012-02-13 16:22 SC, revision 70578

adapting comparison to raw_control, see #13963

2012-02-12 23:19 VZ, revision 70577

Don't document deprecated wxComboCtrl::SetValueWithEvent(). This method shouldn't be used at all, either SetValue() or ChangeValue() should be used instead, so don't document it. Closes #13961.

2012-02-12 23:19 VZ, revision 70576

Implement wxDV_ROW_LINES for generic wxDataViewCtrl. Provide wxDataViewCtrl::SetAlternateRowColour() to specify the colour to use for odd rows explicitly but determine it automatically from the background colour if no explicit colour was specified. Closes #12834.

2012-02-12 23:18 VZ, revision 70575

Don't use deprecated wxDataViewCtrl::StartEditor() in the sample. Also document this deprecation in the change log and explain how to update the existing code.

2012-02-11 21:32 RD, revision 70573

remove some wxPython-only methods that were accidentally added to the interface file

2012-02-11 20:39 PC, revision 70572

remove wxGraphicsContext dependency for transparent background support

2012-02-11 19:36 VZ, revision 70571

Document wxDateTime::GregorianAdoption enum and TimeZone class. These types are referenced by the other documented functions so should be documented themselves. Closes #13959.

2012-02-11 19:36 VZ, revision 70570

Fix "wxEmptyStr" typo in wxChoicebook and wxToolbook documentation. It should be "wxEmptyString". Closes #13955.

2012-02-11 17:26 VZ, revision 70569

Implement wxBG_STYLE_TRANSPARENT support for wxGTK. Use composited windows if supported by GTK+ for wxWindows with this background style. Also add wxWindow::IsTransparentBackgroundSupported() and show how to use it in the sample.

2012-02-11 17:26 VZ, revision 70568

Update marks in non-current months shown in wxMSW wxCalendarCtrl. Native wxMSW calendar control can show more than just the current month. When other months are shown, ensure that they don't have marks for the days marked in the current month as this doesn't make sense. See #13934.

2012-02-11 17:26 VZ, revision 70567

Set marks used in wxMSW wxCalendarCtrl unconditionally. This fixes wrong display (random days could have been shown marked) when not using wxCAL_SHOW_HOLIDAYS style. Apparently we need to set the marks unconditionally as they are not turned off by default, so ensure we call UpdateMarks() even without wxCAL_SHOW_HOLIDAYS. See #13934.

2012-02-11 17:26 VZ, revision 70566

Also add wxNativeFontInfo::SetStrikethrough() stub for wxGTK2. This should have been done in r70563 which added the stub to wxGTK1 part only.

2012-02-11 00:34 VZ, revision 70565

Added a test for wxUSE_DATAOBJ to wxDFB which doesn't support it. This is just one of many, many things not supported by wxDFB but check for at least this one as it prevents even the precompiled header from being created.

2012-02-11 00:34 VZ, revision 70564

Fix compilation ofr ports without native font info, such as wxDFB. Don't use wxString::ToLong() with short variable.

2012-02-11 00:34 VZ, revision 70563

Add stubs for wxNativeFontInfo::{Get,Set}Strikethrough() to wxGTK. These functions are not implemented currently (just as their {Get,Set}Underlined() counterparts) but should still be defined to allow the code using wxNativeFontInfo to link.

2012-02-10 19:30 RD, revision 70557

Don't include the terminating NUL

2012-02-10 11:22 VZ, revision 70556

Fix wxHash{Set,Map} compilation with g++ 4.7 in C++11 mode. Fully qualify the hasher and comparator classes used with WX_DECLARE_HASH_{SET,MAP} macros as they're used as base classes by the standard library implementation in g++ 4.7 and using them without the scope operator results in compilation errors because they're interpreted as being (inaccessible) base classes and not the global ones.

2012-02-09 17:22 VZ, revision 70554

Document MSW-only wxEVT_MOVING event. As we documented EVT_MOVE_{START,END}, we should do it for this one as well.

2012-02-09 14:24 VZ, revision 70553

Fix typo in wxSlider XRC format documentation. "pagesize" was documented as line size, fix this. Closes #13949.

2012-02-09 00:45 VZ, revision 70545

Fix wrong signature of wxBitmap(bits) ctor in the documentation. This ctor takes just a "char* bits" (spelt as "char bits[]" for some reason), not "char* bits[]". Closes #13947.

2012-02-08 13:59 VZ, revision 70544

Restrict button size restrictions documentation to OSX/Carbon only. OSX/Cocoa doesn't have these restrictions. Closes #13122.

2012-02-08 03:09 VZ, revision 70543

Document that wxStandardPaths::GetUserConfigDir() doesn't use app info. Explicitly mention this instead of just relying on the examples to convey it. Closes #11275.

2012-02-08 03:09 VZ, revision 70542

Use wxSTC_INVALID_POSITION in wxStyledTextCtrl documentation. Comments -- copied from the generated header file -- used INVALID_POSITION which is not actually defined, replace it with wxSTC_INVALID_POSITION that is defined. Closes #11454.

2012-02-08 03:09 VZ, revision 70541

Document wxAUI_NB_MIDDLE_CLICK_CLOSE. Also mention that it's part of wxAUI_NB_DEFAULT_STYLE. Closes #13382.

2012-02-08 01:22 RD, revision 70538

Interface fixes changing fiction into truth.

2012-02-08 01:20 RD, revision 70537

Following the theory that something lame is better than nothing at all, provide a very generic implementation of the ctor wxRegion::wxRegion(size_t n, const wxPoint *points, wxPolygonFillMode fillStyle) by drawing the polygon into a bitmap and using that to create the region.

2012-02-08 01:16 RD, revision 70536

Add an empty implementation of the OSXGenerateEvent() pure virtual so the generic date picker ctrl can be used in the cocoa build.

2012-02-08 00:57 RD, revision 70535

Don't assume that XCode is in /Developer. Use "xcode-select -print-path" instead.

2012-02-08 00:55 RD, revision 70534

use buf.length() instead of strlen()

2012-02-08 00:55 RD, revision 70533

Add length parameter to AddTextRaw and AppendTextRaw. Closes #1358

2012-02-07 22:38 VZ, revision 70532

Avoid CRT deprecation warnings for MSVC build using makefiles too. Define _CRT_SECURE_NO_DEPRECATE, _CRT_NON_CONFORMING_SWPRINTFS and _SCL_SECURE_NO_WARNINGS when using makefiles to build the library too for consistency with the project files. These defines are only needed for VC8 and later but should do no harm for the previous versions. See #11009.

2012-02-07 22:38 VZ, revision 70531

Rebake all project files to reflect MSVC deprecation warnings defines. Rebake all the projects after the changes of r70182, even if they're only really needed for the library itself, the other project files should correspond to the bakefiles contents too.

2012-02-07 17:40 SC, revision 70530

forwarding mouse moved events to the view under the mouse, not the firstResponder

2012-02-07 14:48 VZ, revision 70529

Fix wxAboutDialogInfo::GetName() return type in the documentation. wxString is returned by value, not const reference. Closes #13941.

2012-02-07 14:02 VZ, revision 70528

Fix infinite loop in wxHtmlEasyPrinting page break code. The code didn't handle cells higher than the page height correctly and entered an infinite loop when trying to adjust page breaks in their presence, e.g. when trying to print a very tall image. Closes #13935.

2012-02-07 14:02 VZ, revision 70527

No real changes, just pass const wxArrayInt to wxHtmlCell::AdjustPagebreak(). AdjustPagebreak() never modifies the array passed to it, so pass it as const reference. See #13935.

2012-02-07 11:33 JJ, revision 70526

Update setup for OpenVMS to make wxX11 work again

2012-02-06 14:28 VZ, revision 70525

Return NULL from wxAuiNotebook::GetCurrentPage() if there is no selection. Make it behave as wxBookCtrlBase::GetCurrentPage() and just silently return NULL instead of asserting if there is no selection. Closes #13932.

2012-02-06 14:28 VZ, revision 70524

Fix typo in an event type constant in wxTreeListCtrl documentation. s/CHeCKED/CHECKED/g Closes #13931.

2012-02-06 14:28 VZ, revision 70523

Fix handling of positional parameters in wxPrintf() and related. Handle positional parameter specifications in wxFormatConverter to ensure that e.g. "%N$s" are correctly transformed to "%N$S" if needed. This fixes the use of positional parameters under OS X. Closes #10965.

2012-02-05 23:54 SN, revision 70521

Reverted bogus fix for bogus bug report #13402.

2012-02-05 23:53 SN, revision 70520

Reverted bogus fix for bogus bug report #13402.

2012-02-05 23:20 SN, revision 70519

Mark unused parameter as such, fixes #13402.

2012-02-05 23:20 SN, revision 70518

Mark unused parameter as such, fixes #13402.

2012-02-05 18:43 PC, revision 70517

remove code ifdef-ed on __X__, it is never defined for wxGTK

2012-02-05 16:45 VZ, revision 70516

Don't set PAGESETUPDLG::hDevNames and hDevMode when using PSD_RETURNDEFAULT. If the page setup dialog is used to retrieve the default information, hDevMode and hDevNames fields must not be set, otherwise PageSetupDlg() function simply fails because of incorrect parameters passed to it. Closes #13928.

2012-02-05 15:18 VZ, revision 70515

Fix huge performance problem in wxStdInputStream when using MSVC8/9. Our overridden xsgetn() method was never called when using these compilers because they used their own, non-standard, _Xsgetn_s() instead. Because of this the stream was always read character by character which was very inefficient. Fix the problem by overriding _Xsgetn_s() for these compilers and explicitly forwarding it to xsgetn(). Closes #13926.

2012-02-05 15:18 VZ, revision 70514

Take void** client data in wxSingleChoiceDialog ctor and not char**. The client data is supposed to be untyped, there is really no reason (other than compatibility with C conventions of 40 years ago) to use char** here. So don't do it and provide the versions taking "void**" keeping "char**" ones for backwards compatibility only. Also deprecate GetSelectionClientData() that returned char* and add a new GetSelectionData() returning void* instead. Closes #13876.

2012-02-05 15:18 VZ, revision 70513

Preserve focus when window is minimized and restored in wxMSW. Add specific code to save and restore the focus when the window is minimized and restored in wxMSW as the existing code in WM_ACTIVATE handler wasn't enough because this event was generated too late when minimizing the window (when it was already minimized and so the focus had been already lost) and too early when restoring it (so the window was still minimized and restoring focus failed). This is still not perfect as we do in our code something Windows would be expected to do automatically but for whatever reason, it doesn't do it for wxWidgets programs, and this manual workaround at least prevents the annoying total focus loss. Closes #1599.

2012-02-05 15:18 VZ, revision 70512

Ensure that the progress dialog parent is activated at the end under MSW. The progress dialog parent was supposed to become the new foreground window when the progress dialog was closed, but this didn't happen because m_parentTop was never set when the native progress dialog implementation was used under MSW. Fix this by explicitly calling the new SetTopParent() from its ctor.

2012-02-05 15:18 VZ, revision 70511

No changes, just implement Raise() in wxTopLevelWindow in wxMSW. Get rid of two identical implementations in wxFrame and wxDialog and only override this function once in wxTopLevelWindow.

2012-02-05 02:20 VZ, revision 70510

Fix initial state of radio toolbar tools in wxGTK. The last radio group item was initially checked under wxGTK instead of the first one, as under the other platforms. Fix this by correcting the check for the first radio group item which was inversed in wxToolBar::DoInsertTool().

2012-02-05 02:20 VZ, revision 70509

Never refresh controls from EVT_PAINT handler in wxPropertyGrid. Refreshing the controls after finishing repainting the grid results in an infinite stream of paint events, so don't do this, especially as this doesn't seem to have any bad consequences under wxGTK which was the only major platform where this behaviour was enabled. Also rename wxPG_REFRESH_CONTROLS_AFTER_REPAINT to just wxPG_REFRESH_CONTROLS and keep the control refreshing code for wxGTK only in a couple of places outside of EVT_PAINT handler to be on the safe side.

2012-02-04 13:22 VZ, revision 70508

Fix the URL generated by Doxygen @sampledir macro. "samples/" part of the URL was missing, add it. Closes #13925.

2012-02-04 12:45 VZ, revision 70507

Document wxNO_3D as being obsolete. This style doesn't do anything any more, so replace it documentation with a deprecation notice.

2012-02-03 18:57 VZ, revision 70506

Fix typo in EVT_TREE_END_LABEL_EDIT documentation. Wrong event type was used, correct it. Closes #13922.

2012-02-03 18:27 VZ, revision 70505

Check string length correctly in wxFileSystem::URLToFileName(). Check that the string is long enough before accessing its first and second characters to fix a crash when an empty or one-character string was passed to wxFileSystem::URLToFileName(). Closes #13920.

2012-02-03 18:27 VZ, revision 70504

Enable callbacks for wxFileSystemWatcher FD under OS X. We need to enable callbacks to get them initially, otherwise no events are ever detected. Closes #13919.

2012-02-03 18:27 VZ, revision 70503

Fix speed regression in wxFileHistory::AddFileToHistory(). Avoid full normalization including wxPATH_NORM_LONG when adding files to wxFileHistory as this can take a very long time when using network paths under Windows. Closes #13915.

2012-02-03 15:15 VZ, revision 70502

Turkish translations update from Kaya Zeren.

2012-02-03 01:24 VZ, revision 70501

Fix the type of global font constants in the documentation. wxNORMAL_FONT, wxSMALL_FONT &c were documented as wxFont objects but they are really wxFont pointers. Closes #13917.

2012-02-03 01:21 VZ, revision 70500

Fix bug with mouse wheel scrolling wxStyledTextCtrl in long running programs. In long running programs the wxEvent time stamp could wrap around resulting in all mouse wheel events being ignored in wxStyledTextCtrl as the comparison of the (positive) time until which all the subsequent events were supposed to be blocked and the (now negative) current event time stamp would be always false. Fix this by using wxStopWatch::TimeInMicro() to avoid wraparound instead of wxEvent::GetTimestamp(). Also rename the variable to have a more clear name as the original code wasn't easy to understand. Closes #9057.

2012-02-02 21:32 SJL, revision 70499

Disable navigation sounds in wxWebViewIE. This brings the backend into line with the other backends. Also add a general method for changing INTERNETFEATURELIST settings. See #13694

2012-02-02 15:26 VZ, revision 70498

Fix initial wxRadioBox buttons positions in wxMSW. We only updated the button positions when the radio box was moved or resized after being created but didn't do it initially, so a radio box created with fixed position and size didn't lay out its buttons correctly. Do lay them out immediately after creating the radio box to fix this. Closes #13912.

2012-02-02 15:19 VZ, revision 70497

Add wxFontDialog ctor not taking wxFontData to wxOSX. wxFontDialog should have ctor and Create() overload taking just wxWindow parent in addition to the one taking parent and wxFontData used to initialize the dialog but it didn't have them in wxOSX, do add them now. Closes #13908.

2012-02-02 15:19 VZ, revision 70496

Fix wxDataViewCtrl::GetItemRect() signature in wxOSX and document it better. The second parameter of this method should be optional, so make it so in wxOSX. Also document what this method does exactly and the platforms under which it's implemented. Closes #13914.

2012-02-01 14:25 SC, revision 70494

should not bring to front upon focussing

2012-01-31 20:39 VZ, revision 70493

Remove duplicate wxPoint2DInt operator declarations. No real changes, just remove the redundant declarations. Closes #13900.

2012-01-31 20:38 VZ, revision 70492

Set the file name for temporary wxFFile objects. Pass the name of the temporary file to wxFFile::Attach(). This allows to give more useful error messages if any operation on this file fails later. Closes #13903.

2012-01-31 20:38 VZ, revision 70491

Document wxFFile::GetName(). Somehow this method was not documented. See #13903.

2012-01-31 18:44 PC, revision 70490

remove virtual override that just calls base

2012-01-31 18:41 PC, revision 70489

implement wxGetMousePosition without using X-specific code

2012-01-31 18:39 SC, revision 70488

guarding Update() on OSX not to be issued faster than 1/30 later than the last redraw