]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/filetype.tex
Added shaped sample copying
[wxWidgets.git] / docs / latex / wx / filetype.tex
CommitLineData
b13d92d1
VZ
1\section{\class{wxFileType}}\label{wxfiletype}
2
36edded9 3This class holds information about a given {\it file type}. File type is the same as
b13d92d1
VZ
4MIME type under Unix, but under Windows it corresponds more to an extension than
5to MIME type (in fact, several extensions may correspond to a file type). This
6object may be created in several different ways: the program might know the file
7extension and wish to find out the corresponding MIME type or, conversely, it
8might want to find the right extension for the file to which it writes the
9contents of given MIME type. Depending on how it was created some fields may be
cc81d32f 10unknown so the return value of all the accessors {\bf must} be checked: {\tt false}
b13d92d1
VZ
11will be returned if the corresponding information couldn't be found.
12
13The objects of this class are never created by the application code but are
14returned by \helpref{wxMimeTypesManager::GetFileTypeFromMimeType}{wxmimetypesmanagergetfiletypefrommimetype} and
15\helpref{wxMimeTypesManager::GetFileTypeFromExtension}{wxmimetypesmanagergetfiletypefromextension} methods.
f6bcfd97 16But it is your responsibility to delete the returned pointer when you're done
b13d92d1
VZ
17with it!
18
19% TODO describe MIME types better than this...
36edded9
JS
20A brief reminder about what the MIME types are (see the RFC 1341 for more
21information): basically, it is just a pair category/type (for example,
22"text/plain") where the category is a basic indication of what a file is.
23Examples of categories are "application", "image", "text", "binary", and
b13d92d1
VZ
24type is a precise definition of the document format: "plain" in the example
25above means just ASCII text without any formatting, while "text/html" is the
26HTML document source.
27
28A MIME type may have one or more associated extensions: "text/plain" will
29typically correspond to the extension ".txt", but may as well be associated with
30".ini" or ".conf".
31
b13d92d1
VZ
32\wxheading{Derived from}
33
36edded9 34None
b13d92d1 35
954b8ae6
JS
36\wxheading{Include files}
37
38<wx/mimetype.h>
39
b13d92d1
VZ
40\wxheading{See also}
41
42\helpref{wxMimeTypesManager}{wxmimetypesmanager}
43
44\latexignore{\rtfignore{\wxheading{Members}}}
45
6be663cf 46\membersection{MessageParameters class}\label{wxfiletypemessageparameters}
b13d92d1
VZ
47
48One of the most common usages of MIME is to encode an e-mail message. The MIME
49type of the encoded message is an example of a {\it message parameter}. These
50parameters are found in the message headers ("Content-XXX"). At the very least,
51they must specify the MIME type and the version of MIME used, but almost always
52they provide additional information about the message such as the original file
53name or the charset (for the text documents).
54
55These parameters may be useful to the program used to open, edit, view or print
56the message, so, for example, an e-mail client program will have to pass them to
57this program. Because wxFileType itself can not know about these parameters,
58it uses MessageParameters class to query them. The default implementation only
2edb0bde 59requires the caller to provide the file name (always used by the program to be
b13d92d1
VZ
60called - it must know which file to open) and the MIME type and supposes that
61there are no other parameters. If you wish to supply additional parameters, you
62must derive your own class from MessageParameters and override GetParamValue()
63function, for example:
64
65\begin{verbatim}
66// provide the message parameters for the MIME type manager
2432b92d 67class MailMessageParameters : public wxFileType::MessageParameters
b13d92d1
VZ
68{
69public:
2432b92d 70 MailMessageParameters(const wxString& filename,
b13d92d1
VZ
71 const wxString& mimetype)
72 : wxFileType::MessageParameters(filename, mimetype)
73 {
74 }
75
76 virtual wxString GetParamValue(const wxString& name) const
77 {
78 // parameter names are not case-sensitive
79 if ( name.CmpNoCase("charset") == 0 )
80 return "US-ASCII";
81 else
82 return wxFileType::MessageParameters::GetParamValue(name);
83 }
84};
85\end{verbatim}
86
87Now you only need to create an object of this class and pass it to, for example,
2432b92d 88\rtfsp\helpref{GetOpenCommand}{wxfiletypegetopencommand} like this:
b13d92d1
VZ
89
90\begin{verbatim}
91wxString command;
92if ( filetype->GetOpenCommand(&command,
93 MailMessageParamaters("foo.txt", "text/plain")) )
94{
95 // the full command for opening the text documents is in 'command'
96 // (it might be "notepad foo.txt" under Windows or "cat foo.txt" under Unix)
97}
98else
99{
100 // we don't know how to handle such files...
101}
b13d92d1
VZ
102\end{verbatim}
103
104{\bf Windows:} As only the file name is used by the program associated with the
105given extension anyhow (but no other message parameters), there is no need to
106ever derive from MessageParameters class for a Windows-only program.
107
108\membersection{wxFileType::wxFileType}\label{wxfiletypewxfiletype}
2432b92d 109
b13d92d1
VZ
110\func{}{wxFileType}{\void}
111
112The default constructor is private because you should never create objects of
2432b92d 113this type: they are only returned by \helpref{wxMimeTypesManager}{wxmimetypesmanager} methods.
b13d92d1
VZ
114
115\membersection{wxFileType::\destruct{wxFileType}}\label{wxfiletypedtor}
2432b92d
JS
116
117\func{}{\destruct{wxFileType}}{\void}
b13d92d1
VZ
118
119The destructor of this class is not virtual, so it should not be derived from.
120
121\membersection{wxFileType::GetMimeType}\label{wxfiletypegetmimetype}
2432b92d
JS
122
123\func{bool}{GetMimeType}{\param{wxString*}{ mimeType}}
b13d92d1 124
cc81d32f 125If the function returns {\tt true}, the string pointed to by {\it mimeType} is filled
b13d92d1
VZ
126with full MIME type specification for this file type: for example, "text/plain".
127
4d2976ad
VS
128\membersection{wxFileType::GetMimeTypes}\label{wxfiletypegetmimetypes}
129
d17f05af 130\func{bool}{GetMimeType}{\param{wxArrayString\&}{ mimeTypes}}
4d2976ad
VS
131
132Same as \helpref{GetMimeType}{wxfiletypegetmimetype} but returns array of MIME
133types. This array will contain only one item in most cases but sometimes,
134notably under Unix with KDE, may contain more MIME types. This happens when
135one file extension is mapped to different MIME types by KDE, mailcap and
136mime.types.
137
b13d92d1 138\membersection{wxFileType::GetExtensions}\label{wxfiletypegetextensions}
2432b92d
JS
139
140\func{bool}{GetExtensions}{\param{wxArrayString\&}{ extensions}}
b13d92d1 141
cc81d32f 142If the function returns {\tt true}, the array {\it extensions} is filled
b13d92d1
VZ
143with all extensions associated with this file type: for example, it may
144contain the following two elements for the MIME type "text/html" (notice the
145absence of the leading dot): "html" and "htm".
146
147{\bf Windows:} This function is currently not implemented: there is no
148(efficient) way to retrieve associated extensions from the given MIME type on
cc81d32f 149this platform, so it will only return {\tt true} if the wxFileType object was created
b13d92d1
VZ
150by \helpref{GetFileTypeFromExtension}{wxmimetypesmanagergetfiletypefromextension}
151function in the first place.
152
153\membersection{wxFileType::GetIcon}\label{wxfiletypegeticon}
2432b92d 154
5c5428f9 155\func{bool}{GetIcon}{\param{wxIcon*}{ icon}, \param{wxString*}{ iconFile = NULL}, \param{int*}{ iconIndex = NULL}, \param{int}{ iconSize = wxICON\_LARGE}}
b13d92d1 156
5c5428f9
JS
157If the function returns {\tt TRUE}, the icon associated with this file type will be
158created and assigned to the {\it icon} parameter. {\it iconFile} is assigned the file name
159that contains the icon and {\it iconIndex} is assigned the index of the icon
160(windows and unix only). A 32x32 icon is assigned if {\it iconSize} is wxICON\_LARGE
161and a 16x16 icon is assigned if {\it iconSize} is wxICON\_SMALL (windows only).
b13d92d1 162
cdf339c9
VS
163{\bf Unix:} MIME manager gathers information about icons from GNOME
164and KDE settings and thus GetIcon's success depends on availability
165of these desktop environments.
b13d92d1
VZ
166
167\membersection{wxFileType::GetDescription}\label{wxfiletypegetdescription}
2432b92d
JS
168
169\func{bool}{GetDescription}{\param{wxString*}{ desc}}
b13d92d1 170
cc81d32f 171If the function returns {\tt true}, the string pointed to by {\it desc} is filled
b13d92d1
VZ
172with a brief description for this file type: for example, "text document" for
173the "text/plain" MIME type.
174
175\membersection{wxFileType::GetOpenCommand}\label{wxfiletypegetopencommand}
2432b92d
JS
176
177\func{bool}{GetOpenCommand}{\param{wxString*}{ command}, \param{MessageParameters\&}{ params}}
b13d92d1 178
0532a258
VZ
179\func{wxString}{GetOpenCommand}{\param{const wxString\&}{ filename}}
180
cc81d32f 181With the first version of this method, if the {\tt true} is returned, the
0532a258
VZ
182string pointed to by {\it command} is filled with the command which must be
183executed (see \helpref{wxExecute}{wxexecute}) in order to open the file of the
184given type. In this case, the name of the file as well as any other parameters
185is retrieved from \helpref{MessageParameters}{wxfiletypemessageparameters}
186class.
187
188In the second case, only the filename is specified and the command to be used
189to open this kind of file is returned directly. An empty string is returned to
190indicate that an error occured (typically meaning that there is no standard way
191to open this kind of files).
b13d92d1
VZ
192
193\membersection{wxFileType::GetPrintCommand}\label{wxfiletypegetprintcommand}
2432b92d
JS
194
195\func{bool}{GetPrintCommand}{\param{wxString*}{ command},\param{MessageParameters\&}{ params}}
b13d92d1 196
cc81d32f 197If the function returns {\tt true}, the string pointed to by {\it command} is filled
b13d92d1
VZ
198with the command which must be executed (see \helpref{wxExecute}{wxexecute}) in
199order to print the file of the given type. The name of the file is
200retrieved from \helpref{MessageParameters}{wxfiletypemessageparameters} class.
201
202\membersection{wxFileType::ExpandCommand}\label{wxfiletypeexpandcommand}
2432b92d
JS
203
204\func{static wxString}{ExpandCommand}{\param{const wxString\&}{ command}, \param{MessageParameters\&}{ params}}
b13d92d1 205
2edb0bde 206This function is primarily intended for GetOpenCommand and GetPrintCommand
b13d92d1
VZ
207usage but may be also used by the application directly if, for example, you want
208to use some non default command to open the file.
209
7335902d 210The function replaces all occurrences of
2432b92d 211
b13d92d1
VZ
212\twocolwidtha{7cm}
213\begin{twocollist}\itemsep=0pt
2edb0bde 214\twocolitem{format specification}{with}
b13d92d1
VZ
215\twocolitem{\%s}{the full file name}
216\twocolitem{\%t}{the MIME type}
217\twocolitem{\%\{param\}}{the value of the parameter {\it param}}
218\end{twocollist}
2432b92d 219
b13d92d1
VZ
220using the MessageParameters object you pass to it.
221
222If there is no '\%s' in the command string (and the string is not empty), it is
223assumed that the command reads the data on stdin and so the effect is the same
224as "< \%s" were appended to the string.
225
226Unlike all other functions of this class, there is no error return for this
227function.
2432b92d 228