diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-08-02 03:42:21 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-08-02 03:42:21 +0800 |
commit | d0251310f8d4236076dd03affe2dad19f404a390 (patch) | |
tree | 61635c902d1ff9e524a17f4558f0495a2a0b20b6 /embed/ephy-embed.c | |
parent | dd1eeaa291d5cf7fe390615a281825f722cdea8a (diff) | |
download | gsoc2013-epiphany-d0251310f8d4236076dd03affe2dad19f404a390.tar.gz gsoc2013-epiphany-d0251310f8d4236076dd03affe2dad19f404a390.tar.zst gsoc2013-epiphany-d0251310f8d4236076dd03affe2dad19f404a390.zip |
Restore the "ge_dom_mouse_down" signal.
2003-08-01 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/mozilla-embed.cpp: (mozilla_embed_dom_mouse_down_cb):
* embed/ephy-embed.h:
* embed/ephy-embed.c: (ephy_embed_base_init):
Restore the "ge_dom_mouse_down" signal.
Diffstat (limited to 'embed/ephy-embed.c')
-rw-r--r-- | embed/ephy-embed.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/embed/ephy-embed.c b/embed/ephy-embed.c index f20300bc5..f9bf0dc7b 100644 --- a/embed/ephy-embed.c +++ b/embed/ephy-embed.c @@ -42,6 +42,7 @@ enum OPEN_URI, SIZE_TO, DOM_MOUSE_CLICK, + DOM_MOUSE_DOWN, SECURITY_CHANGE, ZOOM_CHANGE, LAST_SIGNAL @@ -230,6 +231,16 @@ ephy_embed_base_init (gpointer g_class) G_TYPE_INT, 1, G_TYPE_POINTER); + ephy_embed_signals[DOM_MOUSE_DOWN] = + g_signal_new ("ge_dom_mouse_down", + EPHY_EMBED_TYPE, + G_SIGNAL_RUN_LAST, + G_STRUCT_OFFSET (EphyEmbedClass, dom_mouse_down), + NULL, NULL, + ephy_marshal_INT__OBJECT, + G_TYPE_INT, + 1, + G_TYPE_POINTER); ephy_embed_signals[SECURITY_CHANGE] = g_signal_new ("ge_security_change", EPHY_EMBED_TYPE, |