Implement clipboard api in gtk.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68130 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton
2011-07-02 14:32:02 +00:00
parent 4681a3ea0d
commit ae26e17b93
3 changed files with 38 additions and 1 deletions

View File

@@ -120,7 +120,13 @@ public:
virtual wxWebViewZoom GetZoom();
virtual void SetZoom(wxWebViewZoom);
//Clipboard functions
virtual bool CanCut();
virtual bool CanCopy();
virtual bool CanPaste();
virtual void Cut();
virtual void Copy();
virtual void Paste();
/** FIXME: hack to work around signals being received too early */
bool m_ready;