1 \section{\class{wxMimeTypesManager
}}\label{wxmimetypesmanager
}
3 This class allows the application to retrieve the information about all known
4 MIME types from a system-specific location and the filename extensions to the
5 MIME types and vice versa. After initialization the functions
6 \helpref{wxMimeTypesManager::GetFileTypeFromMimeType
}{wxmimetypesmanagergetfiletypefrommimetype
}
7 and
\helpref{wxMimeTypesManager::GetFileTypeFromExtension
}{wxmimetypesmanagergetfiletypefromextension
}
8 may be called: they will return a
\helpref{wxFileType
}{wxfiletype
} object which
9 may be further queried for file description, icon and other attributes.
11 {\bf Windows:
} MIME type information is stored in the registry and no additional
12 initialization is needed.
14 {\bf Unix:
} MIME type information is stored in the files mailcap and mime.types
15 (system-wide) and .mailcap and .mime.types in the current user's home directory:
16 all of these files are searched for and loaded if found by default. However,
18 \helpref{wxMimeTypesManager::ReadMailcap
}{wxmimetypesmanagerreadmailcap
} and
19 \helpref{wxMimeTypesManager::ReadMimeTypes
}{wxmimetypesmanagerreadmimetypes
} are
20 provided to load additional files.
22 NB: Currently, wxMimeTypesManager is limited to reading MIME type information
23 but it will support modifying it as well in the future versions.
25 \wxheading{Derived from
}
29 \wxheading{Include files
}
35 \helpref{wxFileType
}{wxfiletype
}
37 \latexignore{\rtfignore{\wxheading{Function groups
}}}
39 \membersection{Helper functions
}
41 All of these functions are static (i.e. don't need a wxMimeTypesManager object
42 to call them) and provide some useful operations for string representations of
43 MIME types. Their usage is recommended instead of directly working with MIME
44 types using wxString functions.
46 \helpref{IsOfType
}{wxmimetypesmanagerisoftype
}
48 \membersection{Constructor and destructor
}
50 NB: You won't normally need to use more than one wxMimeTypesManager object in a
53 \helpref{wxMimeTypesManager
}{wxmimetypesmanagerctor
}\\
54 \helpref{\destruct{wxMimeTypesManager
}}{wxmimetypesmanagerdtor
}
56 \membersection{Query database
}
58 These functions are the heart of this class: they allow to find a
\helpref{file type
}{wxfiletype
} object
59 from either file extension or MIME type.
60 If the function is successful, it returns a pointer to the wxFileType object
61 which
{\bf must
} be deleted by the caller, otherwise NULL will be returned.
63 \helpref{GetFileTypeFromMimeType
}{wxmimetypesmanagergetfiletypefrommimetype
}\\
64 \helpref{GetFileTypeFromExtension
}{wxmimetypesmanagergetfiletypefromextension
}
66 \membersection{Initialization functions
}\label{wxmimetypesmanagerinit
}
68 {\bf Unix:
} These functions may be used to load additional files (except for the
69 default ones which are loaded automatically) containing MIME
70 information in either mailcap(
5) or mime.types(
5) format.
72 \helpref{ReadMailcap
}{wxmimetypesmanagerreadmailcap
}\\
73 \helpref{ReadMimeTypes
}{wxmimetypesmanagerreadmimetypes
}
75 %%%%% MEMBERS HERE %%%%%
76 \helponly{\insertatlevel{2}{
82 \membersection{wxMimeTypesManager::wxMimeTypesManager
}\label{wxmimetypesmanagerctor
}
84 \func{}{wxMimeTypesManager
}{\void}
86 Constructor puts the object in the "working" state, no additional initialization
87 are needed - but
\helpref{ReadXXX
}{wxmimetypesmanagerinit
} may be used to load
88 additional mailcap/mime.types files.
90 \membersection{wxMimeTypesManager::
\destruct{wxMimeTypesManager
}}\label{wxmimetypesmanagerdtor
}
92 \func{}{\destruct{wxMimeTypesManager
}}{\void}
94 Destructor is not virtual, so this class should not be derived from.
96 \membersection{wxMimeTypesManager::GetFileTypeFromExtension
}\label{wxmimetypesmanagergetfiletypefromextension
}
98 \func{wxFileType*
}{GetFileTypeFromExtension
}{\param{const wxString\&
}{ extension
}}
100 Gather information about the files with given extension and return the
101 corresponding
\helpref{wxFileType
}{wxfiletype
} object or NULL if the extension
104 \membersection{wxMimeTypesManager::GetFileTypeFromMimeType
}\label{wxmimetypesmanagergetfiletypefrommimetype
}
106 \func{wxFileType*
}{GetFileTypeFromMimeType
}{\param{const wxString\&
}{ mimeType
}}
108 Gather information about the files with given MIME type and return the
109 corresponding
\helpref{wxFileType
}{wxfiletype
} object or NULL if the MIME type
112 \membersection{wxMimeTypesManager::IsOfType
}\label{wxmimetypesmanagerisoftype
}
114 \func{bool
}{IsOfType
}{\param{const wxString\&
}{ mimeType
},
\param{const wxString\&
}{ wildcard
}}
116 This function returns TRUE if either the given
{\it mimeType
} is exactly the
117 same as
{\it wildcard
} or if it has the same category and the subtype of
118 {\it wildcard
} is '*'. Note that the '*' wildcard is not allowed in
119 {\it mimeType
} itself.
121 The comparaison don by this function is case insensitive so it is not
122 necessary to convert the strings to the same case before calling it.
124 \membersection{wxMimeTypesManager::ReadMailcap
}\label{wxmimetypesmanagerreadmailcap
}
126 \func{void
}{ReadMailcap
}{\param{const wxString\&
}{ filename
}}
128 Load additional file containing information about MIME types and associated
129 information in mailcap format. See metamail(
1) and mailcap(
5) for more
132 \membersection{wxMimeTypesManager::ReadMimeTypes
}\label{wxmimetypesmanagerreadmimetypes
}
134 \func{void
}{ReadMimeTypes
}{\param{const wxString\&
}{ filename
}}
136 Load additional file containing information about MIME types and associated
137 information in mime.types file format. See metamail(
1) and mailcap(
5) for more