]> git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/mimetype.h
Fix for VisualAge; Init can't be before it is called in VA.
[wxWidgets.git] / include / wx / os2 / mimetype.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mimetype.h
3 // Purpose: classes and functions to manage MIME types
4 // Author: David Webster
5 // Modified by:
6 // Created: 01.21.99
7 // RCS-ID: $Id$
8 // Copyright: adopted from msw port -- (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license (part of wxExtra library)
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _MIMETYPE_IMPL_H
13 #define _MIMETYPE_IMPL_H
14
15 #include "wx/defs.h"
16
17 #include "wx/mimetype.h"
18
19
20 class WXDLLEXPORT wxFileTypeImpl
21 {
22 public:
23 // ctor
24 wxFileTypeImpl() { m_info = NULL; }
25
26 // one of these Init() function must be called (ctor can't take any
27 // arguments because it's common)
28
29 // initialize us with our file type name and extension - in this case
30 // we will read all other data from the registry
31 void Init(const wxString& strFileType, const wxString& ext)
32 { m_strFileType = strFileType; m_ext = ext; }
33
34 // initialize us with a wxFileTypeInfo object - it contains all the
35 // data
36 void Init(const wxFileTypeInfo& info)
37 { m_info = &info; }
38
39 // implement accessor functions
40 bool GetExtensions(wxArrayString& extensions);
41 bool GetMimeType(wxString *mimeType) const;
42 bool GetIcon(wxIcon *icon) 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;
48
49 private:
50 // helper function: reads the command corresponding to the specified verb
51 // from the registry (returns an empty string if not found)
52 wxString GetCommand(const wxChar *verb) const;
53
54 // we use either m_info or read the data from the registry if m_info == NULL
55 const wxFileTypeInfo *m_info;
56 wxString m_strFileType, // may be empty
57 m_ext;
58 };
59
60
61
62 class WXDLLEXPORT wxMimeTypesManagerImpl
63 {
64 public:
65 // nothing to do here, we don't load any data but just go and fetch it from
66 // the registry when asked for
67 wxMimeTypesManagerImpl() { }
68
69 // implement containing class functions
70 wxFileType *GetFileTypeFromExtension(const wxString& ext);
71 wxFileType *GetFileTypeFromMimeType(const wxString& mimeType);
72
73 size_t EnumAllFileTypes(wxArrayString& mimetypes);
74
75 // this are NOPs under Windows
76 bool ReadMailcap(const wxString& filename, bool fallback = TRUE)
77 { return TRUE; }
78 bool ReadMimeTypes(const wxString& filename)
79 { return TRUE; }
80
81 void AddFallback(const wxFileTypeInfo& ft) { m_fallbacks.Add(ft); }
82
83 private:
84 wxArrayFileTypeInfo m_fallbacks;
85 };
86
87
88 #endif
89 //_MIMETYPE_IMPL_H
90