]> git.saurik.com Git - wxWidgets.git/blame - src/common/mimecmn.cpp
Somehow, setting a tint color makes gauge work :/.
[wxWidgets.git] / src / common / mimecmn.cpp
CommitLineData
7dc3cc31 1/////////////////////////////////////////////////////////////////////////////
ad9835c9 2// Name: src/common/mimecmn.cpp
7dc3cc31
VS
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
7dc3cc31 7// Created: 23.09.98
7dc3cc31 8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 9// Licence: wxWindows licence (part of wxExtra library)
7dc3cc31
VS
10/////////////////////////////////////////////////////////////////////////////
11
a6c65e88
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
7dc3cc31
VS
20// for compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
1e6feb95 24 #pragma hdrstop
7dc3cc31
VS
25#endif
26
1e6feb95
VZ
27#if wxUSE_MIMETYPE
28
88a7a4e1
WS
29#include "wx/mimetype.h"
30
7dc3cc31 31#ifndef WX_PRECOMP
ad9835c9
WS
32 #include "wx/dynarray.h"
33 #include "wx/string.h"
88a7a4e1 34 #include "wx/intl.h"
e4db172a 35 #include "wx/log.h"
02761f6c 36 #include "wx/module.h"
0bf751e7 37 #include "wx/crt.h"
7dc3cc31
VS
38#endif //WX_PRECOMP
39
7dc3cc31 40#include "wx/file.h"
da0766ab 41#include "wx/iconloc.h"
7dc3cc31
VS
42#include "wx/confbase.h"
43
7dc3cc31
VS
44// other standard headers
45#include <ctype.h>
46
7dc3cc31 47// implementation classes:
d98a58c5 48#if defined(__WINDOWS__)
c7ce8392 49 #include "wx/msw/mimetype.h"
da0ee16e 50#elif ( defined(__DARWIN__) )
c933e267 51 #include "wx/osx/mimetype.h"
64621b07 52#elif defined(__WXPM__) || defined (__EMX__)
c7ce8392 53 #include "wx/os2/mimetype.h"
6691d737 54 #undef __UNIX__
83d8eb47
MW
55#elif defined(__DOS__)
56 #include "wx/msdos/mimetype.h"
c7ce8392
VZ
57#else // Unix
58 #include "wx/unix/mimetype.h"
7dc3cc31
VS
59#endif
60
61// ============================================================================
62// common classes
63// ============================================================================
64
bde733b0
VZ
65// ----------------------------------------------------------------------------
66// wxMimeTypeCommands
67// ----------------------------------------------------------------------------
68
69void
70wxMimeTypeCommands::AddOrReplaceVerb(const wxString& verb, const wxString& cmd)
71{
72 int n = m_verbs.Index(verb, false /* ignore case */);
73 if ( n == wxNOT_FOUND )
74 {
75 m_verbs.Add(verb);
76 m_commands.Add(cmd);
77 }
78 else
79 {
80 m_commands[n] = cmd;
81 }
82}
83
84wxString
85wxMimeTypeCommands::GetCommandForVerb(const wxString& verb, size_t *idx) const
86{
87 wxString s;
88
89 int n = m_verbs.Index(verb);
90 if ( n != wxNOT_FOUND )
91 {
92 s = m_commands[(size_t)n];
93 if ( idx )
94 *idx = n;
95 }
96 else if ( idx )
97 {
98 // different from any valid index
99 *idx = (size_t)-1;
100 }
101
102 return s;
103}
104
105wxString wxMimeTypeCommands::GetVerbCmd(size_t n) const
106{
107 return m_verbs[n] + wxT('=') + m_commands[n];
108}
109
7dc3cc31
VS
110// ----------------------------------------------------------------------------
111// wxFileTypeInfo
112// ----------------------------------------------------------------------------
113
d1f6e2cf
VS
114void wxFileTypeInfo::DoVarArgInit(const wxString& mimeType,
115 const wxString& openCmd,
116 const wxString& printCmd,
117 const wxString& desc,
118 va_list argptr)
7dc3cc31 119{
2523e9b7
VS
120 m_mimeType = mimeType;
121 m_openCmd = openCmd;
122 m_printCmd = printCmd;
123 m_desc = desc;
124
7dc3cc31
VS
125 for ( ;; )
126 {
2cfcf22d
VZ
127 // icc gives this warning in its own va_arg() macro, argh
128#ifdef __INTELC__
129 #pragma warning(push)
130 #pragma warning(disable: 1684)
131#endif
132
2523e9b7 133 wxArgNormalizedString ext(WX_VA_ARG_STRING(argptr));
2cfcf22d
VZ
134
135#ifdef __INTELC__
136 #pragma warning(pop)
137#endif
7dc3cc31
VS
138 if ( !ext )
139 {
140 // NULL terminates the list
141 break;
142 }
143
2523e9b7 144 m_exts.Add(ext.GetString());
7dc3cc31 145 }
d1f6e2cf
VS
146}
147
278d7ab4
VS
148void wxFileTypeInfo::VarArgInit(const wxString *mimeType,
149 const wxString *openCmd,
150 const wxString *printCmd,
151 const wxString *desc,
152 ...)
d1f6e2cf
VS
153{
154 va_list argptr;
155 va_start(argptr, desc);
156
278d7ab4 157 DoVarArgInit(*mimeType, *openCmd, *printCmd, *desc, argptr);
d1f6e2cf
VS
158
159 va_end(argptr);
160}
7dc3cc31 161
2b813b73
VZ
162
163wxFileTypeInfo::wxFileTypeInfo(const wxArrayString& sArray)
164{
165 m_mimeType = sArray [0u];
166 m_openCmd = sArray [1u];
167 m_printCmd = sArray [2u];
168 m_desc = sArray [3u];
169
170 size_t count = sArray.GetCount();
171 for ( size_t i = 4; i < count; i++ )
172 {
173 m_exts.Add(sArray[i]);
174 }
175}
176
7dc3cc31 177#include "wx/arrimpl.cpp"
4115960d 178WX_DEFINE_OBJARRAY(wxArrayFileTypeInfo)
7dc3cc31 179
7dc3cc31
VS
180// ============================================================================
181// implementation of the wrapper classes
182// ============================================================================
183
184// ----------------------------------------------------------------------------
185// wxFileType
186// ----------------------------------------------------------------------------
187
a6c65e88 188/* static */
7dc3cc31
VS
189wxString wxFileType::ExpandCommand(const wxString& command,
190 const wxFileType::MessageParameters& params)
191{
4e32eea1 192 bool hasFilename = false;
7dc3cc31 193
9ac34ac9
VZ
194 // We consider that only the file names with spaces in them need to be
195 // handled specially. This is not perfect, but this can be done easily
196 // under all platforms while handling the file names with quotes in them,
197 // for example, needs to be done differently.
198 const bool needToQuoteFilename = params.GetFileName().find_first_of(" \t")
199 != wxString::npos;
200
7dc3cc31
VS
201 wxString str;
202 for ( const wxChar *pc = command.c_str(); *pc != wxT('\0'); pc++ ) {
203 if ( *pc == wxT('%') ) {
204 switch ( *++pc ) {
205 case wxT('s'):
9ac34ac9
VZ
206 // don't quote the file name if it's already quoted: notice
207 // that we check for a quote following it and not preceding
208 // it as at least under Windows we can have commands
209 // containing "file://%s" (with quotes) in them so the
210 // argument may be quoted even if there is no quote
211 // directly before "%s" itself
212 if ( needToQuoteFilename && pc[1] != '"' )
7dc3cc31 213 str << wxT('"') << params.GetFileName() << wxT('"');
9ac34ac9
VZ
214 else
215 str << params.GetFileName();
4e32eea1 216 hasFilename = true;
7dc3cc31
VS
217 break;
218
219 case wxT('t'):
220 // '%t' expands into MIME type (quote it too just to be
221 // consistent)
222 str << wxT('\'') << params.GetMimeType() << wxT('\'');
223 break;
224
225 case wxT('{'):
226 {
227 const wxChar *pEnd = wxStrchr(pc, wxT('}'));
228 if ( pEnd == NULL ) {
229 wxString mimetype;
f6bcfd97 230 wxLogWarning(_("Unmatched '{' in an entry for mime type %s."),
7dc3cc31
VS
231 params.GetMimeType().c_str());
232 str << wxT("%{");
233 }
234 else {
235 wxString param(pc + 1, pEnd - pc - 1);
236 str << wxT('\'') << params.GetParamValue(param) << wxT('\'');
237 pc = pEnd;
238 }
239 }
240 break;
241
242 case wxT('n'):
243 case wxT('F'):
244 // TODO %n is the number of parts, %F is an array containing
245 // the names of temp files these parts were written to
246 // and their mime types.
247 break;
248
249 default:
250 wxLogDebug(wxT("Unknown field %%%c in command '%s'."),
251 *pc, command.c_str());
252 str << *pc;
253 }
254 }
255 else {
256 str << *pc;
257 }
258 }
259
260 // metamail(1) man page states that if the mailcap entry doesn't have '%s'
f6bcfd97
BP
261 // the program will accept the data on stdin so normally we should append
262 // "< %s" to the end of the command in such case, but not all commands
263 // behave like this, in particular a common test is 'test -n "$DISPLAY"'
264 // and appending "< %s" to this command makes the test fail... I don't
265 // know of the correct solution, try to guess what we have to do.
2b813b73
VZ
266
267 // test now carried out on reading file so test should never get here
525d8583 268 if ( !hasFilename && !str.empty()
f6bcfd97 269#ifdef __UNIX__
9a83f860 270 && !str.StartsWith(wxT("test "))
f6bcfd97 271#endif // Unix
9ac34ac9
VZ
272 )
273 {
274 str << wxT(" < ");
275 if ( needToQuoteFilename )
276 str << '"';
277 str << params.GetFileName();
278 if ( needToQuoteFilename )
279 str << '"';
7dc3cc31
VS
280 }
281
282 return str;
283}
284
a6c65e88
VZ
285wxFileType::wxFileType(const wxFileTypeInfo& info)
286{
287 m_info = &info;
288 m_impl = NULL;
289}
290
7dc3cc31
VS
291wxFileType::wxFileType()
292{
a6c65e88 293 m_info = NULL;
7dc3cc31
VS
294 m_impl = new wxFileTypeImpl;
295}
296
297wxFileType::~wxFileType()
298{
dca2d56f
GT
299 if ( m_impl )
300 delete m_impl;
7dc3cc31
VS
301}
302
303bool wxFileType::GetExtensions(wxArrayString& extensions)
304{
a6c65e88
VZ
305 if ( m_info )
306 {
307 extensions = m_info->GetExtensions();
4e32eea1 308 return true;
a6c65e88
VZ
309 }
310
7dc3cc31
VS
311 return m_impl->GetExtensions(extensions);
312}
313
314bool wxFileType::GetMimeType(wxString *mimeType) const
315{
9a83f860 316 wxCHECK_MSG( mimeType, false, wxT("invalid parameter in GetMimeType") );
a6c65e88
VZ
317
318 if ( m_info )
319 {
320 *mimeType = m_info->GetMimeType();
321
4e32eea1 322 return true;
a6c65e88
VZ
323 }
324
7dc3cc31
VS
325 return m_impl->GetMimeType(mimeType);
326}
327
4d2976ad
VS
328bool wxFileType::GetMimeTypes(wxArrayString& mimeTypes) const
329{
a6c65e88
VZ
330 if ( m_info )
331 {
332 mimeTypes.Clear();
333 mimeTypes.Add(m_info->GetMimeType());
334
4e32eea1 335 return true;
a6c65e88
VZ
336 }
337
4d2976ad
VS
338 return m_impl->GetMimeTypes(mimeTypes);
339}
340
da0766ab 341bool wxFileType::GetIcon(wxIconLocation *iconLoc) const
7dc3cc31 342{
a6c65e88
VZ
343 if ( m_info )
344 {
da0766ab 345 if ( iconLoc )
a6c65e88 346 {
da0766ab 347 iconLoc->SetFileName(m_info->GetIconFile());
d98a58c5 348#ifdef __WINDOWS__
da0766ab 349 iconLoc->SetIndex(m_info->GetIconIndex());
d98a58c5 350#endif // __WINDOWS__
a6c65e88 351 }
a6c65e88 352
4e32eea1 353 return true;
a6c65e88
VZ
354 }
355
da0766ab 356 return m_impl->GetIcon(iconLoc);
7dc3cc31
VS
357}
358
11d395f9
VZ
359bool
360wxFileType::GetIcon(wxIconLocation *iconloc,
361 const MessageParameters& params) const
362{
363 if ( !GetIcon(iconloc) )
364 {
365 return false;
366 }
367
368 // we may have "%s" in the icon location string, at least under Windows, so
369 // expand this
370 if ( iconloc )
371 {
372 iconloc->SetFileName(ExpandCommand(iconloc->GetFileName(), params));
373 }
374
375 return true;
376}
377
7dc3cc31
VS
378bool wxFileType::GetDescription(wxString *desc) const
379{
9a83f860 380 wxCHECK_MSG( desc, false, wxT("invalid parameter in GetDescription") );
a6c65e88
VZ
381
382 if ( m_info )
383 {
384 *desc = m_info->GetDescription();
385
4e32eea1 386 return true;
a6c65e88
VZ
387 }
388
7dc3cc31
VS
389 return m_impl->GetDescription(desc);
390}
391
392bool
393wxFileType::GetOpenCommand(wxString *openCmd,
394 const wxFileType::MessageParameters& params) const
395{
9a83f860 396 wxCHECK_MSG( openCmd, false, wxT("invalid parameter in GetOpenCommand") );
a6c65e88
VZ
397
398 if ( m_info )
399 {
400 *openCmd = ExpandCommand(m_info->GetOpenCommand(), params);
401
4e32eea1 402 return true;
a6c65e88
VZ
403 }
404
7dc3cc31
VS
405 return m_impl->GetOpenCommand(openCmd, params);
406}
407
0532a258
VZ
408wxString wxFileType::GetOpenCommand(const wxString& filename) const
409{
410 wxString cmd;
411 if ( !GetOpenCommand(&cmd, filename) )
412 {
413 // return empty string to indicate an error
414 cmd.clear();
415 }
416
417 return cmd;
418}
419
7dc3cc31
VS
420bool
421wxFileType::GetPrintCommand(wxString *printCmd,
422 const wxFileType::MessageParameters& params) const
423{
9a83f860 424 wxCHECK_MSG( printCmd, false, wxT("invalid parameter in GetPrintCommand") );
a6c65e88
VZ
425
426 if ( m_info )
427 {
428 *printCmd = ExpandCommand(m_info->GetPrintCommand(), params);
429
4e32eea1 430 return true;
a6c65e88
VZ
431 }
432
7dc3cc31
VS
433 return m_impl->GetPrintCommand(printCmd, params);
434}
435
c7ce8392
VZ
436
437size_t wxFileType::GetAllCommands(wxArrayString *verbs,
438 wxArrayString *commands,
439 const wxFileType::MessageParameters& params) const
440{
441 if ( verbs )
442 verbs->Clear();
443 if ( commands )
444 commands->Clear();
445
d98a58c5 446#if defined (__WINDOWS__) || defined(__UNIX__)
c7ce8392 447 return m_impl->GetAllCommands(verbs, commands, params);
d98a58c5 448#else // !__WINDOWS__ || __UNIX__
c7ce8392
VZ
449 // we don't know how to retrieve all commands, so just try the 2 we know
450 // about
451 size_t count = 0;
452 wxString cmd;
a6c65e88 453 if ( GetOpenCommand(&cmd, params) )
c7ce8392
VZ
454 {
455 if ( verbs )
9a83f860 456 verbs->Add(wxT("Open"));
c7ce8392
VZ
457 if ( commands )
458 commands->Add(cmd);
459 count++;
460 }
461
462 if ( GetPrintCommand(&cmd, params) )
463 {
464 if ( verbs )
9a83f860 465 verbs->Add(wxT("Print"));
c7ce8392
VZ
466 if ( commands )
467 commands->Add(cmd);
468
469 count++;
470 }
471
472 return count;
d98a58c5 473#endif // __WINDOWS__/| __UNIX__
c7ce8392
VZ
474}
475
a6c65e88 476bool wxFileType::Unassociate()
c7ce8392 477{
d98a58c5 478#if defined(__WINDOWS__)
a6c65e88 479 return m_impl->Unassociate();
6691d737 480#elif defined(__UNIX__)
2b813b73 481 return m_impl->Unassociate(this);
2900bd1c 482#else
9a83f860 483 wxFAIL_MSG( wxT("not implemented") ); // TODO
4e32eea1 484 return false;
2900bd1c 485#endif
2b813b73
VZ
486}
487
7a893a31
WS
488bool wxFileType::SetCommand(const wxString& cmd,
489 const wxString& verb,
490 bool overwriteprompt)
2b813b73 491{
d98a58c5 492#if defined (__WINDOWS__) || defined(__UNIX__)
2b813b73
VZ
493 return m_impl->SetCommand(cmd, verb, overwriteprompt);
494#else
7a893a31
WS
495 wxUnusedVar(cmd);
496 wxUnusedVar(verb);
497 wxUnusedVar(overwriteprompt);
9a83f860 498 wxFAIL_MSG(wxT("not implemented"));
4e32eea1 499 return false;
c7ce8392
VZ
500#endif
501}
502
2b813b73
VZ
503bool wxFileType::SetDefaultIcon(const wxString& cmd, int index)
504{
505 wxString sTmp = cmd;
d98a58c5 506#ifdef __WINDOWS__
2b813b73
VZ
507 // VZ: should we do this?
508 // chris elliott : only makes sense in MS windows
509 if ( sTmp.empty() )
525d8583 510 GetOpenCommand(&sTmp, wxFileType::MessageParameters(wxEmptyString, wxEmptyString));
2b813b73 511#endif
9a83f860 512 wxCHECK_MSG( !sTmp.empty(), false, wxT("need the icon file") );
2b813b73 513
d98a58c5 514#if defined (__WINDOWS__) || defined(__UNIX__)
2b813b73
VZ
515 return m_impl->SetDefaultIcon (cmd, index);
516#else
7a893a31 517 wxUnusedVar(index);
9a83f860 518 wxFAIL_MSG(wxT("not implemented"));
4e32eea1 519 return false;
2b813b73
VZ
520#endif
521}
522
a893b65e 523// ----------------------------------------------------------------------------
2b850ae1 524// wxMimeTypesManagerFactory
a893b65e 525// ----------------------------------------------------------------------------
2b850ae1
RR
526
527wxMimeTypesManagerFactory *wxMimeTypesManagerFactory::m_factory = NULL;
528
ad9835c9 529/* static */
a893b65e 530void wxMimeTypesManagerFactory::Set(wxMimeTypesManagerFactory *factory)
2b850ae1 531{
a893b65e 532 delete m_factory;
2b850ae1 533
a893b65e 534 m_factory = factory;
2b850ae1
RR
535}
536
ad9835c9 537/* static */
a893b65e 538wxMimeTypesManagerFactory *wxMimeTypesManagerFactory::Get()
2b850ae1 539{
a893b65e
VZ
540 if ( !m_factory )
541 m_factory = new wxMimeTypesManagerFactory;
2b850ae1 542
a893b65e 543 return m_factory;
2b850ae1
RR
544}
545
546wxMimeTypesManagerImpl *wxMimeTypesManagerFactory::CreateMimeTypesManagerImpl()
547{
548 return new wxMimeTypesManagerImpl;
549}
2b813b73 550
7dc3cc31
VS
551// ----------------------------------------------------------------------------
552// wxMimeTypesManager
553// ----------------------------------------------------------------------------
554
555void wxMimeTypesManager::EnsureImpl()
556{
c7ce8392 557 if ( !m_impl )
a893b65e 558 m_impl = wxMimeTypesManagerFactory::Get()->CreateMimeTypesManagerImpl();
7dc3cc31
VS
559}
560
561bool wxMimeTypesManager::IsOfType(const wxString& mimeType,
562 const wxString& wildcard)
563{
564 wxASSERT_MSG( mimeType.Find(wxT('*')) == wxNOT_FOUND,
565 wxT("first MIME type can't contain wildcards") );
566
4e32eea1 567 // all comparaisons are case insensitive (2nd arg of IsSameAs() is false)
a6c65e88 568 if ( wildcard.BeforeFirst(wxT('/')).
4e32eea1 569 IsSameAs(mimeType.BeforeFirst(wxT('/')), false) )
7dc3cc31
VS
570 {
571 wxString strSubtype = wildcard.AfterFirst(wxT('/'));
572
573 if ( strSubtype == wxT("*") ||
4e32eea1 574 strSubtype.IsSameAs(mimeType.AfterFirst(wxT('/')), false) )
7dc3cc31
VS
575 {
576 // matches (either exactly or it's a wildcard)
4e32eea1 577 return true;
7dc3cc31
VS
578 }
579 }
580
4e32eea1 581 return false;
7dc3cc31
VS
582}
583
584wxMimeTypesManager::wxMimeTypesManager()
585{
586 m_impl = NULL;
587}
588
589wxMimeTypesManager::~wxMimeTypesManager()
590{
8a16a98e
GT
591 if ( m_impl )
592 delete m_impl;
7dc3cc31
VS
593}
594
2b813b73
VZ
595bool wxMimeTypesManager::Unassociate(wxFileType *ft)
596{
9413e1e3
VZ
597 EnsureImpl();
598
6691d737 599#if defined(__UNIX__) && !defined(__CYGWIN__) && !defined(__WINE__)
2b813b73
VZ
600 return m_impl->Unassociate(ft);
601#else
602 return ft->Unassociate();
603#endif
604}
605
606
7dc3cc31 607wxFileType *
a6c65e88 608wxMimeTypesManager::Associate(const wxFileTypeInfo& ftInfo)
7dc3cc31
VS
609{
610 EnsureImpl();
a6c65e88 611
d98a58c5 612#if defined(__WINDOWS__) || defined(__UNIX__)
a6c65e88
VZ
613 return m_impl->Associate(ftInfo);
614#else // other platforms
7a893a31 615 wxUnusedVar(ftInfo);
9a83f860 616 wxFAIL_MSG( wxT("not implemented") ); // TODO
a6c65e88
VZ
617 return NULL;
618#endif // platforms
7dc3cc31
VS
619}
620
c7ce8392 621wxFileType *
a6c65e88 622wxMimeTypesManager::GetFileTypeFromExtension(const wxString& ext)
c7ce8392
VZ
623{
624 EnsureImpl();
e16916ea
VZ
625
626 wxString::const_iterator i = ext.begin();
627 const wxString::const_iterator end = ext.end();
628 wxString extWithoutDot;
629 if ( i != end && *i == '.' )
630 extWithoutDot.assign(++i, ext.end());
631 else
632 extWithoutDot = ext;
633
9a83f860 634 wxCHECK_MSG( !ext.empty(), NULL, wxT("extension can't be empty") );
e16916ea
VZ
635
636 wxFileType *ft = m_impl->GetFileTypeFromExtension(extWithoutDot);
a6c65e88
VZ
637
638 if ( !ft ) {
639 // check the fallbacks
640 //
641 // TODO linear search is potentially slow, perhaps we should use a
642 // sorted array?
643 size_t count = m_fallbacks.GetCount();
644 for ( size_t n = 0; n < count; n++ ) {
645 if ( m_fallbacks[n].GetExtensions().Index(ext) != wxNOT_FOUND ) {
646 ft = new wxFileType(m_fallbacks[n]);
647
648 break;
649 }
650 }
651 }
c7ce8392 652
a6c65e88 653 return ft;
c7ce8392
VZ
654}
655
7dc3cc31
VS
656wxFileType *
657wxMimeTypesManager::GetFileTypeFromMimeType(const wxString& mimeType)
658{
659 EnsureImpl();
a6c65e88
VZ
660 wxFileType *ft = m_impl->GetFileTypeFromMimeType(mimeType);
661
f627fbee 662 if ( !ft ) {
a6c65e88
VZ
663 // check the fallbacks
664 //
f627fbee
VZ
665 // TODO linear search is potentially slow, perhaps we should use a
666 // sorted array?
a6c65e88
VZ
667 size_t count = m_fallbacks.GetCount();
668 for ( size_t n = 0; n < count; n++ ) {
669 if ( wxMimeTypesManager::IsOfType(mimeType,
670 m_fallbacks[n].GetMimeType()) ) {
671 ft = new wxFileType(m_fallbacks[n]);
672
673 break;
674 }
675 }
676 }
677
678 return ft;
7dc3cc31
VS
679}
680
7dc3cc31
VS
681void wxMimeTypesManager::AddFallbacks(const wxFileTypeInfo *filetypes)
682{
683 EnsureImpl();
a6c65e88
VZ
684 for ( const wxFileTypeInfo *ft = filetypes; ft && ft->IsValid(); ft++ ) {
685 AddFallback(*ft);
7dc3cc31
VS
686 }
687}
688
689size_t wxMimeTypesManager::EnumAllFileTypes(wxArrayString& mimetypes)
690{
691 EnsureImpl();
a6c65e88
VZ
692 size_t countAll = m_impl->EnumAllFileTypes(mimetypes);
693
694 // add the fallback filetypes
695 size_t count = m_fallbacks.GetCount();
696 for ( size_t n = 0; n < count; n++ ) {
697 if ( mimetypes.Index(m_fallbacks[n].GetMimeType()) == wxNOT_FOUND ) {
698 mimetypes.Add(m_fallbacks[n].GetMimeType());
699 countAll++;
700 }
701 }
7dc3cc31 702
a6c65e88
VZ
703 return countAll;
704}
7dc3cc31 705
2b813b73
VZ
706void wxMimeTypesManager::Initialize(int mcapStyle,
707 const wxString& sExtraDir)
708{
6691d737 709#if defined(__UNIX__) && !defined(__CYGWIN__) && !defined(__WINE__)
2b813b73
VZ
710 EnsureImpl();
711
712 m_impl->Initialize(mcapStyle, sExtraDir);
33ac7e6f 713#else
4e32eea1
WS
714 (void)mcapStyle;
715 (void)sExtraDir;
2b813b73
VZ
716#endif // Unix
717}
718
719// and this function clears all the data from the manager
720void wxMimeTypesManager::ClearData()
721{
6691d737 722#if defined(__UNIX__) && !defined(__CYGWIN__) && !defined(__WINE__)
2b813b73
VZ
723 EnsureImpl();
724
725 m_impl->ClearData();
726#endif // Unix
727}
728
7dc3cc31 729// ----------------------------------------------------------------------------
a6c65e88 730// global data and wxMimeTypeCmnModule
7dc3cc31
VS
731// ----------------------------------------------------------------------------
732
733// private object
734static wxMimeTypesManager gs_mimeTypesManager;
735
736// and public pointer
a6c65e88 737wxMimeTypesManager *wxTheMimeTypesManager = &gs_mimeTypesManager;
7dc3cc31 738
66806a0b
VS
739class wxMimeTypeCmnModule: public wxModule
740{
66806a0b 741public:
c7ce8392 742 wxMimeTypeCmnModule() : wxModule() { }
a893b65e 743
4e32eea1 744 virtual bool OnInit() { return true; }
c7ce8392
VZ
745 virtual void OnExit()
746 {
a893b65e
VZ
747 wxMimeTypesManagerFactory::Set(NULL);
748
c7ce8392
VZ
749 if ( gs_mimeTypesManager.m_impl != NULL )
750 {
5276b0a5 751 wxDELETE(gs_mimeTypesManager.m_impl);
65e50848 752 gs_mimeTypesManager.m_fallbacks.Clear();
c7ce8392 753 }
66806a0b 754 }
c7ce8392
VZ
755
756 DECLARE_DYNAMIC_CLASS(wxMimeTypeCmnModule)
66806a0b
VS
757};
758
759IMPLEMENT_DYNAMIC_CLASS(wxMimeTypeCmnModule, wxModule)
1e6feb95
VZ
760
761#endif // wxUSE_MIMETYPE