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