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:
@@ -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
|
||||
|
Reference in New Issue
Block a user