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