]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/mimetype.tex
sorting support for generic version (patch 1765087 from Bo)
[wxWidgets.git] / docs / latex / wx / mimetype.tex
CommitLineData
b13d92d1
VZ
1\section{\class{wxMimeTypesManager}}\label{wxmimetypesmanager}
2
3This class allows the application to retrieve the information about all known
4MIME types from a system-specific location and the filename extensions to the
5MIME types and vice versa. After initialization the functions
6\helpref{wxMimeTypesManager::GetFileTypeFromMimeType}{wxmimetypesmanagergetfiletypefrommimetype}
7and \helpref{wxMimeTypesManager::GetFileTypeFromExtension}{wxmimetypesmanagergetfiletypefromextension}
8may be called: they will return a \helpref{wxFileType}{wxfiletype} object which
9may be further queried for file description, icon and other attributes.
10
11{\bf Windows:} MIME type information is stored in the registry and no additional
12initialization is needed.
13
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:
16all of these files are searched for and loaded if found by default. However,
17additional functions
cc385968 18\helpref{wxMimeTypesManager::ReadMailcap}{wxmimetypesmanagerreadmailcap} and
b13d92d1
VZ
19\helpref{wxMimeTypesManager::ReadMimeTypes}{wxmimetypesmanagerreadmimetypes} are
20provided to load additional files.
21
cdf339c9
VS
22If GNOME or KDE desktop environment is installed, then wxMimeTypesManager
23gathers MIME information from respective files (e.g. .kdelnk files under KDE).
24
b13d92d1 25NB: Currently, wxMimeTypesManager is limited to reading MIME type information
43e8916f 26but it will support modifying it as well in future versions.
b13d92d1 27
d2a190fe
VS
28\wxheading{Global objects}
29
30Global instance of wxMimeTypesManager is always available. It is defined
31as follows:
32
33\begin{verbatim}
34wxMimeTypesManager *wxTheMimeTypesManager;
35\end{verbatim}
36
37It is recommended to use this instance instead of creating your own because
08890e27 38gathering MIME information may take quite a long time on Unix systems.
d2a190fe 39
b13d92d1
VZ
40\wxheading{Derived from}
41
42No base class.
43
954b8ae6
JS
44\wxheading{Include files}
45
46<wx/mimetype.h>
47
a7af285d
VZ
48\wxheading{Library}
49
50\helpref{wxBase}{librarieslist}
51
b13d92d1
VZ
52\wxheading{See also}
53
54\helpref{wxFileType}{wxfiletype}
55
56\latexignore{\rtfignore{\wxheading{Function groups}}}
57
e16916ea 58
dcbd177f 59\membersection{Helper functions}\label{mimehelperfunctions}
a5a19b83
VZ
60
61All of these functions are static (i.e. don't need a wxMimeTypesManager object
62to call them) and provide some useful operations for string representations of
63MIME types. Their usage is recommended instead of directly working with MIME
64types using wxString functions.
65
66\helpref{IsOfType}{wxmimetypesmanagerisoftype}
67
e16916ea 68
dcbd177f 69\membersection{Constructor and destructor}\label{mimeconstructordestructor}
b13d92d1
VZ
70
71NB: You won't normally need to use more than one wxMimeTypesManager object in a
72program.
73
74\helpref{wxMimeTypesManager}{wxmimetypesmanagerctor}\\
75\helpref{\destruct{wxMimeTypesManager}}{wxmimetypesmanagerdtor}
76
e16916ea 77
dcbd177f 78\membersection{Query database}\label{mimequerydatabase}
b13d92d1 79
2432b92d
JS
80These functions are the heart of this class: they allow to find a \helpref{file type}{wxfiletype} object
81from either file extension or MIME type.
b13d92d1 82If the function is successful, it returns a pointer to the wxFileType object
e16916ea 83which {\bf must} be deleted by the caller, otherwise \NULL will be returned.
b13d92d1
VZ
84
85\helpref{GetFileTypeFromMimeType}{wxmimetypesmanagergetfiletypefrommimetype}\\
86\helpref{GetFileTypeFromExtension}{wxmimetypesmanagergetfiletypefromextension}
87
e16916ea 88
2432b92d 89\membersection{Initialization functions}\label{wxmimetypesmanagerinit}
b13d92d1 90
2432b92d
JS
91{\bf Unix:} These functions may be used to load additional files (except for the
92default ones which are loaded automatically) containing MIME
b13d92d1
VZ
93information in either mailcap(5) or mime.types(5) format.
94
95\helpref{ReadMailcap}{wxmimetypesmanagerreadmailcap}\\
8e124873
VZ
96\helpref{ReadMimeTypes}{wxmimetypesmanagerreadmimetypes}\\
97\helpref{AddFallbacks}{wxmimetypesmanageraddfallbacks}
b13d92d1
VZ
98
99%%%%% MEMBERS HERE %%%%%
100\helponly{\insertatlevel{2}{
101
102\wxheading{Members}
103
104}}
105
e16916ea 106
b13d92d1 107\membersection{wxMimeTypesManager::wxMimeTypesManager}\label{wxmimetypesmanagerctor}
2432b92d 108
b13d92d1
VZ
109\func{}{wxMimeTypesManager}{\void}
110
111Constructor puts the object in the "working" state, no additional initialization
112are needed - but \helpref{ReadXXX}{wxmimetypesmanagerinit} may be used to load
113additional mailcap/mime.types files.
114
e16916ea 115
b13d92d1 116\membersection{wxMimeTypesManager::\destruct{wxMimeTypesManager}}\label{wxmimetypesmanagerdtor}
2432b92d
JS
117
118\func{}{\destruct{wxMimeTypesManager}}{\void}
b13d92d1
VZ
119
120Destructor is not virtual, so this class should not be derived from.
121
e16916ea 122
8e124873
VZ
123\membersection{wxMimeTypesManager::AddFallbacks}\label{wxmimetypesmanageraddfallbacks}
124
125\func{void}{AddFallbacks}{\param{const wxFileTypeInfo *}{fallbacks}}
126
2edb0bde 127This function may be used to provide hard-wired fallbacks for the MIME types
8e124873
VZ
128and extensions that might not be present in the system MIME database.
129
130% TODO
131
132Please see the typetest sample for an example of using it.
133
e16916ea 134
b13d92d1 135\membersection{wxMimeTypesManager::GetFileTypeFromExtension}\label{wxmimetypesmanagergetfiletypefromextension}
2432b92d
JS
136
137\func{wxFileType*}{GetFileTypeFromExtension}{\param{const wxString\&}{ extension}}
b13d92d1
VZ
138
139Gather information about the files with given extension and return the
e16916ea 140corresponding \helpref{wxFileType}{wxfiletype} object or \NULL if the extension
b13d92d1
VZ
141is unknown.
142
e16916ea
VZ
143The \arg{extension} parameter may have, or not, the leading dot, if it has it,
144it is stripped automatically. It must not however be empty.
145
146
b13d92d1 147\membersection{wxMimeTypesManager::GetFileTypeFromMimeType}\label{wxmimetypesmanagergetfiletypefrommimetype}
2432b92d
JS
148
149\func{wxFileType*}{GetFileTypeFromMimeType}{\param{const wxString\&}{ mimeType}}
b13d92d1
VZ
150
151Gather information about the files with given MIME type and return the
e16916ea 152corresponding \helpref{wxFileType}{wxfiletype} object or \NULL if the MIME type
b13d92d1
VZ
153is unknown.
154
e16916ea 155
a5a19b83
VZ
156\membersection{wxMimeTypesManager::IsOfType}\label{wxmimetypesmanagerisoftype}
157
158\func{bool}{IsOfType}{\param{const wxString\&}{ mimeType}, \param{const wxString\&}{ wildcard}}
159
cc81d32f 160This function returns true if either the given {\it mimeType} is exactly the
a5a19b83
VZ
161same as {\it wildcard} or if it has the same category and the subtype of
162{\it wildcard} is '*'. Note that the '*' wildcard is not allowed in
163{\it mimeType} itself.
164
2edb0bde 165The comparison don by this function is case insensitive so it is not
a5a19b83
VZ
166necessary to convert the strings to the same case before calling it.
167
e16916ea 168
b13d92d1 169\membersection{wxMimeTypesManager::ReadMailcap}\label{wxmimetypesmanagerreadmailcap}
2432b92d 170
cc81d32f 171\func{bool}{ReadMailcap}{\param{const wxString\&}{ filename}, \param{bool}{ fallback = false}}
b13d92d1
VZ
172
173Load additional file containing information about MIME types and associated
174information in mailcap format. See metamail(1) and mailcap(5) for more
175information.
176
cc385968
VZ
177{\it fallback} parameter may be used to load additional mailcap files without
178overriding the settings found in the standard files: normally, entries from
179files loaded with ReadMailcap will override the entries from files loaded
180previously (and the standard ones are loaded in the very beginning), but this
cc81d32f 181will not happen if this parameter is set to true (default is false).
cc385968 182
cc81d32f 183The return value is true if there were no errors in the file or false
cc385968
VZ
184otherwise.
185
e16916ea 186
b13d92d1 187\membersection{wxMimeTypesManager::ReadMimeTypes}\label{wxmimetypesmanagerreadmimetypes}
2432b92d 188
cc385968 189\func{bool}{ReadMimeTypes}{\param{const wxString\&}{ filename}}
b13d92d1
VZ
190
191Load additional file containing information about MIME types and associated
192information in mime.types file format. See metamail(1) and mailcap(5) for more
193information.
2432b92d 194
cc81d32f 195The return value is true if there were no errors in the file or false
cc385968
VZ
196otherwise.
197