// Created: 23.09.98
// RCS-ID: $Id$
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
-// Licence: wxWindows license (part of wxExtra library)
+// Licence: wxWindows licence (part of wxExtra library)
/////////////////////////////////////////////////////////////////////////////
#ifndef _MIMETYPE_IMPL_H
#include "wx/defs.h"
+#if wxUSE_MIMETYPE
+
#include "wx/mimetype.h"
// ----------------------------------------------------------------------------
bool GetExtensions(wxArrayString& extensions);
bool GetMimeType(wxString *mimeType) const;
bool GetMimeTypes(wxArrayString& mimeTypes) const;
- bool GetIcon(wxIcon *icon, wxString *sCommand = NULL, int *iIndex = NULL) const;
+ bool GetIcon(wxIcon *icon, wxString *sCommand = NULL, int *iIndex = NULL,
+ int iconSize = wxICON_LARGE) const;
bool GetDescription(wxString *desc) const;
bool GetOpenCommand(wxString *openCmd,
const wxFileType::MessageParameters& params) const;
size_t EnumAllFileTypes(wxArrayString& mimetypes);
- // these are NOPs under Windows
- bool ReadMailcap(const wxString& filename, bool fallback = TRUE)
+ // this are NOPs under Windows
+ bool ReadMailcap(const wxString& WXUNUSED(filename), bool WXUNUSED(fallback) = TRUE)
{ return TRUE; }
- bool ReadMimeTypes(const wxString& filename)
+ bool ReadMimeTypes(const wxString& WXUNUSED(filename))
{ return TRUE; }
// create a new filetype association
wxFileType *CreateFileType(const wxString& filetype, const wxString& ext);
};
+#endif // wxUSE_MIMETYPE
#endif
//_MIMETYPE_IMPL_H