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