]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/mimetype.tex
If somebody ever decides to actually check in fsfile.tex and
[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
22NB: Currently, wxMimeTypesManager is limited to reading MIME type information
23but it will support modifying it as well in the future versions.
24
b13d92d1
VZ
25\wxheading{Derived from}
26
27No base class.
28
954b8ae6
JS
29\wxheading{Include files}
30
31<wx/mimetype.h>
32
b13d92d1
VZ
33\wxheading{See also}
34
35\helpref{wxFileType}{wxfiletype}
36
37\latexignore{\rtfignore{\wxheading{Function groups}}}
38
a5a19b83
VZ
39\membersection{Helper functions}
40
41All of these functions are static (i.e. don't need a wxMimeTypesManager object
42to call them) and provide some useful operations for string representations of
43MIME types. Their usage is recommended instead of directly working with MIME
44types using wxString functions.
45
46\helpref{IsOfType}{wxmimetypesmanagerisoftype}
47
b13d92d1
VZ
48\membersection{Constructor and destructor}
49
50NB: You won't normally need to use more than one wxMimeTypesManager object in a
51program.
52
53\helpref{wxMimeTypesManager}{wxmimetypesmanagerctor}\\
54\helpref{\destruct{wxMimeTypesManager}}{wxmimetypesmanagerdtor}
55
56\membersection{Query database}
57
2432b92d
JS
58These functions are the heart of this class: they allow to find a \helpref{file type}{wxfiletype} object
59from either file extension or MIME type.
b13d92d1 60If the function is successful, it returns a pointer to the wxFileType object
2432b92d 61which {\bf must} be deleted by the caller, otherwise NULL will be returned.
b13d92d1
VZ
62
63\helpref{GetFileTypeFromMimeType}{wxmimetypesmanagergetfiletypefrommimetype}\\
64\helpref{GetFileTypeFromExtension}{wxmimetypesmanagergetfiletypefromextension}
65
2432b92d 66\membersection{Initialization functions}\label{wxmimetypesmanagerinit}
b13d92d1 67
2432b92d
JS
68{\bf Unix:} These functions may be used to load additional files (except for the
69default ones which are loaded automatically) containing MIME
b13d92d1
VZ
70information in either mailcap(5) or mime.types(5) format.
71
72\helpref{ReadMailcap}{wxmimetypesmanagerreadmailcap}\\
73\helpref{ReadMimeTypes}{wxmimetypesmanagerreadmimetypes}
74
75%%%%% MEMBERS HERE %%%%%
76\helponly{\insertatlevel{2}{
77
78\wxheading{Members}
79
80}}
81
82\membersection{wxMimeTypesManager::wxMimeTypesManager}\label{wxmimetypesmanagerctor}
2432b92d 83
b13d92d1
VZ
84\func{}{wxMimeTypesManager}{\void}
85
86Constructor puts the object in the "working" state, no additional initialization
87are needed - but \helpref{ReadXXX}{wxmimetypesmanagerinit} may be used to load
88additional mailcap/mime.types files.
89
90\membersection{wxMimeTypesManager::\destruct{wxMimeTypesManager}}\label{wxmimetypesmanagerdtor}
2432b92d
JS
91
92\func{}{\destruct{wxMimeTypesManager}}{\void}
b13d92d1
VZ
93
94Destructor is not virtual, so this class should not be derived from.
95
96\membersection{wxMimeTypesManager::GetFileTypeFromExtension}\label{wxmimetypesmanagergetfiletypefromextension}
2432b92d
JS
97
98\func{wxFileType*}{GetFileTypeFromExtension}{\param{const wxString\&}{ extension}}
b13d92d1
VZ
99
100Gather information about the files with given extension and return the
101corresponding \helpref{wxFileType}{wxfiletype} object or NULL if the extension
102is unknown.
103
104\membersection{wxMimeTypesManager::GetFileTypeFromMimeType}\label{wxmimetypesmanagergetfiletypefrommimetype}
2432b92d
JS
105
106\func{wxFileType*}{GetFileTypeFromMimeType}{\param{const wxString\&}{ mimeType}}
b13d92d1
VZ
107
108Gather information about the files with given MIME type and return the
109corresponding \helpref{wxFileType}{wxfiletype} object or NULL if the MIME type
110is unknown.
111
a5a19b83
VZ
112\membersection{wxMimeTypesManager::IsOfType}\label{wxmimetypesmanagerisoftype}
113
114\func{bool}{IsOfType}{\param{const wxString\&}{ mimeType}, \param{const wxString\&}{ wildcard}}
115
116This function returns TRUE if either the given {\it mimeType} is exactly the
117same 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.
120
121The comparaison don by this function is case insensitive so it is not
122necessary to convert the strings to the same case before calling it.
123
b13d92d1 124\membersection{wxMimeTypesManager::ReadMailcap}\label{wxmimetypesmanagerreadmailcap}
2432b92d 125
cc385968 126\func{bool}{ReadMailcap}{\param{const wxString\&}{ filename}, \param{bool}{ fallback = FALSE}}
b13d92d1
VZ
127
128Load additional file containing information about MIME types and associated
129information in mailcap format. See metamail(1) and mailcap(5) for more
130information.
131
cc385968
VZ
132{\it fallback} parameter may be used to load additional mailcap files without
133overriding the settings found in the standard files: normally, entries from
134files loaded with ReadMailcap will override the entries from files loaded
135previously (and the standard ones are loaded in the very beginning), but this
136will not happen if this parameter is set to TRUE (default is FALSE).
137
138The return value is TRUE if there were no errors in the file or FALSE
139otherwise.
140
b13d92d1 141\membersection{wxMimeTypesManager::ReadMimeTypes}\label{wxmimetypesmanagerreadmimetypes}
2432b92d 142
cc385968 143\func{bool}{ReadMimeTypes}{\param{const wxString\&}{ filename}}
b13d92d1
VZ
144
145Load additional file containing information about MIME types and associated
146information in mime.types file format. See metamail(1) and mailcap(5) for more
147information.
2432b92d 148
cc385968
VZ
149The return value is TRUE if there were no errors in the file or FALSE
150otherwise.
151