2018-08-01 08:15:36 +00:00
|
|
|
/*
|
2019-08-01 13:25:53 +00:00
|
|
|
* Copyright (C) 2018, 2019 Purism SPC
|
2018-08-01 08:15:36 +00:00
|
|
|
*
|
|
|
|
* This file is part of Calls.
|
|
|
|
*
|
|
|
|
* Calls is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Calls is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Calls. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Author: Adrien Plazas <adrien.plazas@puri.sm>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "calls-history-box.h"
|
2019-08-01 13:25:53 +00:00
|
|
|
#include "calls-call-record.h"
|
|
|
|
#include "calls-call-record-row.h"
|
2018-08-01 08:15:36 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
#include <glib-object.h>
|
|
|
|
|
|
|
|
|
|
|
|
struct _CallsHistoryBox
|
|
|
|
{
|
2018-09-24 02:08:06 +00:00
|
|
|
GtkStack parent_instance;
|
2018-08-01 08:15:36 +00:00
|
|
|
|
2019-08-01 13:25:53 +00:00
|
|
|
GtkListBox *history;
|
|
|
|
|
|
|
|
GListModel *model;
|
|
|
|
gulong model_changed_handler_id;
|
|
|
|
|
2018-08-01 08:15:36 +00:00
|
|
|
};
|
|
|
|
|
2019-08-01 13:25:53 +00:00
|
|
|
G_DEFINE_TYPE (CallsHistoryBox, calls_history_box, GTK_TYPE_STACK);
|
|
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
PROP_MODEL,
|
|
|
|
PROP_LAST_PROP,
|
|
|
|
};
|
|
|
|
static GParamSpec *props[PROP_LAST_PROP];
|
2018-08-01 08:15:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
static void
|
2019-08-01 13:25:53 +00:00
|
|
|
update (CallsHistoryBox *self)
|
2018-08-01 08:15:36 +00:00
|
|
|
{
|
2019-08-01 13:25:53 +00:00
|
|
|
gchar *child_name;
|
|
|
|
|
|
|
|
if (g_list_model_get_n_items (self->model) == 0)
|
|
|
|
{
|
|
|
|
child_name = "empty";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
child_name = "history";
|
|
|
|
|
|
|
|
/* Transition should only ever be from empty to non-empty */
|
|
|
|
if (self->model_changed_handler_id != 0)
|
|
|
|
{
|
|
|
|
calls_clear_signal (self->model,
|
|
|
|
&self->model_changed_handler_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_stack_set_visible_child_name (GTK_STACK (self), child_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-08 13:09:57 +00:00
|
|
|
static void
|
|
|
|
delete_call_cb (CallsCallRecord *record,
|
|
|
|
CallsHistoryBox *self)
|
|
|
|
{
|
|
|
|
guint position;
|
|
|
|
guint id;
|
|
|
|
gboolean ok;
|
|
|
|
|
|
|
|
g_return_if_fail (CALLS_IS_CALL_RECORD (record));
|
|
|
|
|
|
|
|
ok = calls_find_in_store (self->model,
|
|
|
|
record,
|
|
|
|
&position);
|
|
|
|
|
|
|
|
g_object_get (G_OBJECT (record),
|
|
|
|
"id",
|
|
|
|
&id,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (!ok)
|
|
|
|
{
|
|
|
|
g_warning ("Could not find record with id %u in model",
|
|
|
|
id);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_list_store_remove ((GListStore *) self->model, position);
|
|
|
|
|
|
|
|
update(self);
|
|
|
|
}
|
|
|
|
|
2019-08-01 13:25:53 +00:00
|
|
|
|
|
|
|
static GtkWidget *
|
|
|
|
create_row_cb (CallsCallRecord *record,
|
|
|
|
CallsHistoryBox *self)
|
|
|
|
{
|
2020-06-08 13:09:57 +00:00
|
|
|
GtkWidget *row_widget;
|
2020-06-17 11:44:11 +00:00
|
|
|
row_widget = GTK_WIDGET (calls_call_record_row_new (record));
|
2020-06-08 13:09:57 +00:00
|
|
|
|
|
|
|
g_signal_connect (record,
|
|
|
|
"call-delete",
|
|
|
|
G_CALLBACK (delete_call_cb),
|
|
|
|
self);
|
|
|
|
return row_widget;
|
2019-08-01 13:25:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
CallsHistoryBox *self = CALLS_HISTORY_BOX (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_MODEL:
|
|
|
|
g_set_object (&self->model,
|
|
|
|
G_LIST_MODEL (g_value_get_object (value)));
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
constructed (GObject *object)
|
|
|
|
{
|
|
|
|
CallsHistoryBox *self = CALLS_HISTORY_BOX (object);
|
|
|
|
|
|
|
|
g_assert (self->model != NULL);
|
|
|
|
|
|
|
|
self->model_changed_handler_id =
|
|
|
|
g_signal_connect_swapped
|
|
|
|
(self->model, "items-changed", G_CALLBACK (update), self);
|
|
|
|
g_assert (self->model_changed_handler_id != 0);
|
|
|
|
|
|
|
|
gtk_list_box_bind_model (self->history,
|
|
|
|
self->model,
|
|
|
|
(GtkListBoxCreateWidgetFunc)create_row_cb,
|
|
|
|
self,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
update (self);
|
|
|
|
|
2020-02-18 15:01:22 +00:00
|
|
|
G_OBJECT_CLASS (calls_history_box_parent_class)->constructed (object);
|
2019-08-01 13:25:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
dispose (GObject *object)
|
|
|
|
{
|
|
|
|
CallsHistoryBox *self = CALLS_HISTORY_BOX (object);
|
|
|
|
|
|
|
|
g_clear_object (&self->model);
|
|
|
|
|
2020-02-18 15:01:22 +00:00
|
|
|
G_OBJECT_CLASS (calls_history_box_parent_class)->dispose (object);
|
2018-08-01 08:15:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
calls_history_box_class_init (CallsHistoryBoxClass *klass)
|
|
|
|
{
|
2019-08-01 13:25:53 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2018-08-01 08:15:36 +00:00
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
|
|
|
|
2019-08-01 13:25:53 +00:00
|
|
|
object_class->set_property = set_property;
|
|
|
|
object_class->constructed = constructed;
|
|
|
|
object_class->dispose = dispose;
|
|
|
|
|
|
|
|
props[PROP_MODEL] =
|
|
|
|
g_param_spec_object ("model",
|
2020-05-29 05:38:11 +00:00
|
|
|
"model",
|
|
|
|
"The data store containing call records",
|
2019-08-01 13:25:53 +00:00
|
|
|
G_TYPE_LIST_MODEL,
|
|
|
|
G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY);
|
|
|
|
|
|
|
|
g_object_class_install_properties (object_class, PROP_LAST_PROP, props);
|
|
|
|
|
2018-08-01 08:15:36 +00:00
|
|
|
|
2021-07-10 02:15:22 +00:00
|
|
|
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/Calls/ui/history-box.ui");
|
2019-08-01 13:25:53 +00:00
|
|
|
gtk_widget_class_bind_template_child (widget_class, CallsHistoryBox, history);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
calls_history_box_init (CallsHistoryBox *self)
|
|
|
|
{
|
|
|
|
gtk_widget_init_template (GTK_WIDGET (self));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CallsHistoryBox *
|
2020-06-17 11:44:11 +00:00
|
|
|
calls_history_box_new (GListModel *model)
|
2019-08-01 13:25:53 +00:00
|
|
|
{
|
|
|
|
return g_object_new (CALLS_TYPE_HISTORY_BOX,
|
|
|
|
"model", model,
|
|
|
|
NULL);
|
2018-08-01 08:15:36 +00:00
|
|
|
}
|