diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-02-17 22:29:03 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-02-21 17:17:49 +0800 |
commit | 1629b3b04f38eb748ae8385e407e01bfaf312a63 (patch) | |
tree | 612502aee7dfeecd1a5419416f3bd4ee7b920297 /libempathy-gtk/empathy-contact-widget.c | |
parent | 932d46f051bbfbf144dcb063849e4f285daa8586 (diff) | |
download | gsoc2013-empathy-1629b3b04f38eb748ae8385e407e01bfaf312a63.tar gsoc2013-empathy-1629b3b04f38eb748ae8385e407e01bfaf312a63.tar.gz gsoc2013-empathy-1629b3b04f38eb748ae8385e407e01bfaf312a63.tar.bz2 gsoc2013-empathy-1629b3b04f38eb748ae8385e407e01bfaf312a63.tar.lz gsoc2013-empathy-1629b3b04f38eb748ae8385e407e01bfaf312a63.tar.xz gsoc2013-empathy-1629b3b04f38eb748ae8385e407e01bfaf312a63.tar.zst gsoc2013-empathy-1629b3b04f38eb748ae8385e407e01bfaf312a63.zip |
Port to champlain 0.10 (#642010)
Diffstat (limited to 'libempathy-gtk/empathy-contact-widget.c')
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index 3e4dc845a..410b59f00 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -946,7 +946,7 @@ contact_widget_location_update (EmpathyContactWidget *information) if (display_map) { ClutterActor *marker; - ChamplainLayer *layer; + ChamplainMarkerLayer *layer; information->map_view_embed = gtk_champlain_embed_new (); information->map_view = gtk_champlain_embed_get_view ( @@ -955,18 +955,17 @@ contact_widget_location_update (EmpathyContactWidget *information) gtk_container_add (GTK_CONTAINER (information->viewport_map), information->map_view_embed); g_object_set (G_OBJECT (information->map_view), - "show-license", TRUE, - "scroll-mode", CHAMPLAIN_SCROLL_MODE_KINETIC, + "kinetic-mode", TRUE, "zoom-level", 10, NULL); - layer = champlain_layer_new (); - champlain_view_add_layer (information->map_view, layer); + layer = champlain_marker_layer_new_full (CHAMPLAIN_SELECTION_NONE); + champlain_view_add_layer (information->map_view, CHAMPLAIN_LAYER (layer)); - marker = champlain_marker_new_with_text ( + marker = champlain_label_new_with_text ( empathy_contact_get_alias (information->contact), NULL, NULL, NULL); - champlain_base_marker_set_position (CHAMPLAIN_BASE_MARKER (marker), lat, lon); - clutter_container_add (CLUTTER_CONTAINER (layer), marker, NULL); + champlain_location_set_location (CHAMPLAIN_LOCATION (marker), lat, lon); + champlain_marker_layer_add_marker (layer, CHAMPLAIN_MARKER (marker)); champlain_view_center_on (information->map_view, lat, lon); gtk_widget_show_all (information->viewport_map); |