diff options
author | Christian Persch <chpe@gnome.org> | 2007-07-10 21:05:23 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2007-07-10 21:05:23 +0800 |
commit | 1f582511944d0dbb4e99c8c48b18c311fd7cb2b3 (patch) | |
tree | 4c6b09976966a4365c9c1ff24cecddc1e848743e /lib | |
parent | eb8cdb0537d915671d7caea311e3d74d24b03085 (diff) | |
download | gsoc2013-epiphany-1f582511944d0dbb4e99c8c48b18c311fd7cb2b3.tar.gz gsoc2013-epiphany-1f582511944d0dbb4e99c8c48b18c311fd7cb2b3.tar.zst gsoc2013-epiphany-1f582511944d0dbb4e99c8c48b18c311fd7cb2b3.zip |
Port to new tooltips API.
2007-07-10 Christian Persch <chpe@gnome.org>
* lib/widgets/ephy-location-entry.c:
(ephy_location_entry_finalize), (ephy_location_entry_class_init),
(ephy_location_entry_construct_contents),
(ephy_location_entry_init), (ephy_location_entry_set_lock_tooltip):
Port to new tooltips API.
svn path=/trunk/; revision=7137
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 30 | ||||
-rw-r--r-- | lib/widgets/testiconentry.c | 1 |
2 files changed, 3 insertions, 28 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 1669e8abe..e9431e850 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -61,7 +61,6 @@ struct _EphyLocationEntryPrivate { - GtkTooltips *tips; EphyIconEntry *icon_entry; GtkWidget *icon_ebox; GtkWidget *icon; @@ -166,21 +165,6 @@ ephy_location_entry_get_type (void) return type; } -static gboolean -ephy_location_entry_set_tooltip (GtkToolItem *tool_item, - GtkTooltips *tooltips, - const char *tip_text, - const char *tip_private) -{ - EphyLocationEntry *entry = EPHY_LOCATION_ENTRY (tool_item); - EphyLocationEntryPrivate *priv = entry->priv; - - gtk_tooltips_set_tip (tooltips, priv->icon_entry->entry, - tip_text, tip_private); - - return TRUE; -} - static void ephy_location_entry_style_set (GtkWidget *widget, GtkStyle *previous_style) @@ -246,8 +230,6 @@ ephy_location_entry_finalize (GObject *object) g_object_unref (priv->favicon); } - g_object_unref (priv->tips); - parent_class->finalize (object); } @@ -256,7 +238,6 @@ ephy_location_entry_class_init (EphyLocationEntryClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); - GtkToolItemClass *tool_item_class = GTK_TOOL_ITEM_CLASS (klass); parent_class = g_type_class_peek_parent (klass); @@ -264,8 +245,6 @@ ephy_location_entry_class_init (EphyLocationEntryClass *klass) widget_class->style_set = ephy_location_entry_style_set; - tool_item_class->set_tooltip = ephy_location_entry_set_tooltip; - signals[USER_CHANGED] = g_signal_new ( "user_changed", G_OBJECT_CLASS_TYPE (klass), G_SIGNAL_RUN_FIRST | G_SIGNAL_RUN_LAST, @@ -910,8 +889,8 @@ ephy_location_entry_construct_contents (EphyLocationEntry *entry) g_signal_connect (priv->icon_ebox, "button-press-event", G_CALLBACK (icon_button_press_event_cb), entry); - gtk_tooltips_set_tip (priv->tips, priv->icon_ebox, - _("Drag and drop this icon to create a link to this page"), NULL); + gtk_widget_set_tooltip_text (priv->icon_ebox, + _("Drag and drop this icon to create a link to this page")); priv->icon = gtk_image_new (); gtk_container_add (GTK_CONTAINER (priv->icon_ebox), priv->icon); @@ -969,9 +948,6 @@ ephy_location_entry_init (EphyLocationEntry *le) p->user_changed = TRUE; - p->tips = gtk_tooltips_new (); - g_object_ref_sink (p->tips); - ephy_location_entry_construct_contents (le); gtk_tool_item_set_expand (GTK_TOOL_ITEM (le), TRUE); @@ -1304,5 +1280,5 @@ ephy_location_entry_set_lock_tooltip (EphyLocationEntry *entry, { EphyLocationEntryPrivate *priv = entry->priv; - gtk_tooltips_set_tip (priv->tips, priv->lock_ebox, tooltip, NULL); + gtk_widget_set_tooltip_text (priv->lock_ebox, tooltip); } diff --git a/lib/widgets/testiconentry.c b/lib/widgets/testiconentry.c index 6bbe210b9..bd71113ad 100644 --- a/lib/widgets/testiconentry.c +++ b/lib/widgets/testiconentry.c @@ -28,7 +28,6 @@ int main(int argc, char **argv) { GtkWidget *window, *vbox, *entry, *image; - GtkTooltips *tips; gtk_init (&argc, &argv); |