]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mimetype.h
moved bookmarks to Contents panel
[wxWidgets.git] / include / wx / mimetype.h
index 6182c2b9d69c6e007932c7193378036785e7b36a..58a6bf7e2d70d21171bfc22e944fecb0b691413f 100644 (file)
 #ifndef _MIMETYPE_H
 #define _MIMETYPE_H
 
+#ifdef __GNUG__
+#pragma interface "mimetypebase.h"
+#endif
+
+
 // fwd decls
 class wxIcon;
 class wxFileTypeImpl;
@@ -23,6 +28,7 @@ class wxMimeTypesManagerImpl;
 
 // 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
@@ -69,6 +75,7 @@ public:
     // 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);
@@ -148,6 +155,9 @@ private:
     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.
@@ -190,11 +200,10 @@ public:
         // read in additional file in mime.types format
     bool ReadMimeTypes(const wxString& filename);
 
-    // enumerate all known file types: the caller is responsible for freeing
-    // both the array and its elements! The previous value of filetypes is lost
+    // enumerate all known MIME types
     //
     // returns the number of retrieved file types
-    size_t EnumAllFileTypes(wxFileType **filetypes);
+    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
@@ -216,8 +225,19 @@ private:
     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