]>
Commit | Line | Data |
---|---|---|
7dc3cc31 | 1 | ///////////////////////////////////////////////////////////////////////////// |
4d2976ad | 2 | // Name: msw/mimetype.cpp |
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> | |
6c9a19aa | 9 | // Licence: wxWindows licence (part of wxExtra library) |
7dc3cc31 VS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "mimetype.h" | |
14 | #endif | |
15 | ||
16 | // for compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
1e6feb95 VZ |
23 | #if wxUSE_MIMETYPE |
24 | ||
25 | // Doesn't compile in WIN16 mode | |
f1df0927 | 26 | #ifndef __WIN16__ |
7dc3cc31 VS |
27 | |
28 | #ifndef WX_PRECOMP | |
f5f4c6ce VZ |
29 | #include "wx/string.h" |
30 | #if wxUSE_GUI | |
31 | #include "wx/icon.h" | |
32 | #include "wx/msgdlg.h" | |
33 | #endif | |
7dc3cc31 VS |
34 | #endif //WX_PRECOMP |
35 | ||
7dc3cc31 VS |
36 | #include "wx/log.h" |
37 | #include "wx/file.h" | |
da0766ab | 38 | #include "wx/iconloc.h" |
7dc3cc31 VS |
39 | #include "wx/intl.h" |
40 | #include "wx/dynarray.h" | |
41 | #include "wx/confbase.h" | |
42 | ||
43 | #ifdef __WXMSW__ | |
44 | #include "wx/msw/registry.h" | |
6bad4c32 | 45 | #include "wx/msw/private.h" |
7dc3cc31 VS |
46 | #endif // OS |
47 | ||
48 | #include "wx/msw/mimetype.h" | |
49 | ||
50 | // other standard headers | |
51 | #include <ctype.h> | |
52 | ||
53 | // in case we're compiling in non-GUI mode | |
54 | class WXDLLEXPORT wxIcon; | |
55 | ||
7dc3cc31 VS |
56 | // These classes use Windows registry to retrieve the required information. |
57 | // | |
58 | // Keys used (not all of them are documented, so it might actually stop working | |
c7ce8392 | 59 | // in future versions of Windows...): |
7dc3cc31 VS |
60 | // 1. "HKCR\MIME\Database\Content Type" contains subkeys for all known MIME |
61 | // types, each key has a string value "Extension" which gives (dot preceded) | |
62 | // extension for the files of this MIME type. | |
63 | // | |
64 | // 2. "HKCR\.ext" contains | |
65 | // a) unnamed value containing the "filetype" | |
66 | // b) value "Content Type" containing the MIME type | |
67 | // | |
68 | // 3. "HKCR\filetype" contains | |
69 | // a) unnamed value containing the description | |
70 | // b) subkey "DefaultIcon" with single unnamed value giving the icon index in | |
71 | // an icon file | |
72 | // c) shell\open\command and shell\open\print subkeys containing the commands | |
73 | // to open/print the file (the positional parameters are introduced by %1, | |
74 | // %2, ... in these strings, we change them to %s ourselves) | |
75 | ||
76 | // although I don't know of any official documentation which mentions this | |
77 | // location, uses it, so it isn't likely to change | |
78 | static const wxChar *MIME_DATABASE_KEY = wxT("MIME\\Database\\Content Type\\"); | |
79 | ||
11d395f9 VZ |
80 | // this function replaces Microsoft %1 with Unix-like %s |
81 | static bool CanonicalizeParams(wxString& command) | |
82 | { | |
83 | // transform it from '%1' to '%s' style format string (now also test for %L | |
84 | // as apparently MS started using it as well for the same purpose) | |
85 | ||
86 | // NB: we don't make any attempt to verify that the string is valid, i.e. | |
87 | // doesn't contain %2, or second %1 or .... But we do make sure that we | |
88 | // return a string with _exactly_ one '%s'! | |
89 | bool foundFilename = false; | |
90 | size_t len = command.length(); | |
91 | for ( size_t n = 0; (n < len) && !foundFilename; n++ ) | |
92 | { | |
93 | if ( command[n] == wxT('%') && | |
94 | (n + 1 < len) && | |
95 | (command[n + 1] == wxT('1') || command[n + 1] == wxT('L')) ) | |
96 | { | |
97 | // replace it with '%s' | |
98 | command[n + 1] = wxT('s'); | |
99 | ||
100 | foundFilename = true; | |
101 | } | |
102 | } | |
103 | ||
104 | return foundFilename; | |
105 | } | |
106 | ||
c7ce8392 VZ |
107 | void wxFileTypeImpl::Init(const wxString& strFileType, const wxString& ext) |
108 | { | |
109 | // VZ: does it? (FIXME) | |
110 | wxCHECK_RET( !ext.IsEmpty(), _T("needs an extension") ); | |
111 | ||
112 | if ( ext[0u] != wxT('.') ) { | |
113 | m_ext = wxT('.'); | |
114 | } | |
115 | m_ext << ext; | |
116 | ||
117 | m_strFileType = strFileType; | |
118 | if ( !strFileType ) { | |
2b5f62a0 | 119 | m_strFileType = m_ext.AfterFirst('.') + _T("_auto_file"); |
c7ce8392 VZ |
120 | } |
121 | } | |
122 | ||
123 | wxString wxFileTypeImpl::GetVerbPath(const wxString& verb) const | |
124 | { | |
125 | wxString path; | |
126 | path << m_strFileType << _T("\\shell\\") << verb << _T("\\command"); | |
127 | return path; | |
128 | } | |
129 | ||
130 | size_t wxFileTypeImpl::GetAllCommands(wxArrayString *verbs, | |
131 | wxArrayString *commands, | |
132 | const wxFileType::MessageParameters& params) const | |
133 | { | |
134 | wxCHECK_MSG( !m_ext.IsEmpty(), 0, _T("GetAllCommands() needs an extension") ); | |
135 | ||
136 | if ( m_strFileType.IsEmpty() ) | |
137 | { | |
138 | // get it from the registry | |
139 | wxFileTypeImpl *self = wxConstCast(this, wxFileTypeImpl); | |
140 | wxRegKey rkey(wxRegKey::HKCR, m_ext); | |
fda7962d | 141 | if ( !rkey.Exists() || !rkey.QueryValue(wxEmptyString, self->m_strFileType) ) |
c7ce8392 VZ |
142 | { |
143 | wxLogDebug(_T("Can't get the filetype for extension '%s'."), | |
144 | m_ext.c_str()); | |
145 | ||
146 | return 0; | |
147 | } | |
148 | } | |
149 | ||
150 | // enum all subkeys of HKCR\filetype\shell | |
151 | size_t count = 0; | |
152 | wxRegKey rkey(wxRegKey::HKCR, m_strFileType + _T("\\shell")); | |
153 | long dummy; | |
154 | wxString verb; | |
155 | bool ok = rkey.GetFirstKey(verb, dummy); | |
156 | while ( ok ) | |
157 | { | |
158 | wxString command = wxFileType::ExpandCommand(GetCommand(verb), params); | |
159 | ||
160 | // we want the open bverb to eb always the first | |
161 | ||
162 | if ( verb.CmpNoCase(_T("open")) == 0 ) | |
163 | { | |
164 | if ( verbs ) | |
165 | verbs->Insert(verb, 0); | |
166 | if ( commands ) | |
167 | commands->Insert(command, 0); | |
168 | } | |
169 | else // anything else than "open" | |
170 | { | |
171 | if ( verbs ) | |
172 | verbs->Add(verb); | |
173 | if ( commands ) | |
174 | commands->Add(command); | |
175 | } | |
176 | ||
0354a70c VZ |
177 | count++; |
178 | ||
c7ce8392 VZ |
179 | ok = rkey.GetNextKey(verb, dummy); |
180 | } | |
181 | ||
182 | return count; | |
183 | } | |
184 | ||
185 | // ---------------------------------------------------------------------------- | |
186 | // modify the registry database | |
187 | // ---------------------------------------------------------------------------- | |
188 | ||
189 | bool wxFileTypeImpl::EnsureExtKeyExists() | |
190 | { | |
191 | wxRegKey rkey(wxRegKey::HKCR, m_ext); | |
192 | if ( !rkey.Exists() ) | |
193 | { | |
fda7962d | 194 | if ( !rkey.Create() || !rkey.SetValue(wxEmptyString, m_strFileType) ) |
c7ce8392 VZ |
195 | { |
196 | wxLogError(_("Failed to create registry entry for '%s' files."), | |
197 | m_ext.c_str()); | |
198 | return FALSE; | |
199 | } | |
200 | } | |
201 | ||
202 | return TRUE; | |
203 | } | |
204 | ||
c7ce8392 | 205 | // ---------------------------------------------------------------------------- |
a6c65e88 | 206 | // get the command to use |
c7ce8392 VZ |
207 | // ---------------------------------------------------------------------------- |
208 | ||
7dc3cc31 VS |
209 | wxString wxFileTypeImpl::GetCommand(const wxChar *verb) const |
210 | { | |
211 | // suppress possible error messages | |
212 | wxLogNull nolog; | |
213 | wxString strKey; | |
214 | ||
215 | if ( wxRegKey(wxRegKey::HKCR, m_ext + _T("\\shell")).Exists() ) | |
216 | strKey = m_ext; | |
217 | if ( wxRegKey(wxRegKey::HKCR, m_strFileType + _T("\\shell")).Exists() ) | |
218 | strKey = m_strFileType; | |
219 | ||
220 | if ( !strKey ) | |
221 | { | |
222 | // no info | |
223 | return wxEmptyString; | |
224 | } | |
225 | ||
226 | strKey << wxT("\\shell\\") << verb; | |
227 | wxRegKey key(wxRegKey::HKCR, strKey + _T("\\command")); | |
228 | wxString command; | |
229 | if ( key.Open() ) { | |
230 | // it's the default value of the key | |
fda7962d | 231 | if ( key.QueryValue(wxEmptyString, command) ) { |
11d395f9 | 232 | bool foundFilename = CanonicalizeParams(command); |
7dc3cc31 | 233 | |
f6bcfd97 | 234 | #if wxUSE_IPC |
7dc3cc31 VS |
235 | // look whether we must issue some DDE requests to the application |
236 | // (and not just launch it) | |
237 | strKey += _T("\\DDEExec"); | |
238 | wxRegKey keyDDE(wxRegKey::HKCR, strKey); | |
239 | if ( keyDDE.Open() ) { | |
240 | wxString ddeCommand, ddeServer, ddeTopic; | |
fda7962d | 241 | keyDDE.QueryValue(wxEmptyString, ddeCommand); |
7dc3cc31 VS |
242 | ddeCommand.Replace(_T("%1"), _T("%s")); |
243 | ||
244 | wxRegKey(wxRegKey::HKCR, strKey + _T("\\Application")). | |
fda7962d | 245 | QueryValue(wxEmptyString, ddeServer); |
7dc3cc31 | 246 | wxRegKey(wxRegKey::HKCR, strKey + _T("\\Topic")). |
fda7962d | 247 | QueryValue(wxEmptyString, ddeTopic); |
7dc3cc31 | 248 | |
2b5f62a0 VZ |
249 | if (ddeTopic.IsEmpty()) |
250 | ddeTopic = wxT("System"); | |
251 | ||
7dc3cc31 VS |
252 | // HACK: we use a special feature of wxExecute which exists |
253 | // just because we need it here: it will establish DDE | |
254 | // conversation with the program it just launched | |
255 | command.Prepend(_T("WX_DDE#")); | |
256 | command << _T('#') << ddeServer | |
257 | << _T('#') << ddeTopic | |
258 | << _T('#') << ddeCommand; | |
259 | } | |
6e7ce624 | 260 | else |
f6bcfd97 | 261 | #endif // wxUSE_IPC |
11d395f9 VZ |
262 | if ( !foundFilename ) |
263 | { | |
7dc3cc31 VS |
264 | // we didn't find any '%1' - the application doesn't know which |
265 | // file to open (note that we only do it if there is no DDEExec | |
266 | // subkey) | |
267 | // | |
268 | // HACK: append the filename at the end, hope that it will do | |
269 | command << wxT(" %s"); | |
270 | } | |
271 | } | |
272 | } | |
273 | //else: no such file type or no value, will return empty string | |
274 | ||
275 | return command; | |
276 | } | |
277 | ||
278 | bool | |
279 | wxFileTypeImpl::GetOpenCommand(wxString *openCmd, | |
280 | const wxFileType::MessageParameters& params) | |
281 | const | |
282 | { | |
a6c65e88 | 283 | wxString cmd = GetCommand(wxT("open")); |
7dc3cc31 VS |
284 | |
285 | *openCmd = wxFileType::ExpandCommand(cmd, params); | |
286 | ||
287 | return !openCmd->IsEmpty(); | |
288 | } | |
289 | ||
290 | bool | |
291 | wxFileTypeImpl::GetPrintCommand(wxString *printCmd, | |
292 | const wxFileType::MessageParameters& params) | |
293 | const | |
294 | { | |
a6c65e88 | 295 | wxString cmd = GetCommand(wxT("print")); |
7dc3cc31 VS |
296 | |
297 | *printCmd = wxFileType::ExpandCommand(cmd, params); | |
298 | ||
299 | return !printCmd->IsEmpty(); | |
300 | } | |
301 | ||
a6c65e88 VZ |
302 | // ---------------------------------------------------------------------------- |
303 | // getting other stuff | |
304 | // ---------------------------------------------------------------------------- | |
305 | ||
7dc3cc31 VS |
306 | // TODO this function is half implemented |
307 | bool wxFileTypeImpl::GetExtensions(wxArrayString& extensions) | |
308 | { | |
a6c65e88 | 309 | if ( m_ext.IsEmpty() ) { |
7dc3cc31 VS |
310 | // the only way to get the list of extensions from the file type is to |
311 | // scan through all extensions in the registry - too slow... | |
312 | return FALSE; | |
313 | } | |
314 | else { | |
315 | extensions.Empty(); | |
316 | extensions.Add(m_ext); | |
317 | ||
318 | // it's a lie too, we don't return _all_ extensions... | |
319 | return TRUE; | |
320 | } | |
321 | } | |
322 | ||
323 | bool wxFileTypeImpl::GetMimeType(wxString *mimeType) const | |
324 | { | |
7dc3cc31 VS |
325 | // suppress possible error messages |
326 | wxLogNull nolog; | |
c7ce8392 | 327 | wxRegKey key(wxRegKey::HKCR, m_ext); |
f6bcfd97 BP |
328 | |
329 | return key.Open() && key.QueryValue(wxT("Content Type"), *mimeType); | |
7dc3cc31 VS |
330 | } |
331 | ||
4d2976ad VS |
332 | bool wxFileTypeImpl::GetMimeTypes(wxArrayString& mimeTypes) const |
333 | { | |
334 | wxString s; | |
f6bcfd97 BP |
335 | |
336 | if ( !GetMimeType(&s) ) | |
4d2976ad | 337 | { |
4d2976ad | 338 | return FALSE; |
f6bcfd97 BP |
339 | } |
340 | ||
341 | mimeTypes.Clear(); | |
342 | mimeTypes.Add(s); | |
343 | return TRUE; | |
4d2976ad VS |
344 | } |
345 | ||
346 | ||
da0766ab | 347 | bool wxFileTypeImpl::GetIcon(wxIconLocation *iconLoc) const |
7dc3cc31 | 348 | { |
7dc3cc31 VS |
349 | wxString strIconKey; |
350 | strIconKey << m_strFileType << wxT("\\DefaultIcon"); | |
351 | ||
352 | // suppress possible error messages | |
353 | wxLogNull nolog; | |
354 | wxRegKey key(wxRegKey::HKCR, strIconKey); | |
355 | ||
356 | if ( key.Open() ) { | |
357 | wxString strIcon; | |
358 | // it's the default value of the key | |
fda7962d | 359 | if ( key.QueryValue(wxEmptyString, strIcon) ) { |
7dc3cc31 VS |
360 | // the format is the following: <full path to file>, <icon index> |
361 | // NB: icon index may be negative as well as positive and the full | |
362 | // path may contain the environment variables inside '%' | |
363 | wxString strFullPath = strIcon.BeforeLast(wxT(',')), | |
364 | strIndex = strIcon.AfterLast(wxT(',')); | |
365 | ||
366 | // index may be omitted, in which case BeforeLast(',') is empty and | |
367 | // AfterLast(',') is the whole string | |
368 | if ( strFullPath.IsEmpty() ) { | |
369 | strFullPath = strIndex; | |
370 | strIndex = wxT("0"); | |
371 | } | |
372 | ||
da0766ab VZ |
373 | if ( iconLoc ) |
374 | { | |
375 | iconLoc->SetFileName(wxExpandEnvVars(strFullPath)); | |
7dc3cc31 | 376 | |
da0766ab | 377 | iconLoc->SetIndex(wxAtoi(strIndex)); |
7dc3cc31 | 378 | } |
da0766ab VZ |
379 | |
380 | return TRUE; | |
7dc3cc31 VS |
381 | } |
382 | } | |
383 | ||
384 | // no such file type or no value or incorrect icon entry | |
7dc3cc31 VS |
385 | return FALSE; |
386 | } | |
387 | ||
388 | bool wxFileTypeImpl::GetDescription(wxString *desc) const | |
389 | { | |
7dc3cc31 VS |
390 | // suppress possible error messages |
391 | wxLogNull nolog; | |
392 | wxRegKey key(wxRegKey::HKCR, m_strFileType); | |
393 | ||
394 | if ( key.Open() ) { | |
395 | // it's the default value of the key | |
fda7962d | 396 | if ( key.QueryValue(wxEmptyString, *desc) ) { |
7dc3cc31 VS |
397 | return TRUE; |
398 | } | |
399 | } | |
400 | ||
401 | return FALSE; | |
402 | } | |
403 | ||
c7ce8392 VZ |
404 | // helper function |
405 | wxFileType * | |
406 | wxMimeTypesManagerImpl::CreateFileType(const wxString& filetype, const wxString& ext) | |
407 | { | |
408 | wxFileType *fileType = new wxFileType; | |
409 | fileType->m_impl->Init(filetype, ext); | |
410 | return fileType; | |
411 | } | |
412 | ||
7dc3cc31 VS |
413 | // extension -> file type |
414 | wxFileType * | |
415 | wxMimeTypesManagerImpl::GetFileTypeFromExtension(const wxString& ext) | |
416 | { | |
417 | // add the leading point if necessary | |
418 | wxString str; | |
419 | if ( ext[0u] != wxT('.') ) { | |
420 | str = wxT('.'); | |
421 | } | |
422 | str << ext; | |
423 | ||
424 | // suppress possible error messages | |
425 | wxLogNull nolog; | |
426 | ||
427 | bool knownExtension = FALSE; | |
428 | ||
429 | wxString strFileType; | |
430 | wxRegKey key(wxRegKey::HKCR, str); | |
431 | if ( key.Open() ) { | |
432 | // it's the default value of the key | |
fda7962d | 433 | if ( key.QueryValue(wxEmptyString, strFileType) ) { |
7dc3cc31 | 434 | // create the new wxFileType object |
c7ce8392 | 435 | return CreateFileType(strFileType, ext); |
7dc3cc31 VS |
436 | } |
437 | else { | |
438 | // this extension doesn't have a filetype, but it's known to the | |
439 | // system and may be has some other useful keys (open command or | |
440 | // content-type), so still return a file type object for it | |
441 | knownExtension = TRUE; | |
442 | } | |
443 | } | |
444 | ||
f6bcfd97 | 445 | if ( !knownExtension ) |
7dc3cc31 VS |
446 | { |
447 | // unknown extension | |
448 | return NULL; | |
449 | } | |
f6bcfd97 | 450 | |
c7ce8392 VZ |
451 | return CreateFileType(wxEmptyString, ext); |
452 | } | |
453 | ||
2b813b73 | 454 | /* |
c7ce8392 VZ |
455 | wxFileType * |
456 | wxMimeTypesManagerImpl::GetOrAllocateFileTypeFromExtension(const wxString& ext) | |
457 | { | |
458 | wxFileType *fileType = GetFileTypeFromExtension(ext); | |
459 | if ( !fileType ) | |
460 | { | |
461 | fileType = CreateFileType(wxEmptyString, ext); | |
462 | } | |
f6bcfd97 BP |
463 | |
464 | return fileType; | |
7dc3cc31 | 465 | } |
2b813b73 | 466 | */ |
c7ce8392 | 467 | |
7dc3cc31 VS |
468 | // MIME type -> extension -> file type |
469 | wxFileType * | |
470 | wxMimeTypesManagerImpl::GetFileTypeFromMimeType(const wxString& mimeType) | |
471 | { | |
472 | wxString strKey = MIME_DATABASE_KEY; | |
473 | strKey << mimeType; | |
474 | ||
475 | // suppress possible error messages | |
476 | wxLogNull nolog; | |
477 | ||
478 | wxString ext; | |
479 | wxRegKey key(wxRegKey::HKCR, strKey); | |
480 | if ( key.Open() ) { | |
481 | if ( key.QueryValue(wxT("Extension"), ext) ) { | |
482 | return GetFileTypeFromExtension(ext); | |
483 | } | |
484 | } | |
485 | ||
7dc3cc31 VS |
486 | // unknown MIME type |
487 | return NULL; | |
488 | } | |
489 | ||
490 | size_t wxMimeTypesManagerImpl::EnumAllFileTypes(wxArrayString& mimetypes) | |
491 | { | |
492 | // enumerate all keys under MIME_DATABASE_KEY | |
493 | wxRegKey key(wxRegKey::HKCR, MIME_DATABASE_KEY); | |
494 | ||
495 | wxString type; | |
496 | long cookie; | |
497 | bool cont = key.GetFirstKey(type, cookie); | |
498 | while ( cont ) | |
499 | { | |
500 | mimetypes.Add(type); | |
501 | ||
502 | cont = key.GetNextKey(type, cookie); | |
503 | } | |
504 | ||
505 | return mimetypes.GetCount(); | |
506 | } | |
507 | ||
c7ce8392 VZ |
508 | // ---------------------------------------------------------------------------- |
509 | // create a new association | |
510 | // ---------------------------------------------------------------------------- | |
511 | ||
eacaaf44 | 512 | wxFileType *wxMimeTypesManagerImpl::Associate(const wxFileTypeInfo& ftInfo) |
c7ce8392 | 513 | { |
a6c65e88 VZ |
514 | wxCHECK_MSG( !ftInfo.GetExtensions().IsEmpty(), NULL, |
515 | _T("Associate() needs extension") ); | |
516 | ||
2b813b73 VZ |
517 | bool ok = FALSE ; |
518 | int iExtCount = 0 ; | |
519 | wxString filetype; | |
520 | wxString extWithDot; | |
521 | ||
522 | wxString ext = ftInfo.GetExtensions()[iExtCount]; | |
a6c65e88 VZ |
523 | |
524 | wxCHECK_MSG( !ext.empty(), NULL, | |
525 | _T("Associate() needs non empty extension") ); | |
c7ce8392 | 526 | |
c7ce8392 VZ |
527 | if ( ext[0u] != _T('.') ) |
528 | extWithDot = _T('.'); | |
529 | extWithDot += ext; | |
530 | ||
2b813b73 VZ |
531 | // start by setting the HKCR\\.ext entries |
532 | // default is filetype; content type is mimetype | |
533 | const wxString& filetypeOrig = ftInfo.GetShortDesc(); | |
534 | ||
c7ce8392 | 535 | wxRegKey key(wxRegKey::HKCR, extWithDot); |
c7ce8392 VZ |
536 | if ( !key.Exists() ) |
537 | { | |
c7ce8392 | 538 | // create the mapping from the extension to the filetype |
2b813b73 | 539 | ok = key.Create(); |
c7ce8392 VZ |
540 | if ( ok ) |
541 | { | |
2b813b73 | 542 | |
c7ce8392 VZ |
543 | if ( filetypeOrig.empty() ) |
544 | { | |
545 | // make it up from the extension | |
2b813b73 | 546 | filetype << extWithDot.c_str() + 1 << _T("_file"); |
c7ce8392 VZ |
547 | } |
548 | else | |
549 | { | |
550 | // just use the provided one | |
551 | filetype = filetypeOrig; | |
552 | } | |
553 | ||
fda7962d | 554 | ok = key.SetValue(wxEmptyString, filetype); |
c7ce8392 | 555 | } |
2b813b73 VZ |
556 | } |
557 | else | |
558 | { | |
559 | // key already exists, maybe we want to change it ?? | |
560 | if (!filetypeOrig.empty()) | |
561 | { | |
562 | filetype = filetypeOrig; | |
fda7962d | 563 | ok = key.SetValue(wxEmptyString, filetype); |
2b813b73 VZ |
564 | } |
565 | else | |
566 | { | |
fda7962d | 567 | ok = key.QueryValue(wxEmptyString, filetype); |
2b813b73 VZ |
568 | } |
569 | } | |
570 | // now set a mimetypeif we have it, but ignore it if none | |
a6c65e88 | 571 | const wxString& mimetype = ftInfo.GetMimeType(); |
2b813b73 | 572 | if ( !mimetype.empty() ) |
c7ce8392 VZ |
573 | { |
574 | // set the MIME type | |
575 | ok = key.SetValue(_T("Content Type"), mimetype); | |
576 | ||
577 | if ( ok ) | |
578 | { | |
579 | // create the MIME key | |
580 | wxString strKey = MIME_DATABASE_KEY; | |
581 | strKey << mimetype; | |
582 | wxRegKey keyMIME(wxRegKey::HKCR, strKey); | |
583 | ok = keyMIME.Create(); | |
584 | ||
585 | if ( ok ) | |
586 | { | |
587 | // and provide a back link to the extension | |
588 | ok = keyMIME.SetValue(_T("Extension"), extWithDot); | |
589 | } | |
590 | } | |
591 | } | |
592 | ||
2b813b73 VZ |
593 | |
594 | // now make other extensions have the same filetype | |
33ac7e6f | 595 | |
2b813b73 VZ |
596 | for (iExtCount=1; iExtCount < ftInfo.GetExtensionsCount(); iExtCount++ ) |
597 | { | |
598 | ext = ftInfo.GetExtensions()[iExtCount]; | |
599 | if ( ext[0u] != _T('.') ) | |
600 | extWithDot = _T('.'); | |
601 | extWithDot += ext; | |
602 | ||
603 | wxRegKey key(wxRegKey::HKCR, extWithDot); | |
604 | if ( !key.Exists() ) ok = key.Create(); | |
fda7962d | 605 | ok = key.SetValue(wxEmptyString, filetype); |
2b813b73 VZ |
606 | |
607 | // now set any mimetypes we may have, but ignore it if none | |
608 | const wxString& mimetype = ftInfo.GetMimeType(); | |
609 | if ( !mimetype.empty() ) | |
610 | { | |
611 | // set the MIME type | |
612 | ok = key.SetValue(_T("Content Type"), mimetype); | |
613 | ||
c7ce8392 VZ |
614 | if ( ok ) |
615 | { | |
2b813b73 VZ |
616 | // create the MIME key |
617 | wxString strKey = MIME_DATABASE_KEY; | |
618 | strKey << mimetype; | |
619 | wxRegKey keyMIME(wxRegKey::HKCR, strKey); | |
620 | ok = keyMIME.Create(); | |
c7ce8392 VZ |
621 | |
622 | if ( ok ) | |
623 | { | |
2b813b73 VZ |
624 | // and provide a back link to the extension |
625 | ok = keyMIME.SetValue(_T("Extension"), extWithDot); | |
c7ce8392 | 626 | } |
c7ce8392 VZ |
627 | } |
628 | } | |
2b813b73 VZ |
629 | |
630 | ||
631 | } // end of for loop; all extensions now point to HKCR\.ext\Default | |
632 | ||
633 | // create the filetype key itself (it will be empty for now, but | |
634 | // SetCommand(), SetDefaultIcon() &c will use it later) | |
635 | wxRegKey keyFT(wxRegKey::HKCR, filetype); | |
636 | ok = keyFT.Create(); | |
33ac7e6f KB |
637 | |
638 | wxFileType *ft = NULL; | |
2b813b73 VZ |
639 | ft = CreateFileType(filetype, extWithDot); |
640 | ||
641 | if (ft) | |
c7ce8392 | 642 | { |
2b813b73 VZ |
643 | if (! ftInfo.GetOpenCommand ().IsEmpty() ) ft->SetCommand (ftInfo.GetOpenCommand (), wxT("open" ) ); |
644 | if (! ftInfo.GetPrintCommand().IsEmpty() ) ft->SetCommand (ftInfo.GetPrintCommand(), wxT("print" ) ); | |
645 | // chris: I don't like the ->m_impl-> here FIX this ?? | |
646 | if (! ftInfo.GetDescription ().IsEmpty() ) ft->m_impl->SetDescription (ftInfo.GetDescription ()) ; | |
647 | if (! ftInfo.GetIconFile().IsEmpty() ) ft->SetDefaultIcon (ftInfo.GetIconFile(), ftInfo.GetIconIndex() ); | |
c7ce8392 | 648 | |
2b813b73 | 649 | } |
c7ce8392 VZ |
650 | return ft; |
651 | } | |
7dc3cc31 | 652 | |
a6c65e88 VZ |
653 | bool wxFileTypeImpl::SetCommand(const wxString& cmd, |
654 | const wxString& verb, | |
33ac7e6f | 655 | bool WXUNUSED(overwriteprompt)) |
a6c65e88 VZ |
656 | { |
657 | wxCHECK_MSG( !m_ext.IsEmpty() && !verb.IsEmpty(), FALSE, | |
658 | _T("SetCommand() needs an extension and a verb") ); | |
659 | ||
660 | if ( !EnsureExtKeyExists() ) | |
661 | return FALSE; | |
662 | ||
663 | wxRegKey rkey(wxRegKey::HKCR, GetVerbPath(verb)); | |
2b813b73 | 664 | #if 0 |
a6c65e88 VZ |
665 | if ( rkey.Exists() && overwriteprompt ) |
666 | { | |
667 | #if wxUSE_GUI | |
668 | wxString old; | |
fda7962d | 669 | rkey.QueryValue(wxEmptyString, old); |
a6c65e88 VZ |
670 | if ( wxMessageBox |
671 | ( | |
672 | wxString::Format( | |
673 | _("Do you want to overwrite the command used to %s " | |
2b813b73 VZ |
674 | "files with extension \"%s\" ?\nCurrent value is \n%s, " |
675 | "\nNew value is \n%s %1"), // bug here FIX need %1 ?? | |
a6c65e88 VZ |
676 | verb.c_str(), |
677 | m_ext.c_str(), | |
678 | old.c_str(), | |
679 | cmd.c_str()), | |
680 | _("Confirm registry update"), | |
681 | wxYES_NO | wxICON_QUESTION | |
682 | ) != wxYES ) | |
683 | #endif // wxUSE_GUI | |
684 | { | |
685 | // cancelled by user | |
686 | return FALSE; | |
687 | } | |
688 | } | |
2b813b73 | 689 | #endif |
a6c65e88 VZ |
690 | // TODO: |
691 | // 1. translate '%s' to '%1' instead of always adding it | |
692 | // 2. create DDEExec value if needed (undo GetCommand) | |
fda7962d | 693 | return rkey.Create() && rkey.SetValue(wxEmptyString, cmd + _T(" \"%1\"") ); |
a6c65e88 VZ |
694 | } |
695 | ||
2b813b73 | 696 | /* // no longer used |
a6c65e88 VZ |
697 | bool wxFileTypeImpl::SetMimeType(const wxString& mimeTypeOrig) |
698 | { | |
699 | wxCHECK_MSG( !m_ext.IsEmpty(), FALSE, _T("SetMimeType() needs extension") ); | |
700 | ||
701 | if ( !EnsureExtKeyExists() ) | |
702 | return FALSE; | |
703 | ||
704 | // VZ: is this really useful? (FIXME) | |
705 | wxString mimeType; | |
706 | if ( !mimeTypeOrig ) | |
707 | { | |
708 | // make up a default value for it | |
709 | wxString cmd; | |
710 | wxSplitPath(GetCommand(_T("open")), NULL, &cmd, NULL); | |
711 | mimeType << _T("application/x-") << cmd; | |
712 | } | |
713 | else | |
714 | { | |
715 | mimeType = mimeTypeOrig; | |
716 | } | |
717 | ||
718 | wxRegKey rkey(wxRegKey::HKCR, m_ext); | |
719 | return rkey.Create() && rkey.SetValue(_T("Content Type"), mimeType); | |
720 | } | |
2b813b73 | 721 | */ |
a6c65e88 VZ |
722 | |
723 | bool wxFileTypeImpl::SetDefaultIcon(const wxString& cmd, int index) | |
724 | { | |
2b813b73 VZ |
725 | wxCHECK_MSG( !m_ext.IsEmpty(), FALSE, _T("SetDefaultIcon() needs extension") ); |
726 | wxCHECK_MSG( !m_strFileType.IsEmpty(), FALSE, _T("File key not found") ); | |
727 | // the next line fails on a SMBshare, I think because it is case mangled | |
728 | // wxCHECK_MSG( !wxFileExists(cmd), FALSE, _T("Icon file not found.") ); | |
a6c65e88 VZ |
729 | |
730 | if ( !EnsureExtKeyExists() ) | |
731 | return FALSE; | |
732 | ||
733 | wxRegKey rkey(wxRegKey::HKCR, m_strFileType + _T("\\DefaultIcon")); | |
734 | ||
735 | return rkey.Create() && | |
fda7962d | 736 | rkey.SetValue(wxEmptyString, |
a6c65e88 VZ |
737 | wxString::Format(_T("%s,%d"), cmd.c_str(), index)); |
738 | } | |
739 | ||
2b813b73 VZ |
740 | bool wxFileTypeImpl::SetDescription (const wxString& desc) |
741 | { | |
742 | wxCHECK_MSG( !m_strFileType.IsEmpty(), FALSE, _T("File key not found") ); | |
743 | wxCHECK_MSG( !desc.IsEmpty(), FALSE, _T("No file description supplied") ); | |
744 | ||
745 | if ( !EnsureExtKeyExists() ) | |
746 | return FALSE; | |
747 | ||
748 | wxRegKey rkey(wxRegKey::HKCR, m_strFileType ); | |
749 | ||
750 | return rkey.Create() && | |
fda7962d | 751 | rkey.SetValue(wxEmptyString, desc); |
2b813b73 VZ |
752 | } |
753 | ||
a6c65e88 VZ |
754 | // ---------------------------------------------------------------------------- |
755 | // remove file association | |
756 | // ---------------------------------------------------------------------------- | |
757 | ||
758 | bool wxFileTypeImpl::Unassociate() | |
759 | { | |
760 | bool result = TRUE; | |
761 | if ( !RemoveOpenCommand() ) | |
762 | result = FALSE; | |
763 | if ( !RemoveDefaultIcon() ) | |
764 | result = FALSE; | |
765 | if ( !RemoveMimeType() ) | |
766 | result = FALSE; | |
2b813b73 VZ |
767 | if ( !RemoveDescription() ) |
768 | result = FALSE; | |
a6c65e88 | 769 | |
2b813b73 VZ |
770 | /* |
771 | //this might hold other keys, eg some have CSLID keys | |
a6c65e88 VZ |
772 | if ( result ) |
773 | { | |
774 | // delete the root key | |
775 | wxRegKey key(wxRegKey::HKCR, m_ext); | |
776 | if ( key.Exists() ) | |
777 | result = key.DeleteSelf(); | |
778 | } | |
2b813b73 | 779 | */ |
a6c65e88 VZ |
780 | return result; |
781 | } | |
782 | ||
783 | bool wxFileTypeImpl::RemoveOpenCommand() | |
784 | { | |
785 | return RemoveCommand(_T("open")); | |
786 | } | |
787 | ||
788 | bool wxFileTypeImpl::RemoveCommand(const wxString& verb) | |
789 | { | |
790 | wxCHECK_MSG( !m_ext.IsEmpty() && !verb.IsEmpty(), FALSE, | |
791 | _T("RemoveCommand() needs an extension and a verb") ); | |
792 | ||
793 | wxString sKey = m_strFileType; | |
794 | wxRegKey rkey(wxRegKey::HKCR, GetVerbPath(verb)); | |
795 | ||
796 | // if the key already doesn't exist, it's a success | |
797 | return !rkey.Exists() || rkey.DeleteSelf(); | |
798 | } | |
799 | ||
800 | bool wxFileTypeImpl::RemoveMimeType() | |
801 | { | |
802 | wxCHECK_MSG( !m_ext.IsEmpty(), FALSE, _T("RemoveMimeType() needs extension") ); | |
803 | ||
804 | wxRegKey rkey(wxRegKey::HKCR, m_ext); | |
805 | return !rkey.Exists() || rkey.DeleteSelf(); | |
806 | } | |
807 | ||
808 | bool wxFileTypeImpl::RemoveDefaultIcon() | |
809 | { | |
810 | wxCHECK_MSG( !m_ext.IsEmpty(), FALSE, | |
811 | _T("RemoveDefaultIcon() needs extension") ); | |
812 | ||
813 | wxRegKey rkey (wxRegKey::HKCR, m_strFileType + _T("\\DefaultIcon")); | |
814 | return !rkey.Exists() || rkey.DeleteSelf(); | |
815 | } | |
816 | ||
2b813b73 VZ |
817 | bool wxFileTypeImpl::RemoveDescription() |
818 | { | |
819 | wxCHECK_MSG( !m_ext.IsEmpty(), FALSE, | |
820 | _T("RemoveDescription() needs extension") ); | |
821 | ||
822 | wxRegKey rkey (wxRegKey::HKCR, m_strFileType ); | |
823 | return !rkey.Exists() || rkey.DeleteSelf(); | |
824 | } | |
825 | ||
7dc3cc31 VS |
826 | #endif |
827 | // __WIN16__ | |
1e6feb95 VZ |
828 | |
829 | #endif // wxUSE_MIMETYPE |