#ifndef _MIMETYPE_H
#define _MIMETYPE_H
+#ifdef __GNUG__
+#pragma interface "mimetypebase.h"
+#endif
+
+
// fwd decls
class wxIcon;
class wxFileTypeImpl;
// the things we really need
#include "wx/string.h"
+#include "wx/dynarray.h"
// This class holds information about a given "file type". File type is the
// same as MIME type under Unix, but under Windows it corresponds more to an
// the accessors *must* be checked!
class WXDLLEXPORT wxFileType
{
-#ifdef __MWERKS__
-friend class wxMimeTypesManagerImpl; // it has access to m_impl
-#else
-friend wxMimeTypesManagerImpl; // it has access to m_impl
-#endif
+friend class WXDLLEXPORT wxMimeTypesManagerImpl; // it has access to m_impl
public:
// An object of this class must be passed to Get{Open|Print}Command. The
// parameters are unchanged)
// return the MIME type for this file type
bool GetMimeType(wxString *mimeType) const;
+ bool GetMimeTypes(wxArrayString& mimeTypes) const;
// fill passed in array with all extensions associated with this file
// type
bool GetExtensions(wxArrayString& extensions);
wxArrayString m_exts; // the extensions which are mapped on this filetype
};
+WX_DECLARE_EXPORTED_OBJARRAY(wxFileTypeInfo, wxArrayFileTypeInfo);
+
+
// This class accesses the information about all known MIME types and allows
// the application to retrieve information (including how to handle data of
// given type) about them.
// read in additional file in mime.types format
bool ReadMimeTypes(const wxString& filename);
+ // enumerate all known MIME types
+ //
+ // returns the number of retrieved file types
+ size_t EnumAllFileTypes(wxArrayString& mimetypes);
+
// these functions can be used to provide default values for some of the
// MIME types inside the program itself (you may also use
// ReadMailcap(filenameWithDefaultTypes, TRUE /* use as fallback */) to
wxMimeTypesManager& operator=(const wxMimeTypesManager&);
wxMimeTypesManagerImpl *m_impl;
+
+ // if m_impl is NULL, create one
+ void EnsureImpl();
};
+
+// ----------------------------------------------------------------------------
+// global variables
+// ----------------------------------------------------------------------------
+
+// the default mime manager for wxWindows programs
+WXDLLEXPORT_DATA(extern wxMimeTypesManager *) wxTheMimeTypesManager;
+
#endif
// wxUSE_FILE