Add new clipboard api and support for it in the ie backend. Also extend the sample to demonstrate the new functions.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68129 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton
2011-07-02 11:45:19 +00:00
parent 19fc1a2f0d
commit 4681a3ea0d
4 changed files with 114 additions and 0 deletions

View File

@@ -324,6 +324,14 @@ public:
* Returns whether the web control is currently busy (e.g. loading a page)
*/
virtual bool IsBusy() = 0;
//Clipboard functions
virtual bool CanCut() = 0;
virtual bool CanCopy() = 0;
virtual bool CanPaste() = 0;
virtual void Cut() = 0;
virtual void Copy() = 0;
virtual void Paste() = 0;
};
class WXDLLIMPEXP_WEB wxWebNavigationEvent : public wxCommandEvent