]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/webviewarchivehandler.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: webviewarchivehandler.h
3 // Purpose: interface of wxWebViewArchiveHandler
4 // Author: wxWidgets team
5 // Licence: wxWindows licence
6 /////////////////////////////////////////////////////////////////////////////
9 @class wxWebViewArchiveHandler
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.
21 @see wxWebView, wxWebViewHandler
23 class wxWebViewArchiveHandler
: public wxWebViewHandler
29 wxWebViewArchiveHandler(const wxString
& scheme
);
30 virtual wxFSFile
* GetFile(const wxString
&uri
);