]>
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
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxWebViewArchiveHandler
12 A custom handler for the file scheme which also supports loading from
13 archives. The syntax for wxWebViewArchiveHandler differs from virtual file
14 systems in the rest of wxWidgets by using a syntax such as
15 <code> scheme:///C:/example/docs.zip;protocol=zip/main.htm </code>
16 Currently the only supported protocol is @c zip.
22 @see wxWebView, wxWebViewHandler
24 class wxWebViewArchiveHandler
: public wxWebViewHandler
30 wxWebViewArchiveHandler(const wxString
& scheme
);
31 virtual wxFSFile
* GetFile(const wxString
&uri
);