]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: webviewarchivehandler.h | |
3 | // Purpose: interface of wxWebViewArchiveHandler | |
4 | // Author: wxWidgets team | |
5 | // Licence: wxWindows licence | |
6 | ///////////////////////////////////////////////////////////////////////////// | |
7 | ||
8 | /** | |
9 | @class wxWebViewArchiveHandler | |
10 | ||
11 | A custom handler for the file scheme which also supports loading from | |
12 | archives. The syntax for wxWebViewArchiveHandler differs from virtual file | |
13 | systems in the rest of wxWidgets by using a syntax such as | |
14 | <code> scheme:///C:/example/docs.zip;protocol=zip/main.htm </code> | |
15 | Currently the only supported protocol is @c zip. | |
16 | ||
17 | @since 2.9.3 | |
18 | @library{wxwebview} | |
19 | @category{webview} | |
20 | ||
21 | @see wxWebView, wxWebViewHandler | |
22 | */ | |
23 | class wxWebViewArchiveHandler : public wxWebViewHandler | |
24 | { | |
25 | public: | |
26 | /** | |
27 | Constructor. | |
28 | */ | |
29 | wxWebViewArchiveHandler(const wxString& scheme); | |
30 | virtual wxFSFile* GetFile(const wxString &uri); | |
31 | }; |