webviewfshandler.h 978 B

12345678910111213141516171819202122232425262728293031
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: webviewfshandler.h
  3. // Purpose: interface of wxWebViewFSHandler
  4. // Author: wxWidgets team
  5. // Licence: wxWindows licence
  6. /////////////////////////////////////////////////////////////////////////////
  7. /**
  8. @class wxWebViewFSHandler
  9. A wxWebView file system handler to support standard wxFileSystem protocols
  10. of the form <code> example:page.htm </code> The handler allows wxWebView to
  11. use wxFileSystem in a similar fashion to its use with wxHtml.
  12. The wxMemoryFSHandler documentation gives an example of how it may be used.
  13. @since 2.9.5
  14. @library{wxwebview}
  15. @category{webview}
  16. @see wxWebView, wxWebViewHandler, wxWebViewArchiveHandler
  17. */
  18. class wxWebViewFSHandler : public wxWebViewHandler
  19. {
  20. public:
  21. /**
  22. Constructor.
  23. */
  24. wxWebViewFSHandler(const wxString& scheme);
  25. virtual wxFSFile* GetFile(const wxString &uri);
  26. };