diff options
author | Xan Lopez <xan@gnome.org> | 2009-09-20 05:06:01 +0800 |
---|---|---|
committer | Xan Lopez <xan@gnome.org> | 2009-09-20 05:06:01 +0800 |
commit | 98361f61fcdfc52d2ae2682234778f3e1b384916 (patch) | |
tree | b31f644a5fb16a636cf872408840e4cba971bc86 /embed/ephy-web-view.c | |
parent | 0fa8e2fb6780e75923da248bb5d94e30d8556dd7 (diff) | |
download | gsoc2013-epiphany-98361f61fcdfc52d2ae2682234778f3e1b384916.tar gsoc2013-epiphany-98361f61fcdfc52d2ae2682234778f3e1b384916.tar.gz gsoc2013-epiphany-98361f61fcdfc52d2ae2682234778f3e1b384916.tar.bz2 gsoc2013-epiphany-98361f61fcdfc52d2ae2682234778f3e1b384916.tar.lz gsoc2013-epiphany-98361f61fcdfc52d2ae2682234778f3e1b384916.tar.xz gsoc2013-epiphany-98361f61fcdfc52d2ae2682234778f3e1b384916.tar.zst gsoc2013-epiphany-98361f61fcdfc52d2ae2682234778f3e1b384916.zip |
Bring back epiphany context menu
There's a few items (like email link) and actions (like bookmark link)
missing or not working because of missing information in the
WebKitHitTestResult object, but most of the stuff is working.
For some reason the g-ir-scanner is not picking up the correct type
name for WebKitHitTestResult (it uses WebKitHitTestResult instead of
WebKit.HitTestResult), so the introspection support is broken unless
that error is fixed manually. Looking into that ...
Bug #562617
Diffstat (limited to 'embed/ephy-web-view.c')
-rw-r--r-- | embed/ephy-web-view.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/embed/ephy-web-view.c b/embed/ephy-web-view.c index 5f1f49af0..3ef682669 100644 --- a/embed/ephy-web-view.c +++ b/embed/ephy-web-view.c @@ -688,24 +688,7 @@ ephy_web_view_class_init (EphyWebViewClass *klass) G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE); -/** - * EphyWebView::ge-context-menu: - * @embed: - * @event: the #EphyEmbedEvent which triggered this signal - * - * The ::ge_context_menu signal is emitted when a context menu is to be - * displayed. This will usually happen when the user right-clicks on a part of - * @embed. - **/ - g_signal_new ("ge_context_menu", - EPHY_TYPE_WEB_VIEW, - G_SIGNAL_RUN_LAST, - G_STRUCT_OFFSET (EphyWebViewClass, context_menu), - g_signal_accumulator_true_handled, NULL, - ephy_marshal_BOOLEAN__OBJECT, - G_TYPE_BOOLEAN, - 1, - G_TYPE_OBJECT); + /** * EphyWebView::ge-favicon: * @embed: |