]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/filesys.tex
Several changes and updates
[wxWidgets.git] / docs / latex / wx / filesys.tex
index 0e7ec2db5e6e0207286e58b6f6a733f31d6aba9b..25eb6181c1917b4ec3cc33962e0e7ff818ba4aa6 100644 (file)
@@ -3,7 +3,6 @@
 % filesystem.tex at 21/Mar/99 23:00:52
 %
 
 % filesystem.tex at 21/Mar/99 23:00:52
 %
 
-
 \section{\class{wxFileSystem}}\label{wxfilesystem}
 
 This class provides interface for opening files on different
 \section{\class{wxFileSystem}}\label{wxfilesystem}
 
 This class provides interface for opening files on different
@@ -21,10 +20,8 @@ wxObject
 \helpref{wxFSFile}{wxfsfile},
 \helpref{Overview}{fs}
 
 \helpref{wxFSFile}{wxfsfile},
 \helpref{Overview}{fs}
 
-
 \latexignore{\rtfignore{\wxheading{Members}}}
 
 \latexignore{\rtfignore{\wxheading{Members}}}
 
-
 \membersection{wxFileSystem::wxFileSystem}\label{wxfilesystemwxfilesystem}
 
 \func{}{wxFileSystem}{\void}
 \membersection{wxFileSystem::wxFileSystem}\label{wxfilesystemwxfilesystem}
 
 \func{}{wxFileSystem}{\void}
@@ -63,14 +60,12 @@ fs -> ChangePathTo("subdir/folder", TRUE);
 f = fs -> OpenFile("hello.htm"); // opens file 'subdir/folder/hello.htm' !!
 \end{verbatim}
 
 f = fs -> OpenFile("hello.htm"); // opens file 'subdir/folder/hello.htm' !!
 \end{verbatim}
 
-
 \membersection{wxFileSystem::GetPath}\label{wxfilesystemgetpath}
 
 \func{wxString}{GetPath}{\void}
 
 Returns actual path (set by \helpref{ChangePathTo}{wxfilesystemchangepathto}).
 
 \membersection{wxFileSystem::GetPath}\label{wxfilesystemgetpath}
 
 \func{wxString}{GetPath}{\void}
 
 Returns actual path (set by \helpref{ChangePathTo}{wxfilesystemchangepathto}).
 
-
 \membersection{wxFileSystem::OpenFile}\label{wxfilesystemopenfile}
 
 \func{wxFSFile*}{OpenFile}{\param{const wxString\& }{location}}
 \membersection{wxFileSystem::OpenFile}\label{wxfilesystemopenfile}
 
 \func{wxFSFile*}{OpenFile}{\param{const wxString\& }{location}}
@@ -80,7 +75,6 @@ or NULL if failed. It first tries to open the file in relative scope
 (based on value passed to ChangePathTo() method) and then as an
 absolute path.
 
 (based on value passed to ChangePathTo() method) and then as an
 absolute path.
 
-
 \membersection{wxFileSystem::AddHandler}\label{wxfilesystemaddhandler}
 
 \func{static void}{AddHandler}{\param{wxFileSystemHandler }{*handler}}
 \membersection{wxFileSystem::AddHandler}\label{wxfilesystemaddhandler}
 
 \func{static void}{AddHandler}{\param{wxFileSystemHandler }{*handler}}
@@ -90,12 +84,13 @@ The \helpref{handlers}{wxfilesystemhandler} provide access to virtual FS.
 
 \wxheading{Note}
 
 
 \wxheading{Note}
 
-You can call
+You can call:
 
 \begin{verbatim}
 wxFileSystem::AddHandler(new My_FS_Handler);
 \end{verbatim}
 
 
 \begin{verbatim}
 wxFileSystem::AddHandler(new My_FS_Handler);
 \end{verbatim}
 
-This is because a) AddHandler is static method and b) the handlers
+This is because (a) AddHandler is a static method, and (b) the handlers
 are deleted in wxFileSystem's destructor so that you don't have to
 care about it.
 are deleted in wxFileSystem's destructor so that you don't have to
 care about it.
+