diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-11-21 03:12:19 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-11-21 03:12:19 +0800 |
commit | e464015f47f6d575f5db02d851d7ea4b88278e34 (patch) | |
tree | bd44d70a7826306430e185dcddd352472a738b67 /embed/mozilla/ContentHandler.cpp | |
parent | 70c88252fb1eb732104f1523a5515bf556a3438c (diff) | |
download | gsoc2013-epiphany-e464015f47f6d575f5db02d851d7ea4b88278e34.tar gsoc2013-epiphany-e464015f47f6d575f5db02d851d7ea4b88278e34.tar.gz gsoc2013-epiphany-e464015f47f6d575f5db02d851d7ea4b88278e34.tar.bz2 gsoc2013-epiphany-e464015f47f6d575f5db02d851d7ea4b88278e34.tar.lz gsoc2013-epiphany-e464015f47f6d575f5db02d851d7ea4b88278e34.tar.xz gsoc2013-epiphany-e464015f47f6d575f5db02d851d7ea4b88278e34.tar.zst gsoc2013-epiphany-e464015f47f6d575f5db02d851d7ea4b88278e34.zip |
Implement an handle_content signal to allow to write plugins to support
2003-11-20 Marco Pesenti Gritti <marco@gnome.org>
* embed/ephy-embed-single.c: (ephy_embed_single_class_init):
* embed/ephy-embed-single.h:
* embed/mozilla/ContentHandler.cpp:
* embed/mozilla/EphyHeaderSniffer.cpp:
* embed/mozilla/EphyHeaderSniffer.h:
* lib/ephy-marshal.list:
Implement an handle_content signal to allow to write
plugins to support external download managers.
Diffstat (limited to 'embed/mozilla/ContentHandler.cpp')
-rw-r--r-- | embed/mozilla/ContentHandler.cpp | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/embed/mozilla/ContentHandler.cpp b/embed/mozilla/ContentHandler.cpp index 8f0267d33..dc4382943 100644 --- a/embed/mozilla/ContentHandler.cpp +++ b/embed/mozilla/ContentHandler.cpp @@ -73,17 +73,26 @@ NS_IMETHODIMP GContentHandler::Show(nsIHelperAppLauncher *aLauncher, nsISupports *aContext) #endif { - /* aForced reflects if the content being sent is normally viewable - * in mozilla or not. That fact doesn't affect us, so ignore it - */ - nsresult rv; + EphyEmbedSingle *single; + gboolean handled = FALSE; mLauncher = aLauncher; rv = Init (); if (NS_FAILED (rv)) return rv; - - MIMEAskAction (); + + single = ephy_embed_shell_get_embed_single (embed_shell); + g_signal_emit_by_name (single, "handle_content", mMimeType, + mUrl.get(), &handled); + + if (!handled) + { + MIMEAskAction (); + } + else + { + mLauncher->Cancel (); + } return NS_OK; } |