Note that CanCut / CanCopy / CanPaste are not currently supported on the OSX WebKit implementation.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton 2011-08-08 12:18:58 +00:00
parent 0abf68248a
commit caa1ec9545

View File

@ -381,16 +381,22 @@ public:
/**
Returns @true if the current selection can be copied.
@note Tgis always returns @c false on the OSX WebKit backend.
*/
virtual bool CanCopy() = 0;
/**
Returns @true if the current selection can be cut.
@note This always returns @c false on the OSX WebKit backend.
*/
virtual bool CanCut() = 0;
/**
Returns @true if data can be pasted.
@note This always returns @c false on the OSX WebKit backend.
*/
virtual bool CanPaste() = 0;