1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/unix/mimetype.h
3 // Purpose: classes and functions to manage MIME types
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence (part of wxExtra library)
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _MIMETYPE_IMPL_H
13 #define _MIMETYPE_IMPL_H
15 #include "wx/mimetype.h"
19 class wxMimeTypeCommands
;
21 WX_DEFINE_ARRAY_PTR(wxMimeTypeCommands
*, wxMimeCommandsArray
);
23 // this is the real wxMimeTypesManager for Unix
24 class WXDLLIMPEXP_BASE wxMimeTypesManagerImpl
28 wxMimeTypesManagerImpl();
29 virtual ~wxMimeTypesManagerImpl();
31 // load all data into memory - done when it is needed for the first time
32 void Initialize(int mailcapStyles
= wxMAILCAP_ALL
,
33 const wxString
& extraDir
= wxEmptyString
);
35 // and delete the data here
38 // implement containing class functions
39 wxFileType
*GetFileTypeFromExtension(const wxString
& ext
);
40 wxFileType
*GetFileTypeFromMimeType(const wxString
& mimeType
);
42 size_t EnumAllFileTypes(wxArrayString
& mimetypes
);
44 void AddFallback(const wxFileTypeInfo
& filetype
);
46 // add information about the given mimetype
47 void AddMimeTypeInfo(const wxString
& mimetype
,
48 const wxString
& extensions
,
49 const wxString
& description
);
50 void AddMailcapInfo(const wxString
& strType
,
51 const wxString
& strOpenCmd
,
52 const wxString
& strPrintCmd
,
53 const wxString
& strTest
,
54 const wxString
& strDesc
);
56 // add a new record to the user .mailcap/.mime.types files
57 wxFileType
*Associate(const wxFileTypeInfo
& ftInfo
);
59 bool Unassociate(wxFileType
*ft
);
62 // get the string containing space separated extensions for the given
64 wxString
GetExtension(size_t index
) { return m_aExtensions
[index
]; }
69 wxArrayString m_aTypes
, // MIME types
70 m_aDescriptions
, // descriptions (just some text)
71 m_aExtensions
, // space separated list of extensions
72 m_aIcons
; // Icon filenames
74 // verb=command pairs for this file type
75 wxMimeCommandsArray m_aEntries
;
77 // are we initialized?
80 wxString
GetCommand(const wxString
&verb
, size_t nIndex
) const;
82 // Read XDG *.desktop file
83 void LoadXDGApp(const wxString
& filename
);
85 void LoadXDGAppsFilesFromDir(const wxString
& dirname
);
87 // Load XDG globs files
88 void LoadXDGGlobs(const wxString
& filename
);
90 // functions used to do associations
91 virtual int AddToMimeData(const wxString
& strType
,
92 const wxString
& strIcon
,
93 wxMimeTypeCommands
*entry
,
94 const wxArrayString
& strExtensions
,
95 const wxString
& strDesc
,
96 bool replaceExisting
= true);
97 virtual bool DoAssociation(const wxString
& strType
,
98 const wxString
& strIcon
,
99 wxMimeTypeCommands
*entry
,
100 const wxArrayString
& strExtensions
,
101 const wxString
& strDesc
);
103 // give it access to m_aXXX variables
104 friend class WXDLLIMPEXP_FWD_BASE wxFileTypeImpl
;
107 class WXDLLIMPEXP_BASE wxFileTypeImpl
110 // initialization functions
111 // this is used to construct a list of mimetypes which match;
112 // if built with GetFileTypeFromMimetype index 0 has the exact match and
113 // index 1 the type / * match
114 // if built with GetFileTypeFromExtension, index 0 has the mimetype for
115 // the first extension found, index 1 for the second and so on
117 void Init(wxMimeTypesManagerImpl
*manager
, size_t index
)
118 { m_manager
= manager
; m_index
.Add(index
); }
121 bool GetExtensions(wxArrayString
& extensions
);
122 bool GetMimeType(wxString
*mimeType
) const
123 { *mimeType
= m_manager
->m_aTypes
[m_index
[0]]; return true; }
124 bool GetMimeTypes(wxArrayString
& mimeTypes
) const;
125 bool GetIcon(wxIconLocation
*iconLoc
) const;
127 bool GetDescription(wxString
*desc
) const
128 { *desc
= m_manager
->m_aDescriptions
[m_index
[0]]; return true; }
130 bool GetOpenCommand(wxString
*openCmd
,
131 const wxFileType::MessageParameters
& params
) const
133 *openCmd
= GetExpandedCommand(wxT("open"), params
);
134 return (! openCmd
-> IsEmpty() );
137 bool GetPrintCommand(wxString
*printCmd
,
138 const wxFileType::MessageParameters
& params
) const
140 *printCmd
= GetExpandedCommand(wxT("print"), params
);
141 return (! printCmd
-> IsEmpty() );
144 // return the number of commands defined for this file type, 0 if none
145 size_t GetAllCommands(wxArrayString
*verbs
, wxArrayString
*commands
,
146 const wxFileType::MessageParameters
& params
) const;
149 // remove the record for this file type
150 // probably a mistake to come here, use wxMimeTypesManager.Unassociate (ft) instead
151 bool Unassociate(wxFileType
*ft
)
153 return m_manager
->Unassociate(ft
);
156 // set an arbitrary command, ask confirmation if it already exists and
157 // overwriteprompt is TRUE
158 bool SetCommand(const wxString
& cmd
, const wxString
& verb
, bool overwriteprompt
= true);
159 bool SetDefaultIcon(const wxString
& strIcon
= wxEmptyString
, int index
= 0);
163 GetExpandedCommand(const wxString
& verb
,
164 const wxFileType::MessageParameters
& params
) const;
166 wxMimeTypesManagerImpl
*m_manager
;
167 wxArrayInt m_index
; // in the wxMimeTypesManagerImpl arrays
170 #endif // wxUSE_MIMETYPE
172 #endif // _MIMETYPE_IMPL_H