2 % automatically generated by HelpGen from
3 % filesystemhandler.tex at 21/Mar/99 23:00:52
6 \section{\class{wxFileSystemHandler
}}\label{wxfilesystemhandler
}
8 Classes derived from wxFileSystemHandler are used
9 to access virtual file systems. Its public interface consists
10 of two methods:
\helpref{CanOpen
}{wxfilesystemhandlercanopen
}
11 and
\helpref{OpenFile
}{wxfilesystemhandleropenfile
}.
12 It provides additional protected methods to simplify the process
13 of opening the file: GetProtocol, GetLeftLocation, GetRightLocation,
14 GetAnchor, GetMimeTypeFromExt.
16 Please have a look at
\helpref{overview
}{fs
} if you don't know how locations
19 Also consult
\helpref{list of available handlers
}{fs
}.
21 \perlnote{In wxPerl, you need to derive your file system handler class
22 from Wx::PlFileSystemHandler.
}
26 \begin{itemize
}\itemsep=
0pt
27 \item The handlers are shared by all instances of wxFileSystem.
28 \item wxHTML library provides handlers for local files and HTTP or FTP protocol
29 \item The
{\it location
} parameter passed to OpenFile or CanOpen methods
30 is always an
{\bf absolute
} path. You don't need to check the FS's current path.
33 \wxheading{Derived from
}
35 \helpref{wxObject
}{wxobject
}
37 \wxheading{Include files
}
43 \helpref{wxFileSystem
}{wxfilesystem
},
44 \helpref{wxFSFile
}{wxfsfile
},
45 \helpref{Overview
}{fs
}
47 \latexignore{\rtfignore{\wxheading{Members
}}}
50 \membersection{wxFileSystemHandler::wxFileSystemHandler
}\label{wxfilesystemhandlerwxfilesystemhandler
}
52 \func{}{wxFileSystemHandler
}{\void}
56 \membersection{wxFileSystemHandler::CanOpen
}\label{wxfilesystemhandlercanopen
}
58 \func{virtual bool
}{CanOpen
}{\param{const wxString\&
}{location
}}
60 Returns true if the handler is able to open this file. This function doesn't
61 check whether the file exists or not, it only checks if it knows the protocol.
65 bool MyHand::CanOpen(const wxString& location)
67 return (GetProtocol(location) == "http");
71 Must be overridden in derived handlers.
73 \membersection{wxFileSystemHandler::GetAnchor
}\label{wxfilesystemhandlergetanchor
}
75 \constfunc{wxString
}{GetAnchor
}{\param{const wxString\&
}{location
}}
77 Returns the anchor if present in the location.
78 See
\helpref{wxFSFile
}{wxfsfilegetanchor
} for details.
80 Example: GetAnchor("index.htm\#chapter2") == "chapter2"
82 {\bf Note:
} the anchor is NOT part of the left location.
84 \membersection{wxFileSystemHandler::GetLeftLocation
}\label{wxfilesystemhandlergetleftlocation
}
86 \constfunc{wxString
}{GetLeftLocation
}{\param{const wxString\&
}{location
}}
88 Returns the left location string extracted from
{\it location
}.
90 Example: GetLeftLocation("file:myzipfile.zip\#zip:index.htm") == "file:myzipfile.zip"
92 \membersection{wxFileSystemHandler::GetMimeTypeFromExt
}\label{wxfilesystemhandlergetmimetypefromext
}
94 \func{wxString
}{GetMimeTypeFromExt
}{\param{const wxString\&
}{location
}}
96 Returns the MIME type based on
{\bf extension
} of
{\it location
}. (While wxFSFile::GetMimeType
97 returns real MIME type - either extension-based or queried from HTTP.)
99 Example : GetMimeTypeFromExt("index.htm") == "text/html"
101 \membersection{wxFileSystemHandler::GetProtocol
}\label{wxfilesystemhandlergetprotocol
}
103 \constfunc{wxString
}{GetProtocol
}{\param{const wxString\&
}{location
}}
105 Returns the protocol string extracted from
{\it location
}.
107 Example: GetProtocol("file:myzipfile.zip\#zip:index.htm") == "zip"
109 \membersection{wxFileSystemHandler::GetRightLocation
}\label{wxfilesystemhandlergetrightlocation
}
111 \constfunc{wxString
}{GetRightLocation
}{\param{const wxString\&
}{location
}}
113 Returns the right location string extracted from
{\it location
}.
115 Example : GetRightLocation("file:myzipfile.zip\#zip:index.htm") == "index.htm"
117 \membersection{wxFileSystemHandler::FindFirst
}\label{wxfilesystemhandlerfindfirst
}
119 \func{virtual wxString
}{FindFirst
}{\param{const wxString\&
}{wildcard
},
\param{int
}{flags =
0}}
121 Works like
\helpref{wxFindFirstFile
}{wxfindfirstfile
}. Returns name of the first
122 filename (within filesystem's current path) that matches
{\it wildcard
}.
{\it flags
} may be one of
123 wxFILE (only files), wxDIR (only directories) or
0 (both).
125 This method is only called if
\helpref{CanOpen
}{wxfilesystemhandlercanopen
} returns true.
127 \membersection{wxFileSystemHandler::FindNext
}\label{wxfilesystemhandlerfindnext
}
129 \func{virtual wxString
}{FindNext
}{\void}
131 Returns next filename that matches parameters passed to
\helpref{FindFirst
}{wxfilesystemfindfirst
}.
133 This method is only called if
\helpref{CanOpen
}{wxfilesystemhandlercanopen
} returns true and FindFirst
134 returned a non-empty string.
136 \membersection{wxFileSystemHandler::OpenFile
}\label{wxfilesystemhandleropenfile
}
138 \func{virtual wxFSFile*
}{OpenFile
}{\param{wxFileSystem\&
}{fs
},
\param{const wxString\&
}{location
}}
140 Opens the file and returns wxFSFile pointer or NULL if failed.
142 Must be overridden in derived handlers.
144 \wxheading{Parameters
}
146 \docparam{fs
}{Parent FS (the FS from that OpenFile was called). See ZIP handler
147 for details of how to use it.
}
149 \docparam{location
}{The
{\bf absolute
} location of file.
}