diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-01-17 19:19:34 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-01-17 19:19:34 +0800 |
commit | 20535b372ed7bf3f2415d6a6c1c8d6c26276bf84 (patch) | |
tree | 4fbfe8dd35a0e597b05f6e82ee70736ba8919094 | |
parent | 093c9ba7810a01f32d7f9c1c23b01ac47a7fe0ea (diff) | |
download | gsoc2013-epiphany-20535b372ed7bf3f2415d6a6c1c8d6c26276bf84.tar gsoc2013-epiphany-20535b372ed7bf3f2415d6a6c1c8d6c26276bf84.tar.gz gsoc2013-epiphany-20535b372ed7bf3f2415d6a6c1c8d6c26276bf84.tar.bz2 gsoc2013-epiphany-20535b372ed7bf3f2415d6a6c1c8d6c26276bf84.tar.lz gsoc2013-epiphany-20535b372ed7bf3f2415d6a6c1c8d6c26276bf84.tar.xz gsoc2013-epiphany-20535b372ed7bf3f2415d6a6c1c8d6c26276bf84.tar.zst gsoc2013-epiphany-20535b372ed7bf3f2415d6a6c1c8d6c26276bf84.zip |
Use g_signal_connect_object to connect the embed signals, that way they're
2004-01-17 Christian Persch <chpe@cvs.gnome.org>
* embed/mozilla/mozilla-embed.cpp:
* src/ephy-tab.c: (ephy_tab_init):
Use g_signal_connect_object to connect the embed signals,
that way they're disconnected before the tab object is
finalised. Should fix crasher bug #131635.
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | embed/mozilla/mozilla-embed.cpp | 142 | ||||
-rw-r--r-- | src/ephy-tab.c | 84 |
3 files changed, 107 insertions, 128 deletions
@@ -1,3 +1,12 @@ +2004-01-17 Christian Persch <chpe@cvs.gnome.org> + + * embed/mozilla/mozilla-embed.cpp: + * src/ephy-tab.c: (ephy_tab_init): + + Use g_signal_connect_object to connect the embed signals, + that way they're disconnected before the tab object is + finalised. Should fix crasher bug #131635. + 2004-01-16 <clahey@ximian.com> * data/epiphany-lockdown.schemas.in: Typo fixes. diff --git a/embed/mozilla/mozilla-embed.cpp b/embed/mozilla/mozilla-embed.cpp index 65d28a5d8..9cddf414c 100644 --- a/embed/mozilla/mozilla-embed.cpp +++ b/embed/mozilla/mozilla-embed.cpp @@ -46,64 +46,31 @@ static void mozilla_embed_init (MozillaEmbed *gs); static void mozilla_embed_destroy (GtkObject *object); static void ephy_embed_iface_init (EphyEmbedIFace *iface); -static void -mozilla_embed_connect_signals (MozillaEmbed *membed); -static void -mozilla_embed_location_changed_cb (GtkMozEmbed *embed, MozillaEmbed *membed); -static void -mozilla_embed_title_changed_cb (GtkMozEmbed *embed, MozillaEmbed *membed); -static void -mozilla_embed_net_state_all_cb (GtkMozEmbed *embed, const char *aURI, - gint state, guint status, MozillaEmbed *membed); -static void -mozilla_embed_progress_cb (GtkMozEmbed *embed, const char *aURI, - gint curprogress, gint maxprogress, MozillaEmbed *membed); -static void -mozilla_embed_link_message_cb (GtkMozEmbed *embed, MozillaEmbed *membed); -static void -mozilla_embed_js_status_cb (GtkMozEmbed *embed, MozillaEmbed *membed); -static void -mozilla_embed_visibility_cb (GtkMozEmbed *embed, gboolean visibility, MozillaEmbed *membed); -static gint -mozilla_embed_dom_mouse_click_cb (GtkMozEmbed *embed, gpointer dom_event, MozillaEmbed *membed); -static gint -mozilla_embed_dom_mouse_down_cb (GtkMozEmbed *embed, gpointer dom_event, - MozillaEmbed *membed); -static void -mozilla_embed_size_to_cb (GtkMozEmbed *embed, gint width, gint height, MozillaEmbed *membed); -static void -mozilla_embed_new_window_cb (GtkMozEmbed *embed, - GtkMozEmbed **newEmbed, - guint chromemask, MozillaEmbed *membed); -static void -mozilla_embed_security_change_cb (GtkMozEmbed *embed, - gpointer request, - guint state, MozillaEmbed *membed); -static EmbedSecurityLevel -mozilla_embed_security_level (MozillaEmbed *membed); -static gint -mozilla_embed_dom_key_down_cb (GtkMozEmbed *embed, gpointer dom_event, - MozillaEmbed *membed); - -/* signals to connect on each embed widget */ -static const struct -{ - char *event; - void *func; /* should be a GtkSignalFunc or similar */ -} -signal_connections[] = -{ - { "location", (void *) mozilla_embed_location_changed_cb }, - { "net_state_all", (void *) mozilla_embed_net_state_all_cb }, - { "dom_mouse_click", (void *) mozilla_embed_dom_mouse_click_cb }, - { "dom_mouse_down", (void *) mozilla_embed_dom_mouse_down_cb }, - { "new_window", (void *) mozilla_embed_new_window_cb }, - { "security_change", (void *) mozilla_embed_security_change_cb }, - { "dom_key_down", (void *) mozilla_embed_dom_key_down_cb }, - - /* terminator -- must be last in the list! */ - { NULL, NULL } -}; +static void mozilla_embed_connect_signals (MozillaEmbed *membed); +static void mozilla_embed_location_changed_cb (GtkMozEmbed *embed, + MozillaEmbed *membed); +static void mozilla_embed_net_state_all_cb (GtkMozEmbed *embed, + const char *aURI, + gint state, + guint status, + MozillaEmbed *membed); +static gint mozilla_embed_dom_key_down_cb (GtkMozEmbed *embed, + gpointer dom_event, + MozillaEmbed *membed); +static gint mozilla_embed_dom_mouse_click_cb (GtkMozEmbed *embed, + gpointer dom_event, + MozillaEmbed *membed); +static gint mozilla_embed_dom_mouse_down_cb (GtkMozEmbed *embed, + gpointer dom_event, + MozillaEmbed *membed); +static void mozilla_embed_new_window_cb (GtkMozEmbed *embed, + GtkMozEmbed **newEmbed, + guint chromemask, + MozillaEmbed *membed); +static void mozilla_embed_security_change_cb (GtkMozEmbed *embed, + gpointer request, + guint state, MozillaEmbed *membed); +static EmbedSecurityLevel mozilla_embed_security_level (MozillaEmbed *membed); #define MOZILLA_EMBED_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), MOZILLA_TYPE_EMBED, MozillaEmbedPrivate)) @@ -296,19 +263,27 @@ _mozilla_embed_get_ephy_browser (MozillaEmbed *embed) static void mozilla_embed_connect_signals (MozillaEmbed *embed) { - gint i; - EphyEmbed *gembed; - - gembed = EPHY_EMBED (embed); - - /* connect signals */ - for (i = 0; signal_connections[i].event != NULL; i++) - { - g_signal_connect (G_OBJECT (embed), - signal_connections[i].event, - G_CALLBACK (signal_connections[i].func), - embed); - } + g_signal_connect_object (G_OBJECT (embed), "location", + G_CALLBACK (mozilla_embed_location_changed_cb), + embed, (GConnectFlags) 0); + g_signal_connect_object (G_OBJECT (embed), "net_state_all", + G_CALLBACK (mozilla_embed_net_state_all_cb), + embed, (GConnectFlags) 0); + g_signal_connect_object (G_OBJECT (embed), "dom_mouse_click", + G_CALLBACK (mozilla_embed_dom_mouse_click_cb), + embed, (GConnectFlags) 0); + g_signal_connect_object (G_OBJECT (embed), "dom_mouse_down", + G_CALLBACK (mozilla_embed_dom_mouse_down_cb), + embed, (GConnectFlags) 0); + g_signal_connect_object (G_OBJECT (embed), "new_window", + G_CALLBACK (mozilla_embed_new_window_cb), + embed, (GConnectFlags) 0); + g_signal_connect_object (G_OBJECT (embed), "security_change", + G_CALLBACK (mozilla_embed_security_change_cb), + embed, (GConnectFlags) 0); + g_signal_connect_object (G_OBJECT (embed), "dom_key_down", + G_CALLBACK (mozilla_embed_dom_key_down_cb), + embed, (GConnectFlags) 0); } static void @@ -316,14 +291,6 @@ mozilla_embed_destroy (GtkObject *object) { MozillaEmbed *embed = MOZILLA_EMBED (object); int i; - - for (i = 0; signal_connections[i].event != NULL; i++) - { - g_signal_handlers_disconnect_by_func - (G_OBJECT (object), - (gpointer)signal_connections[i].func, - (void *)object); - } if (embed->priv->browser) { @@ -1154,7 +1121,7 @@ xul_visibility_cb (GtkWidget *embed, gboolean visibility, GtkWidget *window) } void -xul_size_to_cb (GtkWidget *embed, gint width, gint height) +xul_size_to_cb (GtkWidget *embed, gint width, gint height, gpointer dummy) { gtk_widget_set_size_request (embed, width, height); } @@ -1169,12 +1136,15 @@ _mozilla_embed_new_xul_dialog (void) gtk_widget_show (embed); gtk_container_add (GTK_CONTAINER (window), embed); - g_signal_connect_swapped (embed, "destroy_browser", - G_CALLBACK (gtk_widget_destroy), window); - g_signal_connect (embed, "visibility", - G_CALLBACK (xul_visibility_cb), window); - g_signal_connect (embed, "size_to", - G_CALLBACK (xul_size_to_cb), NULL); + g_signal_connect_object (embed, "destroy_browser", + G_CALLBACK (gtk_widget_destroy), + window, G_CONNECT_SWAPPED); + g_signal_connect_object (embed, "visibility", + G_CALLBACK (xul_visibility_cb), + window, (GConnectFlags) 0); + g_signal_connect_object (embed, "size_to", + G_CALLBACK (xul_size_to_cb), + NULL, (GConnectFlags) 0); return GTK_MOZ_EMBED (embed); } diff --git a/src/ephy-tab.c b/src/ephy-tab.c index cecaa2a7a..4d027df27 100644 --- a/src/ephy-tab.c +++ b/src/ephy-tab.c @@ -1146,48 +1146,48 @@ ephy_tab_init (EphyTab *tab) /* set a pointer in the embed's widget back to the tab */ g_object_set_data (embed_widget, "ephy-tab", tab); - g_signal_connect (embed_widget, "parent_set", - G_CALLBACK (ephy_tab_parent_set_cb), - tab); - g_signal_connect (embed_widget, "destroy", - G_CALLBACK (ephy_tab_embed_destroy_cb), - tab); - g_signal_connect (embed, "link_message", - G_CALLBACK (ephy_tab_link_message_cb), - tab); - g_signal_connect (embed, "ge_location", - G_CALLBACK (ephy_tab_address_cb), - tab); - g_signal_connect (embed, "title", - G_CALLBACK (ephy_tab_title_cb), - tab); - g_signal_connect (embed, "ge_zoom_change", - G_CALLBACK (ephy_tab_zoom_changed_cb), - tab); - g_signal_connect (embed, "ge_net_state", - G_CALLBACK (ephy_tab_net_state_cb), - tab); - g_signal_connect (embed, "ge_new_window", - G_CALLBACK (ephy_tab_new_window_cb), - tab); - g_signal_connect (embed, "visibility", - G_CALLBACK (ephy_tab_visibility_cb), - tab); - g_signal_connect (embed, "destroy_browser", - G_CALLBACK (ephy_tab_destroy_brsr_cb), - tab); - g_signal_connect (embed, "size_to", - G_CALLBACK (ephy_tab_size_to_cb), - tab); - g_signal_connect (embed, "ge_dom_mouse_click", - G_CALLBACK (ephy_tab_dom_mouse_click_cb), - tab); - g_signal_connect (embed, "ge_security_change", - G_CALLBACK (ephy_tab_security_change_cb), - tab); - g_signal_connect (embed, "ge_favicon", - G_CALLBACK (ephy_tab_favicon_cb), - tab); + g_signal_connect_object (embed_widget, "parent_set", + G_CALLBACK (ephy_tab_parent_set_cb), + tab, 0); + g_signal_connect_object (embed_widget, "destroy", + G_CALLBACK (ephy_tab_embed_destroy_cb), + tab, 0); + g_signal_connect_object (embed, "link_message", + G_CALLBACK (ephy_tab_link_message_cb), + tab, 0); + g_signal_connect_object (embed, "ge_location", + G_CALLBACK (ephy_tab_address_cb), + tab, 0); + g_signal_connect_object (embed, "title", + G_CALLBACK (ephy_tab_title_cb), + tab, 0); + g_signal_connect_object (embed, "ge_zoom_change", + G_CALLBACK (ephy_tab_zoom_changed_cb), + tab, 0); + g_signal_connect_object (embed, "ge_net_state", + G_CALLBACK (ephy_tab_net_state_cb), + tab, 0); + g_signal_connect_object (embed, "ge_new_window", + G_CALLBACK (ephy_tab_new_window_cb), + tab, 0); + g_signal_connect_object (embed, "visibility", + G_CALLBACK (ephy_tab_visibility_cb), + tab, 0); + g_signal_connect_object (embed, "destroy_browser", + G_CALLBACK (ephy_tab_destroy_brsr_cb), + tab, 0); + g_signal_connect_object (embed, "size_to", + G_CALLBACK (ephy_tab_size_to_cb), + tab, 0); + g_signal_connect_object (embed, "ge_dom_mouse_click", + G_CALLBACK (ephy_tab_dom_mouse_click_cb), + tab, 0); + g_signal_connect_object (embed, "ge_security_change", + G_CALLBACK (ephy_tab_security_change_cb), + tab, 0); + g_signal_connect_object (embed, "ge_favicon", + G_CALLBACK (ephy_tab_favicon_cb), + tab, 0); cache = EPHY_FAVICON_CACHE (ephy_embed_shell_get_favicon_cache (EPHY_EMBED_SHELL (ephy_shell))); |