1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/mimetype.h
3 // Purpose: classes and functions to manage MIME types
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
8 // Licence: wxWindows licence (part of wxExtra library)
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _MIMETYPE_IMPL_H
12 #define _MIMETYPE_IMPL_H
18 #include "wx/mimetype.h"
20 // ----------------------------------------------------------------------------
21 // wxFileTypeImpl is the MSW version of wxFileType, this is a private class
22 // and is never used directly by the application
23 // ----------------------------------------------------------------------------
25 class WXDLLIMPEXP_BASE wxFileTypeImpl
31 // one of these Init() function must be called (ctor can't take any
32 // arguments because it's common)
34 // initialize us with our file type name and extension - in this case
35 // we will read all other data from the registry
36 void Init(const wxString
& strFileType
, const wxString
& ext
);
38 // implement accessor functions
39 bool GetExtensions(wxArrayString
& extensions
);
40 bool GetMimeType(wxString
*mimeType
) const;
41 bool GetMimeTypes(wxArrayString
& mimeTypes
) const;
42 bool GetIcon(wxIconLocation
*iconLoc
) const;
43 bool GetDescription(wxString
*desc
) const;
44 bool GetOpenCommand(wxString
*openCmd
,
45 const wxFileType::MessageParameters
& params
) const;
46 bool GetPrintCommand(wxString
*printCmd
,
47 const wxFileType::MessageParameters
& params
) const;
49 size_t GetAllCommands(wxArrayString
* verbs
, wxArrayString
* commands
,
50 const wxFileType::MessageParameters
& params
) const;
54 // set an arbitrary command, ask confirmation if it already exists and
55 // overwriteprompt is true
56 bool SetCommand(const wxString
& cmd
,
58 bool overwriteprompt
= true);
60 bool SetDefaultIcon(const wxString
& cmd
= wxEmptyString
, int index
= 0);
62 // this is called by Associate
63 bool SetDescription (const wxString
& desc
);
66 // helper function: reads the command corresponding to the specified verb
67 // from the registry (returns an empty string if not found)
68 wxString
GetCommand(const wxString
& verb
) const;
70 // get the registry path for the given verb
71 wxString
GetVerbPath(const wxString
& verb
) const;
73 // check that the registry key for our extension exists, create it if it
74 // doesn't, return false if this failed
75 bool EnsureExtKeyExists();
77 wxString m_strFileType
, // may be empty
80 // these methods are not publicly accessible (as wxMimeTypesManager
81 // doesn't know about them), and should only be called by Unassociate
83 bool RemoveOpenCommand();
84 bool RemoveCommand(const wxString
& verb
);
85 bool RemoveMimeType();
86 bool RemoveDefaultIcon();
87 bool RemoveDescription();
90 class WXDLLIMPEXP_BASE wxMimeTypesManagerImpl
93 // nothing to do here, we don't load any data but just go and fetch it from
94 // the registry when asked for
95 wxMimeTypesManagerImpl() { }
97 // implement containing class functions
98 wxFileType
*GetFileTypeFromExtension(const wxString
& ext
);
99 wxFileType
*GetOrAllocateFileTypeFromExtension(const wxString
& ext
);
100 wxFileType
*GetFileTypeFromMimeType(const wxString
& mimeType
);
102 size_t EnumAllFileTypes(wxArrayString
& mimetypes
);
104 // create a new filetype association
105 wxFileType
*Associate(const wxFileTypeInfo
& ftInfo
);
107 // create a new filetype with the given name and extension
108 wxFileType
*CreateFileType(const wxString
& filetype
, const wxString
& ext
);
111 #endif // wxUSE_MIMETYPE