X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/659a6064215c9bf622515b4b4fe2cb8e897555df..67fade3398f9c35a8e042749ed340c898f7e7bdd:/src/common/filesys.cpp diff --git a/src/common/filesys.cpp b/src/common/filesys.cpp index e83909d847..5fe6703021 100644 --- a/src/common/filesys.cpp +++ b/src/common/filesys.cpp @@ -41,29 +41,36 @@ static wxFileTypeInfo *gs_FSMimeFallbacks = NULL; wxString wxFileSystemHandler::GetMimeTypeFromExt(const wxString& location) { -#if wxUSE_MIMETYPE - wxString ext = wxEmptyString, mime = wxEmptyString; + wxString ext, mime; wxString loc = GetRightLocation(location); char c; int l = loc.Length(), l2; - wxFileType *ft; l2 = l; - for (int i = l-1; i >= 0; i--) { + for (int i = l-1; i >= 0; i--) + { c = loc[(unsigned int) i]; - if (c == wxT('#')) l2 = i + 1; - if (c == wxT('.')) {ext = loc.Right(l2-i-1); break;} - if ((c == wxT('/')) || (c == wxT('\\')) || (c == wxT(':'))) {return wxEmptyString;} + if ( c == wxT('#') ) + l2 = i + 1; + if ( c == wxT('.') ) + { + ext = loc.Right(l2-i-1); + break; + } + if ( (c == wxT('/')) || (c == wxT('\\')) || (c == wxT(':')) ) + return wxEmptyString; } +#if wxUSE_MIMETYPE static bool s_MinimalMimeEnsured = FALSE; if (!s_MinimalMimeEnsured) { - wxTheMimeTypesManager -> AddFallbacks(gs_FSMimeFallbacks); + wxTheMimeTypesManager->AddFallbacks(gs_FSMimeFallbacks); s_MinimalMimeEnsured = TRUE; } - ft = wxTheMimeTypesManager -> GetFileTypeFromExtension(ext); - if ( !ft || !ft -> GetMimeType(&mime) ) { + wxFileType *ft = wxTheMimeTypesManager->GetFileTypeFromExtension(ext); + if ( !ft || !ft -> GetMimeType(&mime) ) + { mime = wxEmptyString; } @@ -71,6 +78,16 @@ wxString wxFileSystemHandler::GetMimeTypeFromExt(const wxString& location) return mime; #else + if ( ext.IsSameAs(wxT("htm"), FALSE) || ext.IsSameAs(_T("html"), FALSE) ) + return wxT("text/html"); + if ( ext.IsSameAs(wxT("jpg"), FALSE) || ext.IsSameAs(_T("jpeg"), FALSE) ) + return wxT("image/jpeg"); + if ( ext.IsSameAs(wxT("gif"), FALSE) ) + return wxT("image/gif"); + if ( ext.IsSameAs(wxT("png"), FALSE) ) + return wxT("image/png"); + if ( ext.IsSameAs(wxT("bmp"), FALSE) ) + return wxT("image/bmp"); return wxEmptyString; #endif } @@ -157,10 +174,10 @@ wxFSFile* wxLocalFSHandler::OpenFile(wxFileSystem& WXUNUSED(fs), const wxString& // location has Unix path separators wxString right = ms_root + GetRightLocation(location); wxFileName fn(right, wxPATH_UNIX); - + if (!wxFileExists(fn.GetFullPath())) return (wxFSFile*) NULL; - + return new wxFSFile(new wxFileInputStream(fn.GetFullPath()), right, GetMimeTypeFromExt(location), @@ -187,6 +204,7 @@ wxString wxLocalFSHandler::FindNext() //----------------------------------------------------------------------------- IMPLEMENT_DYNAMIC_CLASS(wxFileSystem, wxObject) +IMPLEMENT_ABSTRACT_CLASS(wxFSFile, wxObject) wxList wxFileSystem::m_Handlers;