account-widgets: Conform to style

Closes #396
This commit is contained in:
Evangelos Ribeiro Tzaras
2022-05-21 17:33:39 +02:00
parent 4714aea068
commit f102fb3fcd
3 changed files with 20 additions and 27 deletions

View File

@@ -63,7 +63,6 @@ struct _CallsAccountRow {
/* UI elements */
HdyAvatar *avatar;
GtkSwitch *online_switch;
GtkButton *edit_btn;
};
G_DEFINE_TYPE (CallsAccountRow, calls_account_row, HDY_TYPE_ACTION_ROW)
@@ -82,17 +81,6 @@ on_account_state_changed (CallsAccountRow *self)
gtk_switch_set_state (self->online_switch, state == CALLS_ACCOUNT_STATE_ONLINE);
}
static void
on_edit_clicked (CallsAccountRow *self)
{
/** CallsAccountOverview connects to this signal to show
* the window containing the account providers widget.
* See calls_account_provider_get_account_widget()
*/
g_signal_emit (self, signals[EDIT_CLICKED], 0, self->provider, self->account);
}
static gboolean
on_online_switched (GtkSwitch *widget,
gboolean online,
@@ -225,9 +213,7 @@ calls_account_row_class_init (CallsAccountRowClass *klass)
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/Calls/ui/account-row.ui");
gtk_widget_class_bind_template_child (widget_class, CallsAccountRow, avatar);
gtk_widget_class_bind_template_child (widget_class, CallsAccountRow, online_switch);
gtk_widget_class_bind_template_child (widget_class, CallsAccountRow, edit_btn);
gtk_widget_class_bind_template_callback (widget_class, on_edit_clicked);
gtk_widget_class_bind_template_callback (widget_class, on_online_switched);
}