1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-30 15:49:31 +00:00

CallsCallSelectorItem: Make sure that the contact infomation is updated

This is done by binding the contact information to the UI.
This commit is contained in:
Julian Sparber 2021-01-28 17:08:36 +01:00 committed by Evangelos Ribeiro Tzaras
parent 2206c3733c
commit 60e2b39367

View file

@ -22,10 +22,8 @@
* *
*/ */
#include "calls-manager.h"
#include "calls-call-selector-item.h" #include "calls-call-selector-item.h"
#include "calls-call-display.h" #include "calls-call-display.h"
#include "calls-party.h"
#include "util.h" #include "util.h"
#include <glib/gi18n.h> #include <glib/gi18n.h>
@ -38,6 +36,7 @@ struct _CallsCallSelectorItem
GtkEventBox parent_instance; GtkEventBox parent_instance;
CallsCallDisplay *display; CallsCallDisplay *display;
CallsBestMatch *contact;
GtkBox *main_box; GtkBox *main_box;
GtkLabel *name; GtkLabel *name;
@ -83,20 +82,20 @@ calls_call_selector_item_get_display (CallsCallSelectorItem *item)
return item->display; return item->display;
} }
// FIXME: this should direclty use CallsBestMatch since the matching contact could change over time
static void static void
set_party (CallsCallSelectorItem *self) set_party (CallsCallSelectorItem *self)
{ {
GtkWidget *image; // FIXME: use HdyAvatar and the contact avatar
CallsCall *call = calls_call_display_get_call (self->display); GtkWidget *image = gtk_image_new_from_icon_name ("avatar-default-symbolic", GTK_ICON_SIZE_DIALOG);
g_autoptr (CallsParty) party = calls_party_new (calls_manager_get_contact_name (call),
calls_call_get_number (call));
image = calls_party_create_image (party);
gtk_box_pack_start (self->main_box, image, TRUE, TRUE, 0); gtk_box_pack_start (self->main_box, image, TRUE, TRUE, 0);
gtk_widget_show (image); gtk_widget_show (image);
gtk_label_set_text (self->name, calls_party_get_label (party)); self->contact = calls_call_get_contact (calls_call_display_get_call (self->display));
g_object_bind_property (self->contact, "name",
self->name, "label",
G_BINDING_SYNC_CREATE);
} }
@ -155,6 +154,7 @@ dispose (GObject *object)
CallsCallSelectorItem *self = CALLS_CALL_SELECTOR_ITEM (object); CallsCallSelectorItem *self = CALLS_CALL_SELECTOR_ITEM (object);
g_clear_object (&self->display); g_clear_object (&self->display);
g_clear_object (&self->contact);
G_OBJECT_CLASS (calls_call_selector_item_parent_class)->dispose (object); G_OBJECT_CLASS (calls_call_selector_item_parent_class)->dispose (object);
} }