]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/webfilehandler.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: webfilehandler.h
3 // Purpose: interface of wxWebFileHandler
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxWebFileHandler
12 A custom handler for the file scheme which also supports loading from
13 archives. The syntax for wxWebFileHandler differs from virtual file
14 systems in the rest of wxWidgets by using a syntax such as
15 @c file:///C:/exmaple/docs.zip;protocol=zip/main.htm Currently the only
16 supported protocol is @c zip.
21 @see wxWebView, wxWebHandler
23 class wxWebFileHandler
: public wxWebHandler
27 @return The string @c "file"
29 virtual wxString
GetName() const;
30 virtual wxFSFile
* GetFile(const wxString
&uri
);