]>
Commit | Line | Data |
---|---|---|
b13d92d1 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/mimetype.h | |
3 | // Purpose: classes and functions to manage MIME types | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
c7ce8392 | 6 | // Chris Elliott (biol75@york.ac.uk) 5 Dec 00: write support for Win32 |
b13d92d1 VZ |
7 | // Created: 23.09.98 |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
65571936 | 10 | // Licence: wxWindows licence (part of wxExtra library) |
b13d92d1 VZ |
11 | ///////////////////////////////////////////////////////////////////////////// |
12 | ||
a6c65e88 VZ |
13 | #ifndef _WX_MIMETYPE_H_ |
14 | #define _WX_MIMETYPE_H_ | |
b13d92d1 | 15 | |
a6c65e88 VZ |
16 | // ---------------------------------------------------------------------------- |
17 | // headers and such | |
18 | // ---------------------------------------------------------------------------- | |
b13d92d1 | 19 | |
ce4169a4 RR |
20 | #include "wx/defs.h" |
21 | ||
1e6feb95 VZ |
22 | #if wxUSE_MIMETYPE |
23 | ||
b13d92d1 VZ |
24 | // the things we really need |
25 | #include "wx/string.h" | |
ecf23aa6 | 26 | #include "wx/dynarray.h" |
2b850ae1 | 27 | #include "wx/arrstr.h" |
b13d92d1 | 28 | |
a6c65e88 | 29 | // fwd decls |
bddd7a8d VZ |
30 | class WXDLLIMPEXP_BASE wxIconLocation; |
31 | class WXDLLIMPEXP_BASE wxFileTypeImpl; | |
32 | class WXDLLIMPEXP_BASE wxMimeTypesManagerImpl; | |
a6c65e88 | 33 | |
2b813b73 VZ |
34 | // these constants define the MIME informations source under UNIX and are used |
35 | // by wxMimeTypesManager::Initialize() | |
36 | enum wxMailcapStyle | |
37 | { | |
38 | wxMAILCAP_STANDARD = 1, | |
39 | wxMAILCAP_NETSCAPE = 2, | |
40 | wxMAILCAP_KDE = 4, | |
41 | wxMAILCAP_GNOME = 8, | |
42 | ||
43 | wxMAILCAP_ALL = 15 | |
44 | }; | |
45 | ||
a6c65e88 VZ |
46 | /* |
47 | TODO: would it be more convenient to have this class? | |
48 | ||
bddd7a8d | 49 | class WXDLLIMPEXP_BASE wxMimeType : public wxString |
a6c65e88 VZ |
50 | { |
51 | public: | |
52 | // all string ctors here | |
53 | ||
54 | wxString GetType() const { return BeforeFirst(_T('/')); } | |
55 | wxString GetSubType() const { return AfterFirst(_T('/')); } | |
56 | ||
57 | void SetSubType(const wxString& subtype) | |
58 | { | |
59 | *this = GetType() + _T('/') + subtype; | |
60 | } | |
61 | ||
62 | bool Matches(const wxMimeType& wildcard) | |
63 | { | |
64 | // implement using wxMimeTypesManager::IsOfType() | |
65 | } | |
66 | }; | |
67 | ||
68 | */ | |
69 | ||
2b850ae1 RR |
70 | // wxMimeTypeCommands stores the verbs defined for the given MIME type with |
71 | // their values | |
72 | class WXDLLIMPEXP_BASE wxMimeTypeCommands | |
73 | { | |
74 | public: | |
75 | wxMimeTypeCommands() {} | |
76 | ||
77 | wxMimeTypeCommands(const wxArrayString& verbs, | |
78 | const wxArrayString& commands) | |
79 | : m_verbs(verbs), | |
80 | m_commands(commands) | |
81 | { | |
82 | } | |
83 | ||
84 | // add a new verb with the command or replace the old value | |
bde733b0 | 85 | void AddOrReplaceVerb(const wxString& verb, const wxString& cmd); |
2b850ae1 RR |
86 | void Add(const wxString& s) |
87 | { | |
88 | m_verbs.Add(s.BeforeFirst(wxT('='))); | |
89 | m_commands.Add(s.AfterFirst(wxT('='))); | |
90 | } | |
91 | ||
92 | // access the commands | |
93 | size_t GetCount() const { return m_verbs.GetCount(); } | |
94 | const wxString& GetVerb(size_t n) const { return m_verbs[n]; } | |
95 | const wxString& GetCmd(size_t n) const { return m_commands[n]; } | |
96 | ||
97 | bool HasVerb(const wxString& verb) const | |
98 | { return m_verbs.Index(verb) != wxNOT_FOUND; } | |
99 | ||
bde733b0 VZ |
100 | // returns empty string and wxNOT_FOUND in idx if no such verb |
101 | wxString GetCommandForVerb(const wxString& verb, size_t *idx = NULL) const; | |
2b850ae1 RR |
102 | |
103 | // get a "verb=command" string | |
bde733b0 | 104 | wxString GetVerbCmd(size_t n) const; |
2b850ae1 RR |
105 | |
106 | private: | |
107 | wxArrayString m_verbs; | |
108 | wxArrayString m_commands; | |
109 | }; | |
110 | ||
a6c65e88 VZ |
111 | // ---------------------------------------------------------------------------- |
112 | // wxFileTypeInfo: static container of information accessed via wxFileType. | |
113 | // | |
114 | // This class is used with wxMimeTypesManager::AddFallbacks() and Associate() | |
115 | // ---------------------------------------------------------------------------- | |
116 | ||
bddd7a8d | 117 | class WXDLLIMPEXP_BASE wxFileTypeInfo |
a6c65e88 | 118 | { |
2523e9b7 VS |
119 | private: |
120 | void VarArgInit(const wxString& mimeType, | |
121 | const wxString& openCmd, | |
122 | const wxString& printCmd, | |
123 | const wxString& desc, | |
124 | // the other parameters form a NULL terminated list of | |
125 | // extensions | |
126 | ...); | |
a6c65e88 VZ |
127 | public: |
128 | // ctors | |
129 | // a normal item | |
2523e9b7 VS |
130 | |
131 | // wxFileTypeInfo(const wxString& mimeType, | |
132 | // const wxString& openCmd, | |
133 | // const wxString& printCmd, | |
134 | // const wxString& desc, | |
135 | // // the other parameters form a NULL terminated list of | |
136 | // // extensions | |
137 | // ...); | |
138 | WX_DEFINE_VARARG_FUNC_CTOR(wxFileTypeInfo, | |
139 | 4, (const wxString&, const wxString&, | |
140 | const wxString&, const wxString&), | |
141 | VarArgInit) | |
142 | #ifdef __WATCOMC__ | |
143 | // workaround for http://bugzilla.openwatcom.org/show_bug.cgi?id=351 | |
144 | WX_DEFINE_VARARG_FUNC_CTOR(wxFileTypeInfo, | |
145 | 4, (const char*, const char*, | |
146 | const char*, const char*), | |
147 | VarArgInit) | |
148 | WX_DEFINE_VARARG_FUNC_CTOR(wxFileTypeInfo, | |
149 | 4, (const wchar_t*, const wchar_t*, | |
150 | const wchar_t*, const wchar_t*), | |
151 | VarArgInit) | |
152 | WX_DEFINE_VARARG_FUNC_CTOR(wxFileTypeInfo, | |
153 | 4, (const wxCStrData&, const wxCStrData&, | |
154 | const wxCStrData&, const wxCStrData&), | |
155 | VarArgInit) | |
156 | #endif | |
a6c65e88 | 157 | |
2b813b73 VZ |
158 | // the array elements correspond to the parameters of the ctor above in |
159 | // the same order | |
160 | wxFileTypeInfo(const wxArrayString& sArray); | |
161 | ||
a6c65e88 VZ |
162 | // invalid item - use this to terminate the array passed to |
163 | // wxMimeTypesManager::AddFallbacks | |
164 | wxFileTypeInfo() { } | |
165 | ||
166 | // test if this object can be used | |
16cba29d | 167 | bool IsValid() const { return !m_mimeType.empty(); } |
a6c65e88 VZ |
168 | |
169 | // setters | |
170 | // set the icon info | |
171 | void SetIcon(const wxString& iconFile, int iconIndex = 0) | |
172 | { | |
173 | m_iconFile = iconFile; | |
174 | m_iconIndex = iconIndex; | |
175 | } | |
176 | // set the short desc | |
177 | void SetShortDesc(const wxString& shortDesc) { m_shortDesc = shortDesc; } | |
178 | ||
179 | // accessors | |
180 | // get the MIME type | |
181 | const wxString& GetMimeType() const { return m_mimeType; } | |
182 | // get the open command | |
183 | const wxString& GetOpenCommand() const { return m_openCmd; } | |
184 | // get the print command | |
185 | const wxString& GetPrintCommand() const { return m_printCmd; } | |
186 | // get the short description (only used under Win32 so far) | |
187 | const wxString& GetShortDesc() const { return m_shortDesc; } | |
188 | // get the long, user visible description | |
189 | const wxString& GetDescription() const { return m_desc; } | |
190 | // get the array of all extensions | |
191 | const wxArrayString& GetExtensions() const { return m_exts; } | |
03603400 | 192 | size_t GetExtensionsCount() const {return m_exts.GetCount(); } |
a6c65e88 VZ |
193 | // get the icon info |
194 | const wxString& GetIconFile() const { return m_iconFile; } | |
195 | int GetIconIndex() const { return m_iconIndex; } | |
196 | ||
197 | private: | |
198 | wxString m_mimeType, // the MIME type in "type/subtype" form | |
199 | m_openCmd, // command to use for opening the file (%s allowed) | |
200 | m_printCmd, // command to use for printing the file (%s allowed) | |
201 | m_shortDesc, // a short string used in the registry | |
202 | m_desc; // a free form description of this file type | |
203 | ||
204 | // icon stuff | |
205 | wxString m_iconFile; // the file containing the icon | |
206 | int m_iconIndex; // icon index in this file | |
207 | ||
208 | wxArrayString m_exts; // the extensions which are mapped on this filetype | |
209 | ||
2b813b73 | 210 | |
a6c65e88 VZ |
211 | #if 0 // TODO |
212 | // the additional (except "open" and "print") command names and values | |
213 | wxArrayString m_commandNames, | |
214 | m_commandValues; | |
215 | #endif // 0 | |
216 | }; | |
217 | ||
4460b6c4 VS |
218 | WX_DECLARE_USER_EXPORTED_OBJARRAY(wxFileTypeInfo, wxArrayFileTypeInfo, |
219 | WXDLLIMPEXP_BASE); | |
66806a0b | 220 | |
a6c65e88 VZ |
221 | // ---------------------------------------------------------------------------- |
222 | // wxFileType: gives access to all information about the files of given type. | |
223 | // | |
b13d92d1 VZ |
224 | // This class holds information about a given "file type". File type is the |
225 | // same as MIME type under Unix, but under Windows it corresponds more to an | |
226 | // extension than to MIME type (in fact, several extensions may correspond to a | |
227 | // file type). This object may be created in many different ways and depending | |
228 | // on how it was created some fields may be unknown so the return value of all | |
229 | // the accessors *must* be checked! | |
a6c65e88 VZ |
230 | // ---------------------------------------------------------------------------- |
231 | ||
bddd7a8d | 232 | class WXDLLIMPEXP_BASE wxFileType |
b13d92d1 | 233 | { |
bddd7a8d | 234 | friend class WXDLLIMPEXP_BASE wxMimeTypesManagerImpl; // it has access to m_impl |
b13d92d1 VZ |
235 | |
236 | public: | |
237 | // An object of this class must be passed to Get{Open|Print}Command. The | |
238 | // default implementation is trivial and doesn't know anything at all about | |
239 | // parameters, only filename and MIME type are used (so it's probably ok for | |
240 | // Windows where %{param} is not used anyhow) | |
241 | class MessageParameters | |
242 | { | |
243 | public: | |
244 | // ctors | |
245 | MessageParameters() { } | |
0532a258 | 246 | MessageParameters(const wxString& filename, |
fda7962d | 247 | const wxString& mimetype = wxEmptyString) |
b13d92d1 VZ |
248 | : m_filename(filename), m_mimetype(mimetype) { } |
249 | ||
250 | // accessors (called by GetOpenCommand) | |
251 | // filename | |
252 | const wxString& GetFileName() const { return m_filename; } | |
253 | // mime type | |
254 | const wxString& GetMimeType() const { return m_mimetype; } | |
255 | ||
256 | // override this function in derived class | |
a6c65e88 VZ |
257 | virtual wxString GetParamValue(const wxString& WXUNUSED(name)) const |
258 | { return wxEmptyString; } | |
b13d92d1 VZ |
259 | |
260 | // virtual dtor as in any base class | |
261 | virtual ~MessageParameters() { } | |
262 | ||
263 | protected: | |
264 | wxString m_filename, m_mimetype; | |
265 | }; | |
266 | ||
a6c65e88 VZ |
267 | // ctor from static data |
268 | wxFileType(const wxFileTypeInfo& ftInfo); | |
269 | ||
b13d92d1 VZ |
270 | // accessors: all of them return true if the corresponding information |
271 | // could be retrieved/found, false otherwise (and in this case all [out] | |
272 | // parameters are unchanged) | |
273 | // return the MIME type for this file type | |
274 | bool GetMimeType(wxString *mimeType) const; | |
4d2976ad | 275 | bool GetMimeTypes(wxArrayString& mimeTypes) const; |
b13d92d1 VZ |
276 | // fill passed in array with all extensions associated with this file |
277 | // type | |
278 | bool GetExtensions(wxArrayString& extensions); | |
da0766ab VZ |
279 | // get the icon corresponding to this file type and of the given size |
280 | bool GetIcon(wxIconLocation *iconloc) const; | |
11d395f9 VZ |
281 | bool GetIcon(wxIconLocation *iconloc, |
282 | const MessageParameters& params) const; | |
b13d92d1 VZ |
283 | // get a brief file type description ("*.txt" => "text document") |
284 | bool GetDescription(wxString *desc) const; | |
285 | ||
286 | // get the command to be used to open/print the given file. | |
287 | // get the command to execute the file of given type | |
288 | bool GetOpenCommand(wxString *openCmd, | |
289 | const MessageParameters& params) const; | |
0532a258 VZ |
290 | // a simpler to use version of GetOpenCommand() -- it only takes the |
291 | // filename and returns an empty string on failure | |
292 | wxString GetOpenCommand(const wxString& filename) const; | |
b13d92d1 VZ |
293 | // get the command to print the file of given type |
294 | bool GetPrintCommand(wxString *printCmd, | |
295 | const MessageParameters& params) const; | |
296 | ||
c7ce8392 VZ |
297 | |
298 | // return the number of commands defined for this file type, 0 if none | |
299 | size_t GetAllCommands(wxArrayString *verbs, wxArrayString *commands, | |
300 | const wxFileType::MessageParameters& params) const; | |
301 | ||
2b813b73 | 302 | // set an arbitrary command, ask confirmation if it already exists and |
4e32eea1 | 303 | // overwriteprompt is true |
2b813b73 | 304 | bool SetCommand(const wxString& cmd, const wxString& verb, |
4e32eea1 | 305 | bool overwriteprompt = true); |
2b813b73 VZ |
306 | |
307 | bool SetDefaultIcon(const wxString& cmd = wxEmptyString, int index = 0); | |
308 | ||
309 | ||
a6c65e88 VZ |
310 | // remove the association for this filetype from the system MIME database: |
311 | // notice that it will only work if the association is defined in the user | |
312 | // file/registry part, we will never modify the system-wide settings | |
c7ce8392 VZ |
313 | bool Unassociate(); |
314 | ||
b13d92d1 VZ |
315 | // operations |
316 | // expand a string in the format of GetOpenCommand (which may contain | |
317 | // '%s' and '%t' format specificators for the file name and mime type | |
318 | // and %{param} constructions). | |
319 | static wxString ExpandCommand(const wxString& command, | |
320 | const MessageParameters& params); | |
321 | ||
322 | // dtor (not virtual, shouldn't be derived from) | |
323 | ~wxFileType(); | |
324 | ||
325 | private: | |
326 | // default ctor is private because the user code never creates us | |
327 | wxFileType(); | |
328 | ||
329 | // no copy ctor/assignment operator | |
330 | wxFileType(const wxFileType&); | |
331 | wxFileType& operator=(const wxFileType&); | |
332 | ||
a6c65e88 VZ |
333 | // the static container of wxFileType data: if it's not NULL, it means that |
334 | // this object is used as fallback only | |
335 | const wxFileTypeInfo *m_info; | |
71f21f46 | 336 | |
a6c65e88 VZ |
337 | // the object which implements the real stuff like reading and writing |
338 | // to/from system MIME database | |
339 | wxFileTypeImpl *m_impl; | |
71f21f46 VZ |
340 | }; |
341 | ||
2b850ae1 RR |
342 | //---------------------------------------------------------------------------- |
343 | // wxMimeTypesManagerFactory | |
344 | //---------------------------------------------------------------------------- | |
345 | ||
346 | class WXDLLIMPEXP_BASE wxMimeTypesManagerFactory | |
347 | { | |
348 | public: | |
349 | wxMimeTypesManagerFactory() {} | |
350 | virtual ~wxMimeTypesManagerFactory() {} | |
351 | ||
352 | virtual wxMimeTypesManagerImpl *CreateMimeTypesManagerImpl(); | |
353 | ||
a893b65e VZ |
354 | static void Set( wxMimeTypesManagerFactory *factory ); |
355 | static wxMimeTypesManagerFactory *Get(); | |
2b850ae1 RR |
356 | |
357 | private: | |
358 | static wxMimeTypesManagerFactory *m_factory; | |
359 | }; | |
360 | ||
a6c65e88 VZ |
361 | // ---------------------------------------------------------------------------- |
362 | // wxMimeTypesManager: interface to system MIME database. | |
363 | // | |
b13d92d1 VZ |
364 | // This class accesses the information about all known MIME types and allows |
365 | // the application to retrieve information (including how to handle data of | |
366 | // given type) about them. | |
a6c65e88 VZ |
367 | // ---------------------------------------------------------------------------- |
368 | ||
bddd7a8d | 369 | class WXDLLIMPEXP_BASE wxMimeTypesManager |
b13d92d1 VZ |
370 | { |
371 | public: | |
da61ab31 VZ |
372 | // static helper functions |
373 | // ----------------------- | |
374 | ||
a6c65e88 VZ |
375 | // check if the given MIME type is the same as the other one: the |
376 | // second argument may contain wildcards ('*'), but not the first. If | |
377 | // the types are equal or if the mimeType matches wildcard the function | |
4e32eea1 | 378 | // returns true, otherwise it returns false |
da61ab31 VZ |
379 | static bool IsOfType(const wxString& mimeType, const wxString& wildcard); |
380 | ||
b13d92d1 VZ |
381 | // ctor |
382 | wxMimeTypesManager(); | |
383 | ||
2b813b73 VZ |
384 | // NB: the following 2 functions are for Unix only and don't do anything |
385 | // elsewhere | |
386 | ||
387 | // loads data from standard files according to the mailcap styles | |
388 | // specified: this is a bitwise OR of wxMailcapStyle values | |
389 | // | |
390 | // use the extraDir parameter if you want to look for files in another | |
391 | // directory | |
805f26b3 | 392 | void Initialize(int mailcapStyle = wxMAILCAP_ALL, |
2b813b73 VZ |
393 | const wxString& extraDir = wxEmptyString); |
394 | ||
395 | // and this function clears all the data from the manager | |
396 | void ClearData(); | |
397 | ||
b13d92d1 VZ |
398 | // Database lookup: all functions return a pointer to wxFileType object |
399 | // whose methods may be used to query it for the information you're | |
400 | // interested in. If the return value is !NULL, caller is responsible for | |
401 | // deleting it. | |
402 | // get file type from file extension | |
403 | wxFileType *GetFileTypeFromExtension(const wxString& ext); | |
404 | // get file type from MIME type (in format <category>/<format>) | |
405 | wxFileType *GetFileTypeFromMimeType(const wxString& mimeType); | |
406 | ||
4e32eea1 | 407 | // other operations: return true if there were no errors or false if there |
3103e8a9 | 408 | // were some unrecognized entries (the good entries are always read anyhow) |
2b813b73 VZ |
409 | // |
410 | // FIXME: These ought to be private ?? | |
411 | ||
b13d92d1 VZ |
412 | // read in additional file (the standard ones are read automatically) |
413 | // in mailcap format (see mimetype.cpp for description) | |
cc385968 | 414 | // |
4e32eea1 | 415 | // 'fallback' parameter may be set to true to avoid overriding the |
cc385968 VZ |
416 | // settings from other, previously parsed, files by this one: normally, |
417 | // the files read most recently would override the older files, but with | |
4e32eea1 | 418 | // fallback == true this won't happen |
2b813b73 | 419 | |
4e32eea1 | 420 | bool ReadMailcap(const wxString& filename, bool fallback = false); |
b13d92d1 | 421 | // read in additional file in mime.types format |
cc385968 | 422 | bool ReadMimeTypes(const wxString& filename); |
b13d92d1 | 423 | |
696e1ea0 | 424 | // enumerate all known MIME types |
1b986aef VZ |
425 | // |
426 | // returns the number of retrieved file types | |
696e1ea0 | 427 | size_t EnumAllFileTypes(wxArrayString& mimetypes); |
1b986aef | 428 | |
71f21f46 VZ |
429 | // these functions can be used to provide default values for some of the |
430 | // MIME types inside the program itself (you may also use | |
4e32eea1 | 431 | // ReadMailcap(filenameWithDefaultTypes, true /* use as fallback */) to |
71f21f46 VZ |
432 | // achieve the same goal, but this requires having this info in a file). |
433 | // | |
a6c65e88 VZ |
434 | // The filetypes array should be terminated by either NULL entry or an |
435 | // invalid wxFileTypeInfo (i.e. the one created with default ctor) | |
8e124873 | 436 | void AddFallbacks(const wxFileTypeInfo *filetypes); |
a6c65e88 VZ |
437 | void AddFallback(const wxFileTypeInfo& ft) { m_fallbacks.Add(ft); } |
438 | ||
439 | // create or remove associations | |
71f21f46 | 440 | |
a6c65e88 VZ |
441 | // create a new association using the fields of wxFileTypeInfo (at least |
442 | // the MIME type and the extension should be set) | |
2b813b73 | 443 | // if the other fields are empty, the existing values should be left alone |
a6c65e88 VZ |
444 | wxFileType *Associate(const wxFileTypeInfo& ftInfo); |
445 | ||
446 | // undo Associate() | |
2b813b73 | 447 | bool Unassociate(wxFileType *ft) ; |
c7ce8392 | 448 | |
b13d92d1 VZ |
449 | // dtor (not virtual, shouldn't be derived from) |
450 | ~wxMimeTypesManager(); | |
451 | ||
452 | private: | |
453 | // no copy ctor/assignment operator | |
454 | wxMimeTypesManager(const wxMimeTypesManager&); | |
455 | wxMimeTypesManager& operator=(const wxMimeTypesManager&); | |
456 | ||
a6c65e88 VZ |
457 | // the fallback info which is used if the information is not found in the |
458 | // real system database | |
459 | wxArrayFileTypeInfo m_fallbacks; | |
460 | ||
461 | // the object working with the system MIME database | |
b13d92d1 | 462 | wxMimeTypesManagerImpl *m_impl; |
c7ce8392 | 463 | |
ecf23aa6 VS |
464 | // if m_impl is NULL, create one |
465 | void EnsureImpl(); | |
c7ce8392 | 466 | |
66806a0b | 467 | friend class wxMimeTypeCmnModule; |
b13d92d1 VZ |
468 | }; |
469 | ||
ecf23aa6 VS |
470 | |
471 | // ---------------------------------------------------------------------------- | |
472 | // global variables | |
473 | // ---------------------------------------------------------------------------- | |
474 | ||
77ffb593 | 475 | // the default mime manager for wxWidgets programs |
16cba29d | 476 | extern WXDLLIMPEXP_DATA_BASE(wxMimeTypesManager *) wxTheMimeTypesManager; |
ecf23aa6 | 477 | |
1e6feb95 VZ |
478 | #endif // wxUSE_MIMETYPE |
479 | ||
ce4169a4 | 480 | #endif |
a6c65e88 | 481 | //_WX_MIMETYPE_H_ |