From be0a33fbc07d9ddba2d1167d69d190e4ef64d825 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sat, 22 Jan 2000 11:55:13 +0000 Subject: [PATCH] added GNOME mimeinfo parsing & some fixes for non-XPM icons git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5587 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/mimetype.cpp | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/src/unix/mimetype.cpp b/src/unix/mimetype.cpp index ece8e422eb..95d459d3bb 100644 --- a/src/unix/mimetype.cpp +++ b/src/unix/mimetype.cpp @@ -421,6 +421,7 @@ void wxGNOMEIconHandler::Init() { wxArrayString dirs; dirs.Add(_T("/usr/share")); + dirs.Add(_T("/usr/local/share")); wxString gnomedir; wxGetHomeDir( &gnomedir ); @@ -450,7 +451,14 @@ bool wxGNOMEIconHandler::GetIcon(const wxString& mimetype, wxIcon *icon) wxString iconname = ms_icons[(size_t)index]; #if wxUSE_GUI - *icon = wxIcon(iconname); + wxLogNull nolog; + wxIcon icn; + if (iconname.Right(4).MakeUpper() == _T(".XPM")) + icn = wxIcon(iconname); + else + icn = wxIcon(iconname, wxBITMAP_TYPE_ANY); + if (icn.Ok()) *icon = icn; + else return FALSE; #else // helpful for testing in console mode wxLogDebug(_T("Found GNOME icon for '%s': '%s'\n"), @@ -683,7 +691,14 @@ bool wxKDEIconHandler::GetIcon(const wxString& mimetype, wxIcon *icon) wxString iconname = ms_icons[(size_t)index]; #if wxUSE_GUI - *icon = wxIcon(iconname); + wxLogNull nolog; + wxIcon icn; + if (iconname.Right(4).MakeUpper() == _T(".XPM")) + icn = wxIcon(iconname); + else + icn = wxIcon(iconname, wxBITMAP_TYPE_ANY); + if (icn.Ok()) *icon = icn; + else return FALSE; #else // helpful for testing in console mode wxLogDebug(_T("Found KDE icon for '%s': '%s'\n"), @@ -814,8 +829,8 @@ ArrayIconHandlers& wxMimeTypesManagerImpl::GetIconHandlers() { if ( ms_iconHandlers.GetCount() == 0 ) { - ms_iconHandlers.Add(&gs_iconHandlerGNOME); ms_iconHandlers.Add(&gs_iconHandlerKDE); + ms_iconHandlers.Add(&gs_iconHandlerGNOME); } return ms_iconHandlers; @@ -824,6 +839,12 @@ ArrayIconHandlers& wxMimeTypesManagerImpl::GetIconHandlers() // read system and user mailcaps (TODO implement mime.types support) wxMimeTypesManagerImpl::wxMimeTypesManagerImpl() { + // read KDE/GNOME tables + ArrayIconHandlers& handlers = GetIconHandlers(); + size_t count = handlers.GetCount(); + for ( size_t hn = 0; hn < count; hn++ ) + handlers[hn]->GetMimeInfoRecords(this); + // directories where we look for mailcap and mime.types by default // (taken from metamail(1) sources) static const wxChar *aStandardLocations[] = @@ -864,12 +885,6 @@ wxMimeTypesManagerImpl::wxMimeTypesManagerImpl() if ( wxFile::Exists(strUserMimeTypes) ) { ReadMimeTypes(strUserMimeTypes); } - - // read KDE/GNOME tables - ArrayIconHandlers& handlers = GetIconHandlers(); - size_t count = handlers.GetCount(); - for ( n = 0; n < count; n++ ) - handlers[n]->GetMimeInfoRecords(this); } wxFileType * -- 2.45.2