From 6a0c3f0befbc71168923838d9f2b2dca7ab9d5df Mon Sep 17 00:00:00 2001 From: Xan Lopez Date: Sat, 3 Jul 2004 22:52:28 +0000 Subject: Add a MIME icon in the File column. Some indent fixes. * embed/downloader-view.c: (downloader_view_get_type), (downloader_view_class_init), (downloader_view_init), (downloader_view_finalize), (format_interval), (downloader_view_add_download), (downloader_view_build_ui), (downloader_view_remove_download): Add a MIME icon in the File column. Some indent fixes. * embed/ephy-download.c: (ephy_download_get_mime): * embed/ephy-download.h: * embed/mozilla/MozDownload.cpp: * embed/mozilla/mozilla-download.cpp: Implement the method to get the MIME of a download and port to nsEmbedString. * embed/mozilla/PrintingPromptService.cpp: Remove bogus nsString.h header. --- embed/mozilla/mozilla-download.cpp | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) (limited to 'embed/mozilla/mozilla-download.cpp') diff --git a/embed/mozilla/mozilla-download.cpp b/embed/mozilla/mozilla-download.cpp index 0ad8dc2c6..9f2aca9dd 100644 --- a/embed/mozilla/mozilla-download.cpp +++ b/embed/mozilla/mozilla-download.cpp @@ -26,7 +26,7 @@ #include "ephy-debug.h" -#include "nsString.h" +#include static void mozilla_download_class_init (MozillaDownloadClass *klass); @@ -89,7 +89,7 @@ impl_get_target (EphyDownload *download) mozDownload->GetTargetFile (getter_AddRefs (targetFile)); - nsCAutoString tempPathStr; + nsEmbedCString tempPathStr; targetFile->GetNativePath (tempPathStr); return g_strdup (tempPathStr.get ()); @@ -100,7 +100,7 @@ impl_get_source (EphyDownload *download) { nsCOMPtr uri; MozDownload *mozDownload; - nsCString spec; + nsEmbedCString spec; mozDownload = MOZILLA_DOWNLOAD (download)->priv->moz_download; @@ -175,6 +175,22 @@ impl_get_elapsed_time (EphyDownload *download) return elapsed / 1000000; } +static char* +impl_get_mime (EphyDownload *download) +{ + MozDownload *mozDownload; + nsCOMPtr mime; + nsEmbedCString mimeType; + + mozDownload = MOZILLA_DOWNLOAD (download)->priv->moz_download; + + mozDownload->GetMIMEInfo (getter_AddRefs(mime)); + if (mime == nsnull) return NULL; + mime->GetMIMEType(mimeType); + + return g_strdup (mimeType.get()); +} + static void impl_cancel (EphyDownload *download) { @@ -260,6 +276,7 @@ mozilla_download_class_init (MozillaDownloadClass *klass) download_class->get_target = impl_get_target; download_class->get_source = impl_get_source; download_class->get_state = impl_get_state; + download_class->get_mime = impl_get_mime; download_class->cancel = impl_cancel; download_class->pause = impl_pause; download_class->resume = impl_resume; -- cgit v1.2.3