]>
Commit | Line | Data |
---|---|---|
7dc3cc31 | 1 | ///////////////////////////////////////////////////////////////////////////// |
678ebfcd | 2 | // Name: wx/unix/mimetype.h |
7dc3cc31 VS |
3 | // Purpose: classes and functions to manage MIME types |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 23.09.98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
65571936 | 9 | // Licence: wxWindows licence (part of wxExtra library) |
7dc3cc31 VS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _MIMETYPE_IMPL_H | |
13 | #define _MIMETYPE_IMPL_H | |
14 | ||
7dc3cc31 VS |
15 | #include "wx/mimetype.h" |
16 | ||
0d2c74c6 | 17 | #if wxUSE_MIMETYPE |
7dc3cc31 | 18 | |
678ebfcd | 19 | class wxMimeTypeCommands; |
7dc3cc31 | 20 | |
0d2c74c6 | 21 | WX_DEFINE_ARRAY_PTR(wxMimeTypeCommands *, wxMimeCommandsArray); |
7dc3cc31 VS |
22 | |
23 | // this is the real wxMimeTypesManager for Unix | |
09902c51 | 24 | class WXDLLIMPEXP_BASE wxMimeTypesManagerImpl |
7dc3cc31 | 25 | { |
7dc3cc31 | 26 | public: |
a6c65e88 | 27 | // ctor and dtor |
7dc3cc31 | 28 | wxMimeTypesManagerImpl(); |
2b850ae1 | 29 | virtual ~wxMimeTypesManagerImpl(); |
a6c65e88 VZ |
30 | |
31 | // load all data into memory - done when it is needed for the first time | |
805f26b3 | 32 | void Initialize(int mailcapStyles = wxMAILCAP_ALL, |
2b813b73 VZ |
33 | const wxString& extraDir = wxEmptyString); |
34 | ||
35 | // and delete the data here | |
36 | void ClearData(); | |
7dc3cc31 VS |
37 | |
38 | // implement containing class functions | |
39 | wxFileType *GetFileTypeFromExtension(const wxString& ext); | |
40 | wxFileType *GetFileTypeFromMimeType(const wxString& mimeType); | |
41 | ||
42 | size_t EnumAllFileTypes(wxArrayString& mimetypes); | |
43 | ||
7dc3cc31 VS |
44 | void AddFallback(const wxFileTypeInfo& filetype); |
45 | ||
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); | |
55 | ||
a6c65e88 VZ |
56 | // add a new record to the user .mailcap/.mime.types files |
57 | wxFileType *Associate(const wxFileTypeInfo& ftInfo); | |
2b813b73 VZ |
58 | // remove association |
59 | bool Unassociate(wxFileType *ft); | |
a6c65e88 | 60 | |
7dc3cc31 VS |
61 | // accessors |
62 | // get the string containing space separated extensions for the given | |
63 | // file type | |
64 | wxString GetExtension(size_t index) { return m_aExtensions[index]; } | |
65 | ||
2b850ae1 | 66 | protected: |
6d718495 | 67 | void InitIfNeeded(); |
a6c65e88 | 68 | |
7dc3cc31 VS |
69 | wxArrayString m_aTypes, // MIME types |
70 | m_aDescriptions, // descriptions (just some text) | |
2b813b73 VZ |
71 | m_aExtensions, // space separated list of extensions |
72 | m_aIcons; // Icon filenames | |
73 | ||
74 | // verb=command pairs for this file type | |
678ebfcd | 75 | wxMimeCommandsArray m_aEntries; |
7dc3cc31 | 76 | |
a6c65e88 VZ |
77 | // are we initialized? |
78 | bool m_initialized; | |
79 | ||
2b813b73 VZ |
80 | wxString GetCommand(const wxString &verb, size_t nIndex) const; |
81 | ||
d39e2bbc RR |
82 | // Read XDG *.desktop file |
83 | void LoadXDGApp(const wxString& filename); | |
84 | // Scan XDG directory | |
85 | void LoadXDGAppsFilesFromDir(const wxString& dirname); | |
2b813b73 | 86 | |
05f616ef RR |
87 | // Load XDG globs files |
88 | void LoadXDGGlobs(const wxString& filename); | |
89 | ||
2b813b73 | 90 | // functions used to do associations |
2b850ae1 | 91 | virtual int AddToMimeData(const wxString& strType, |
2b813b73 | 92 | const wxString& strIcon, |
678ebfcd | 93 | wxMimeTypeCommands *entry, |
2b813b73 VZ |
94 | const wxArrayString& strExtensions, |
95 | const wxString& strDesc, | |
96 | bool replaceExisting = TRUE); | |
2b850ae1 | 97 | virtual bool DoAssociation(const wxString& strType, |
2b813b73 | 98 | const wxString& strIcon, |
678ebfcd | 99 | wxMimeTypeCommands *entry, |
2b813b73 VZ |
100 | const wxArrayString& strExtensions, |
101 | const wxString& strDesc); | |
102 | ||
a6c65e88 | 103 | // give it access to m_aXXX variables |
4f7d425f | 104 | friend class WXDLLIMPEXP_FWD_BASE wxFileTypeImpl; |
7dc3cc31 VS |
105 | }; |
106 | ||
09902c51 | 107 | class WXDLLIMPEXP_BASE wxFileTypeImpl |
7dc3cc31 VS |
108 | { |
109 | public: | |
110 | // initialization functions | |
2b813b73 VZ |
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 | |
116 | ||
7dc3cc31 | 117 | void Init(wxMimeTypesManagerImpl *manager, size_t index) |
4d2976ad | 118 | { m_manager = manager; m_index.Add(index); } |
7dc3cc31 VS |
119 | |
120 | // accessors | |
121 | bool GetExtensions(wxArrayString& extensions); | |
122 | bool GetMimeType(wxString *mimeType) const | |
4d2976ad VS |
123 | { *mimeType = m_manager->m_aTypes[m_index[0]]; return TRUE; } |
124 | bool GetMimeTypes(wxArrayString& mimeTypes) const; | |
da0766ab | 125 | bool GetIcon(wxIconLocation *iconLoc) const; |
2b813b73 | 126 | |
7dc3cc31 | 127 | bool GetDescription(wxString *desc) const |
4d2976ad | 128 | { *desc = m_manager->m_aDescriptions[m_index[0]]; return TRUE; } |
7dc3cc31 VS |
129 | |
130 | bool GetOpenCommand(wxString *openCmd, | |
131 | const wxFileType::MessageParameters& params) const | |
132 | { | |
2b813b73 VZ |
133 | *openCmd = GetExpandedCommand(wxT("open"), params); |
134 | return (! openCmd -> IsEmpty() ); | |
7dc3cc31 VS |
135 | } |
136 | ||
137 | bool GetPrintCommand(wxString *printCmd, | |
138 | const wxFileType::MessageParameters& params) const | |
139 | { | |
2b813b73 VZ |
140 | *printCmd = GetExpandedCommand(wxT("print"), params); |
141 | return (! printCmd -> IsEmpty() ); | |
7dc3cc31 VS |
142 | } |
143 | ||
2b813b73 VZ |
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; | |
147 | ||
148 | ||
a6c65e88 | 149 | // remove the record for this file type |
2b813b73 VZ |
150 | // probably a mistake to come here, use wxMimeTypesManager.Unassociate (ft) instead |
151 | bool Unassociate(wxFileType *ft) | |
152 | { | |
153 | return m_manager->Unassociate(ft); | |
154 | } | |
a6c65e88 | 155 | |
2b813b73 VZ |
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); | |
7dc3cc31 | 160 | |
2b813b73 VZ |
161 | private: |
162 | wxString | |
163 | GetExpandedCommand(const wxString & verb, | |
164 | const wxFileType::MessageParameters& params) const; | |
7dc3cc31 VS |
165 | |
166 | wxMimeTypesManagerImpl *m_manager; | |
4d2976ad | 167 | wxArrayInt m_index; // in the wxMimeTypesManagerImpl arrays |
7dc3cc31 VS |
168 | }; |
169 | ||
0d2c74c6 VZ |
170 | #endif // wxUSE_MIMETYPE |
171 | ||
172 | #endif // _MIMETYPE_IMPL_H | |
7dc3cc31 | 173 | |
7dc3cc31 | 174 |