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-02 21:41 RD, revision 68490

Revert r68416 which should not have been committed to this tag.

2011-08-02 16:43 JS, revision 68489

Added semicolon needed by MSVC++ 6

2011-08-02 11:44 SJL, revision 68488

Implement HasSelection for the OSX WebKit backend.

2011-08-02 11:21 SJL, revision 68487

Add EnableHistory support to the OSX WebKit backend.

2011-08-01 19:57 SJL, revision 68485

Fix warnings for the OSX WebKit backend.

2011-08-01 19:41 SJL, revision 68484

Fix compilation for OSX backend.

2011-08-01 17:49 SJL, revision 68483

Add missing wxRTTI macros and fix incorrect ones.

2011-08-01 16:05 SJL, revision 68482

Hide the infobar in the sample if we start navigating to another page.

2011-08-01 15:20 SJL, revision 68481

Fix remaining warnings in ie backend.

2011-08-01 15:09 SJL, revision 68480

Fix all the unused variable warnings in the sample.

2011-08-01 14:54 SJL, revision 68479

Make web sample XPMs const to fix compiler warnings on gcc.

2011-08-01 14:35 SJL, revision 68478

Fix a couple of warning that crept back into the GTK backend.

2011-08-01 12:10 SJL, revision 68477

Add missing lines to setup.h.in. This properly fixes compilation under configure based environments. Also update the include guards for the wxWebHistoryItem files.

2011-07-31 17:37 SJL, revision 68474

Rework the GTK WebKit backend history to remove the need for the map between wxWebHistoryItems and WebKitWebHistoryItems.

2011-07-31 16:06 SJL, revision 68473

Split wxWebHistoryItem headers out into separate files for each backend. This will allow us to dramatically reduce the amount of code in the GTK history implementation and implement it and OSX history support more cleanly.

2011-07-31 15:25 VS, revision 68472

Silence Clang warning about numeric_limits<> specialization. libstdc++ (which is used by Clang) defines numeric_limits<> as a struct and Clang issues a warning about our specialization that uses 'class'. As libstdc++ developers have no intention of fixing this, silence the Clang warning by using 'struct' for it.

2011-07-31 15:25 VS, revision 68471

Disable symbols visibility support for the Clang compiler. Even Clang++ shipped with Xcode 4.1 still can't handle visibility of non-inline methods in exported template classes if the default visibility is 'hidden'. Disable visibility support for Clang for now, we'll revisit it in the future.

2011-07-31 14:19 VZ, revision 68470

Correct typo in wxArray::insert() fix of r68468. A wrong variable was mistakenly used. Closes #13371.

2011-07-31 12:50 SJL, revision 68469

Simplify the wxWebFileHandler code by using a map to store the query string and manipulate it.

2011-07-31 01:38 VZ, revision 68468

Fix crash in wxArray::insert() overload taking iterator range. The iterator passed as argument could be invalidated by the function itself, update it before using it. Closes #13371.

2011-07-30 23:54 VZ, revision 68467

Generate events with WXK_NONE Unicode keys for non-characters in wxOSX. The keyboard keys not corresponding to real characters, such as cursor arrows or function keys, must generate wxKeyEvents with WXK_NONE as Unicode key code to make it possible to distinguish them from the printable characters but wxOSX generated events with valid Unicode key codes for them instead. Avoid this by excluding Unicode key codes corresponding to code points in the Unicode private use area: while this doesn't seem to be documented anywhere, all non-printable characters seem to have their Unicode representation inside it. This change brings wxOSX keyboard event generation in line with the other ports and, as a side effect, also closes #12423.

2011-07-30 23:54 VZ, revision 68466

Avoid bogus focus loss event when wxTextCtrl is modified in wxOSX. A wxEVT_KILL_FOCUS event was generated when wxTextCtrl::WriteText() was called in wxOSX, even though the control didn't lose focus at all in this case. This was completely unexpected and thoroughly confused wxGrid code which closed the in place editor immediately after showing it because of this (this was perhaps only the case since r68319 but the changes there were correct so they only masked the real bug). Avoid this bogus event by remembering the NSView currently being programmatically modified and not doing anything in textDidEndEditing notification if it is generated for this view.

2011-07-30 23:54 VZ, revision 68465

Improve wxTextCtrl::GetNumberOfLines() unit test and documentation. First, enable execution of the Lines() wxTextCtrl unit test case under wxOSX as it passes since the fix in the previous commit. Do add a test for GetNumberOfLines() that currently doesn't work in the same way under all platforms -- but with this test we at least can be sure how does it work exactly where. Also mention the current discrepancy in this function behaviour in the documentation. See #12366. Fix Lines() wxTextCtrl unit test to pass under wxGTK too.

2011-07-30 23:54 VZ, revision 68464

Fix off by one error in wxTextCtrl::GetLineLength() in wxOSX. The trailing new line shouldn't be counted in the line length.

2011-07-30 23:54 VZ, revision 68463

Fix stock accelerators handling in wxOSX. No modifiers were used for stock accelerators, i.e. Append(wxID_NEW) resulted in an item with the label "New" and plain "N" as accelerator in wxOSX. This was due to wxACCEL_CMD not being handled in wxAcceleratorEntry::ToString() so map it to the same prefix as wxACCEL_CTRL there, this is enough to make the accelerators work even though it's not clear whether this is really the best thing to do or if we should use a separate "Cmd+" prefix for it (and recognize it in Parse() too then) as otherwise it's unclear why do we have wxACCEL_CMD at all, it just seems to be treated identically to wxACCEL_CTRL everywhere.

2011-07-30 19:40 VZ, revision 68462

Emphasize that wxStandardPaths must not be created directly. wxStandardPaths::Get() must be used instead as the correct object to use might have a different type. See #11239.

2011-07-30 16:22 SJL, revision 68461

Overhaul wxWebHandler naming to try and make it consistent with the rest of wxWidgets. Split wxWebFileHandler into its own file.

2011-07-30 13:30 VZ, revision 68460

Get rid of ugly wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST macro. Replace it with wxWindowWithItems<> template class which takes care of disambiguating between the two inherited Get/SetClientXXX() versions and use it as a base class in all clases that previously used the macro.

2011-07-30 13:30 VZ, revision 68459

Resolve ambiguity between GetClientXXX() methods in wxOSX wxComboBox. Use wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST for wxOSX/Cocoa too, not only for wxOSX/Carbon. This macro adds methods to explicitly disambiguate between the two inherited versions of each GetClientXXX() method, the one from wxItemContainer and the other one from wxEvtHandler. Closes #11637.

2011-07-30 13:26 SJL, revision 68458

Add new wxEVT_COMMAND_WEB_VIEW_TITLE_CHANGED event. Implement for all backends, extend the sample to demonstrate it and document. Also update some copyright notices.

2011-07-29 17:11 VZ, revision 68450

Add wxTextCtrl::PositionToCoords() functions for wxMSW and wxGTK. The new method allows to find the coordinates in pixels of the given character in a text control. Closes #13221.

2011-07-29 12:33 SJL, revision 68449

Add CombineURIs implementation for wxWebFileProtocolHandler. Update the IE backend to use it. Using the IE backend navigating through zip archives is now functional, including loading resources and links.

2011-07-28 19:22 PC, revision 68448

fix child allocations in size_allocate: can't use GtkFixedChild

2011-07-28 18:58 SJL, revision 68447

Tidy up the include guards for the various wxWebView header files.

2011-07-28 18:49 SJL, revision 68446

Move the wxWebFileProtocolHandler from the IE backend to the common source, add the RegisterProtocol method to all classes (as a stub in GTK and OSX). Register the file protocol handler in the sample for testing purposes.

2011-07-28 18:08 SJL, revision 68445

Initial implementation of wxWebProtocolHandler and wxWebFileProtocolHandler for the IE backend. This allows browsing of local files and files in zip archives when using a query string which specifies the protocol and path.

2011-07-28 07:35 PC, revision 68444

configuration and build fixes

2011-07-28 05:26 JC, revision 68443

Fixed a minor bug

2011-07-28 01:19 LV, revision 68442

wxMobile test(ing) project, created in order to make sure all features work on wxiOS

2011-07-28 01:19 LV, revision 68441

wxButton, wxTableCtrl fixes to support properties

2011-07-28 01:19 LV, revision 68440

Enforced GCC 4.2 on Xcode mobile projects

2011-07-27 14:35 JS, revision 68438

Compile fix

2011-07-26 23:37 VZ, revision 68437

Mention wxGTK wxAnimation implementation limitations in the docs. The native GTK implementation doesn't provide information about the frames count nor access to individual frames. See #13365.

2011-07-26 21:41 JC, revision 68435

Made wxgtk3 can also be built with gtk2

2011-07-26 19:43 JC, revision 68434

Removed unnecessary #ifdef

2011-07-26 18:41 JC, revision 68433

Merged to the trunk head

2011-07-26 18:11 SJL, revision 68432

Very basic implementation of IInternetProtocolInfo, this will allow us to correctly parse links in virtual file systems.

2011-07-26 17:34 JC, revision 68431

Merged to the trunk head

2011-07-26 17:23 JC, revision 68430

Merged to the trunk head

2011-07-26 15:45 SJL, revision 68429

Add a couple of missing forward declarations.

2011-07-26 15:14 SJL, revision 68428

We always let the user handle new window events so set the policy appropriately in the WebViewGTK+ backend.

2011-07-26 13:44 SJL, revision 68427

Fix compilation errors under OSX.

2011-07-26 13:31 VZ, revision 68426

Compilation fix: include wx/event.h from wx/containr.h. We now need wxEVT_XXX constants declarations in this file (at least when not wxHAS_NATIVE_TAB_TRAVERSAL) so include wx/event.h to fix PCH-less build of wxOSX.

2011-07-26 09:51 JC, revision 68425

Updated version number to 2.9.3. More src merges will be needed to catch up the head

2011-07-26 09:35 JC, revision 68424

Merged to the trunk head

2011-07-26 09:24 JC, revision 68423

Merged to the trunk head

2011-07-26 09:13 JC, revision 68422

samples/drawing compiled with wxgtk3

2011-07-26 01:31 DS, revision 68421

Fixed wxOSX-Cocoa compilation. OS X' wxComboBox::Init does not exist anymore since r68366 but an implementation still was present in combobox_osx.cpp which is used in Cocoa compilation. Removed the function.

2011-07-26 00:31 DS, revision 68420

Fixed containr.h compilation with gcc. At least apple-gcc 4.0 and 4.2 gave a compilation error on the three Connect calls in containr.h, insisting (unless using -fpermissive) on a declaration of Connect because there are no arguments to it that depend on a template parameter. Fixed by prepending BaseWindowClass to the Connect calls. Regression since r68363.

2011-07-25 20:57 RD, revision 68416

Initialize the native printer info for ConvertFromNative if it hasn't been done already.

2011-07-25 19:14 JC, revision 68403
  • D /wxWidgets/branches/SOC2011_GTK3/include/wx/gtk/dcclient_gtk2.h
  • D /wxWidgets/branches/SOC2011_GTK3/include/wx/gtk/dcmemory_gtk2.h
  • D /wxWidgets/branches/SOC2011_GTK3/include/wx/gtk/dcscreen_gtk2.h

Removed duplicated files

2011-07-25 18:54 SJL, revision 68402

Merge in from trunk r67662 to r64801

2011-07-25 17:43 SJL, revision 68401

Fix warnings in the MSW IE backend.

2011-07-25 17:19 SJL, revision 68400

We no longer need to veto the new window event in the sample as the behaviour has been unified across the ports.

2011-07-25 17:10 SJL, revision 68399

Link to urlmon from wxWeb to fix the compilation errors as we use CoInternetGetSession.

2011-07-25 16:30 SJL, revision 68398

Rename GetHref to GetURL in wxWebNavigationEvent, this brings it into line with the other functions in wxWebView.

2011-07-25 15:55 SJL, revision 68397

Add support for EVT_WEB_VIEW_NEWWINDOW to the OSX WebKit backend.

2011-07-25 15:37 SJL, revision 68396

Clarify what GetTarget actually returns in wxWebNavigationEvent.

2011-07-25 15:23 SJL, revision 68395

Update handling and documentation for new window events. Clarify that you must handle the event if you require an action, the default is for nothing to happen.

2011-07-25 12:46 SJL, revision 68394

Remove some now unused history variables.

2011-07-25 09:43 JC, revision 68393
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/dc.cpp

Removed unnecessary files

2011-07-25 09:33 JC, revision 68392
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/gnome
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/hildon

Removed unnecessary files

2011-07-25 09:32 JC, revision 68391
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/dnd.cpp

Removed unnecessary file

2011-07-25 09:27 JC, revision 68390

Merged more files from src/gtk3 to src/gtk

2011-07-25 08:32 JC, revision 68389
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/dataobj.cpp
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/evtloop.cpp

Merged evtloop.cpp from src/gtk3 to src/gtk

2011-07-25 08:13 JC, revision 68388
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/bdiag.xbm
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/cdiag.xbm
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/cross.xbm
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/fdiag.xbm
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/horiz.xbm
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/verti.xbm

Removed duplicated image files

2011-07-25 08:07 JC, revision 68387

Merged win_gtk.cpp from src/gtk3 to src/gtk

2011-07-25 08:06 JC, revision 68386
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/win_gtk.cpp.old

Merged win_gtk.cpp from src/gtk3 to src/gtk

2011-07-25 08:06 JC, revision 68385

Merged win_gtk.cpp from src/gtk3 to src/gtk

2011-07-25 07:59 JC, revision 68384
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/menu.cpp

menu.cpp has been merged to src/gtk

2011-07-25 07:49 JC, revision 68383
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/renderer.cpp.old

renderer.cpp is not needed in src/gtk3

2011-07-25 07:48 JC, revision 68382

renderer.cpp is not needed in src/gtk3

2011-07-25 07:00 JC, revision 68381
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/minifram.cpp.old

minifram.cpp is not needed in src/gtk3

2011-07-25 07:00 JC, revision 68380

minifram.cpp is not needed in src/gtk3

2011-07-25 06:26 JC, revision 68379
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/glcanvas.cpp

glcanvas.cpp is not needed in src/gtk3

2011-07-25 06:19 JC, revision 68378
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/private.cpp.old

Removed unnecessary src/gtk3/private.cpp

2011-07-25 06:18 JC, revision 68377

Merged src/gtk3/private.cpp to src/gtk/private.cpp

2011-07-25 05:51 JC, revision 68376
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/descrip.mms
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/eggtrayicon.c
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/eggtrayicon.h
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/taskbar.cpp

Removed unnecessary files in src/gtk3

2011-07-25 03:10 JC, revision 68375

Merged settings.cpp from src/gtk3 to src/gtk

2011-07-25 03:10 JC, revision 68374
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/settings.cpp.old

Removed unnecessary file settings.cpp.old

2011-07-25 03:09 JC, revision 68373

Merged settings.cpp from src/gtk3 to src/gtk

2011-07-25 02:56 JC, revision 68372
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/clipbrd.cpp.old

Removed unnecessary file clipbrd.cpp.old

2011-07-25 02:55 JC, revision 68371

Merged clipbrd.cpp from src/gtk3 to src/gtk

2011-07-25 02:40 JC, revision 68370
  • D /wxWidgets/branches/SOC2011_GTK3/src/gtk3/cursor.cpp.old

Removed unnecessary file cursor.cpp.old

2011-07-25 02:40 JC, revision 68369

Merged cursor.cpp from src/gtk3 to src/gtk

2011-07-25 00:19 VZ, revision 68368

No changes, just remove unnecessary wxPickerBase::OnSize(). This method did the same thing as the base wxWindow class event handler. Also remove wxPickerBase event table which became empty after removing this method.

2011-07-25 00:19 VZ, revision 68367

Exclude windows not accepting keyboard focus from GTK focus chain. For some reason the test for AcceptsFocusFromKeyboard() wasn't done in the correct place when constructing the GTK focus chain and even windows returning false from it were still added to it. Do not do this any more, this prevents the windows which are really not meant to be focusable from keyboard (such as the pseudo-buttons in the generic implementation of wxSearchCtrl) from gaining focus unexpectedly. See #12808.

2011-07-25 00:19 VZ, revision 68366

Replace wxControlContainer-related macros with wxNavigationEnabled<>. Simply inherit classes which need to provide TAB navigation among their children from wxNavigationEnabled<> and remove the now unnecessary WX_DECLARE_CONTROL_CONTAINER() macros. Also remove WX_INIT_CONTROL_CONTAINER(), WX_DELEGATE_TO_CONTROL_CONTAINER() and WX_EVENT_TABLE_CONTROL_CONTAINER() which are not needed neither any more. And remove the event tables which became empty after removing the last macro.

2011-07-25 00:19 VZ, revision 68365

Don't give focus to wxSearchButton when using keyboard navigation. The search control buttons don't show that they have focus and are not meant to have it anyhow as they are more control decorations than real buttons and their functionality can be activated by pressing "Enter" or "Escape" already from the keyboard. But giving it to them made TAB behave unexpectedly and wrongly when wxSearchCtrl had focus. Override AcceptsFocusFromKeyboard() to return false to correct this. See #12808.

2011-07-25 00:19 VZ, revision 68364

Use wxNavigationEnabled<> for keyboard navigation in generic wxSearchCtrl. Derive generic wxSearchCtrl implementation from wxNavigationEnabled<> to ensure that TAB navigation works correctly in it. While it did work before for search controls without wxTE_PROCESS_ENTER style (because this wasn't handled by this control itself at all in fact), it stopped working as soon as this style was used in wxMSW because then the navigation was implemented by manually calling wxWindow::Navigate() and this requires wxControlContainer support. Use wxNavigationEnabled<> to easily add it to wxSearchCtrl. See #12808.