2018-08-01 10:51:55 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Purism SPC
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Bob Ham <bob.ham@puri.sm>
|
|
|
|
* Adrien Plazas <adrien.plazas@puri.sm>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-06-18 09:10:36 +00:00
|
|
|
#define G_LOG_DOMAIN "CallsCallWindow"
|
|
|
|
|
2018-08-01 10:51:55 +00:00
|
|
|
#include "calls-call-window.h"
|
|
|
|
#include "calls-origin.h"
|
|
|
|
#include "calls-call-selector-item.h"
|
|
|
|
#include "calls-new-call-box.h"
|
2020-03-02 18:11:37 +00:00
|
|
|
#include "calls-in-app-notification.h"
|
2020-03-17 20:50:39 +00:00
|
|
|
#include "calls-manager.h"
|
2018-08-01 10:51:55 +00:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
#include <glib/gi18n.h>
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include <handy.h>
|
|
|
|
|
|
|
|
struct _CallsCallWindow
|
|
|
|
{
|
|
|
|
GtkApplicationWindow parent_instance;
|
|
|
|
|
2021-01-28 11:46:19 +00:00
|
|
|
GListStore *calls;
|
2018-08-01 10:51:55 +00:00
|
|
|
|
2020-03-02 18:11:37 +00:00
|
|
|
CallsInAppNotification *in_app_notification;
|
2018-08-01 10:51:55 +00:00
|
|
|
|
|
|
|
GtkStack *main_stack;
|
|
|
|
GtkStack *header_bar_stack;
|
|
|
|
GtkButton *show_calls;
|
|
|
|
GtkStack *call_stack;
|
|
|
|
GtkFlowBox *call_selector;
|
2019-08-13 10:38:40 +00:00
|
|
|
|
2020-08-06 20:28:37 +00:00
|
|
|
guint inhibit_cookie;
|
|
|
|
|
2018-08-01 10:51:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (CallsCallWindow, calls_call_window, GTK_TYPE_APPLICATION_WINDOW);
|
|
|
|
|
|
|
|
|
2020-08-06 20:28:37 +00:00
|
|
|
static void
|
|
|
|
session_inhibit (CallsCallWindow *self, gboolean inhibit)
|
|
|
|
{
|
|
|
|
if (inhibit)
|
|
|
|
{
|
|
|
|
if (self->inhibit_cookie == 0)
|
|
|
|
self->inhibit_cookie =
|
|
|
|
gtk_application_inhibit (gtk_window_get_application (GTK_WINDOW (self)),
|
|
|
|
GTK_WINDOW (self),
|
2020-12-17 10:08:32 +00:00
|
|
|
GTK_APPLICATION_INHIBIT_SUSPEND |
|
|
|
|
GTK_APPLICATION_INHIBIT_IDLE |
|
|
|
|
GTK_APPLICATION_INHIBIT_LOGOUT |
|
|
|
|
GTK_APPLICATION_INHIBIT_SWITCH,
|
2020-08-06 20:28:37 +00:00
|
|
|
"call active");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-04-01 13:01:17 +00:00
|
|
|
if (self->inhibit_cookie != 0)
|
|
|
|
gtk_application_uninhibit (gtk_window_get_application (GTK_WINDOW (self)),
|
|
|
|
self->inhibit_cookie);
|
2020-08-06 20:28:37 +00:00
|
|
|
self->inhibit_cookie = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-01 10:51:55 +00:00
|
|
|
static void
|
|
|
|
update_visibility (CallsCallWindow *self)
|
|
|
|
{
|
2021-01-28 11:46:19 +00:00
|
|
|
guint calls = g_list_model_get_n_items (G_LIST_MODEL (self->calls));
|
2018-08-01 10:51:55 +00:00
|
|
|
|
|
|
|
gtk_widget_set_visible (GTK_WIDGET (self), calls > 0);
|
|
|
|
gtk_widget_set_sensitive (GTK_WIDGET (self->show_calls), calls > 1);
|
|
|
|
|
|
|
|
if (calls == 0)
|
|
|
|
{
|
|
|
|
gtk_stack_set_visible_child_name (self->main_stack, "calls");
|
|
|
|
}
|
|
|
|
else if (calls == 1)
|
|
|
|
{
|
|
|
|
gtk_stack_set_visible_child_name (self->main_stack, "active-call");
|
|
|
|
}
|
2020-08-06 20:28:37 +00:00
|
|
|
|
|
|
|
session_inhibit (self, !!calls);
|
2018-08-01 10:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static GtkWidget *
|
2021-01-28 11:46:19 +00:00
|
|
|
calls_create_widget_cb (CallsCallSelectorItem *item,
|
|
|
|
gpointer user_data)
|
2018-08-01 10:51:55 +00:00
|
|
|
{
|
2018-10-10 09:07:13 +00:00
|
|
|
return GTK_WIDGET (item);
|
2018-08-01 10:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
new_call_submitted_cb (CallsCallWindow *self,
|
|
|
|
CallsOrigin *origin,
|
|
|
|
const gchar *number,
|
|
|
|
CallsNewCallBox *new_call_box)
|
|
|
|
{
|
|
|
|
g_return_if_fail (CALLS_IS_CALL_WINDOW (self));
|
|
|
|
|
|
|
|
calls_origin_dial (origin, number);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2018-11-30 15:07:35 +00:00
|
|
|
set_focus (CallsCallWindow *self,
|
|
|
|
CallsCallDisplay *display)
|
2018-08-01 10:51:55 +00:00
|
|
|
{
|
|
|
|
gtk_stack_set_visible_child_name (self->main_stack, "active-call");
|
|
|
|
gtk_stack_set_visible_child_name (self->header_bar_stack, "active-call");
|
2018-11-30 15:07:35 +00:00
|
|
|
gtk_stack_set_visible_child (self->call_stack, GTK_WIDGET (display));
|
2018-08-01 10:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
show_calls_clicked_cb (GtkButton *button,
|
|
|
|
CallsCallWindow *self)
|
|
|
|
{
|
|
|
|
/* FIXME Setting only one of them should be enough as the properties are binded. */
|
|
|
|
gtk_stack_set_visible_child_name (self->main_stack, "calls");
|
|
|
|
gtk_stack_set_visible_child_name (self->header_bar_stack, "calls");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
call_selector_child_activated_cb (GtkFlowBox *box,
|
|
|
|
GtkFlowBoxChild *child,
|
|
|
|
CallsCallWindow *self)
|
|
|
|
{
|
|
|
|
GtkWidget *widget = gtk_bin_get_child (GTK_BIN (child));
|
|
|
|
CallsCallSelectorItem *item = CALLS_CALL_SELECTOR_ITEM (widget);
|
2018-11-30 15:07:35 +00:00
|
|
|
CallsCallDisplay *display = calls_call_selector_item_get_display (item);
|
2018-08-01 10:51:55 +00:00
|
|
|
|
2018-11-30 15:07:35 +00:00
|
|
|
set_focus (self, display);
|
2018-08-01 10:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-06-02 17:42:25 +00:00
|
|
|
static void
|
2018-10-08 10:40:02 +00:00
|
|
|
add_call (CallsCallWindow *self,
|
|
|
|
CallsCall *call)
|
2018-08-01 10:51:55 +00:00
|
|
|
{
|
|
|
|
CallsCallDisplay *display;
|
2021-01-28 11:46:19 +00:00
|
|
|
CallsCallSelectorItem *item;
|
2018-08-01 10:51:55 +00:00
|
|
|
|
|
|
|
g_return_if_fail (CALLS_IS_CALL_WINDOW (self));
|
|
|
|
g_return_if_fail (CALLS_IS_CALL (call));
|
|
|
|
|
2021-01-28 11:46:19 +00:00
|
|
|
display = calls_call_display_new (call);
|
|
|
|
item = calls_call_selector_item_new (display);
|
2018-08-01 10:51:55 +00:00
|
|
|
gtk_stack_add_named (self->call_stack, GTK_WIDGET (display),
|
|
|
|
calls_call_get_number (call));
|
|
|
|
|
2021-01-28 11:46:19 +00:00
|
|
|
g_list_store_append (self->calls, item);
|
2018-08-01 10:51:55 +00:00
|
|
|
|
|
|
|
update_visibility (self);
|
2018-11-30 15:07:35 +00:00
|
|
|
set_focus (self, display);
|
2018-08-01 10:51:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-02 17:42:25 +00:00
|
|
|
static void
|
2018-10-08 10:40:02 +00:00
|
|
|
remove_call (CallsCallWindow *self,
|
|
|
|
CallsCall *call,
|
|
|
|
const gchar *reason)
|
2018-08-01 10:51:55 +00:00
|
|
|
{
|
2021-01-28 11:46:19 +00:00
|
|
|
g_autoptr (CallsCallSelectorItem) item = NULL;
|
|
|
|
gint position;
|
2018-08-01 10:51:55 +00:00
|
|
|
|
|
|
|
g_return_if_fail (CALLS_IS_CALL_WINDOW (self));
|
|
|
|
g_return_if_fail (CALLS_IS_CALL (call));
|
|
|
|
|
2021-01-28 11:46:19 +00:00
|
|
|
position = 0;
|
|
|
|
item = g_list_model_get_item (G_LIST_MODEL (self->calls), position);
|
|
|
|
while (item != NULL) {
|
|
|
|
CallsCallDisplay *display = calls_call_selector_item_get_display (item);
|
|
|
|
|
|
|
|
if (calls_call_display_get_call (display) == call) {
|
|
|
|
g_list_store_remove (self->calls, position);
|
|
|
|
gtk_container_remove (GTK_CONTAINER (self->call_stack),
|
|
|
|
GTK_WIDGET (display));
|
2018-08-01 10:51:55 +00:00
|
|
|
|
2021-01-28 11:46:19 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_unref (item);
|
|
|
|
position++;
|
|
|
|
item = g_list_model_get_item (G_LIST_MODEL (self->calls), position);
|
|
|
|
}
|
|
|
|
|
|
|
|
update_visibility (self);
|
2018-08-01 10:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
remove_calls (CallsCallWindow *self)
|
|
|
|
{
|
|
|
|
GList *children, *child;
|
|
|
|
|
2018-11-01 11:05:45 +00:00
|
|
|
/* Safely remove the call stack's children. */
|
2018-08-01 10:51:55 +00:00
|
|
|
children = gtk_container_get_children (GTK_CONTAINER (self->call_stack));
|
|
|
|
for (child = children; child != NULL; child = child->next)
|
|
|
|
gtk_container_remove (GTK_CONTAINER (self->call_stack),
|
|
|
|
GTK_WIDGET (child->data));
|
|
|
|
g_list_free (children);
|
|
|
|
|
2021-01-28 11:46:19 +00:00
|
|
|
g_list_store_remove_all (self->calls);
|
2018-08-01 10:51:55 +00:00
|
|
|
|
|
|
|
update_visibility (self);
|
|
|
|
}
|
|
|
|
|
2019-08-13 10:38:40 +00:00
|
|
|
|
2018-08-01 10:51:55 +00:00
|
|
|
static void
|
|
|
|
constructed (GObject *object)
|
|
|
|
{
|
|
|
|
CallsCallWindow *self = CALLS_CALL_WINDOW (object);
|
|
|
|
|
|
|
|
gtk_flow_box_bind_model (self->call_selector,
|
2021-01-28 11:46:19 +00:00
|
|
|
G_LIST_MODEL (self->calls),
|
|
|
|
(GtkFlowBoxCreateWidgetFunc) calls_create_widget_cb,
|
2018-08-01 10:51:55 +00:00
|
|
|
NULL, NULL);
|
|
|
|
|
2019-08-13 10:38:40 +00:00
|
|
|
update_visibility (self);
|
|
|
|
|
2020-02-18 15:01:22 +00:00
|
|
|
G_OBJECT_CLASS (calls_call_window_parent_class)->constructed (object);
|
2018-08-01 10:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
calls_call_window_init (CallsCallWindow *self)
|
|
|
|
{
|
2020-03-17 20:50:39 +00:00
|
|
|
g_autoptr (GList) calls = NULL;
|
|
|
|
GList *c;
|
2018-08-01 10:51:55 +00:00
|
|
|
gtk_widget_init_template (GTK_WIDGET (self));
|
|
|
|
|
2021-01-28 11:46:19 +00:00
|
|
|
self->calls = g_list_store_new (CALLS_TYPE_CALL_SELECTOR_ITEM);
|
2020-03-17 20:50:39 +00:00
|
|
|
|
|
|
|
// Show errors in in-app-notification
|
|
|
|
g_signal_connect_swapped (calls_manager_get_default (),
|
|
|
|
"error",
|
|
|
|
G_CALLBACK (calls_in_app_notification_show),
|
|
|
|
self->in_app_notification);
|
|
|
|
|
|
|
|
g_signal_connect_swapped (calls_manager_get_default (),
|
|
|
|
"call-add",
|
|
|
|
G_CALLBACK (add_call),
|
|
|
|
self);
|
|
|
|
|
|
|
|
g_signal_connect_swapped (calls_manager_get_default (),
|
|
|
|
"call-remove",
|
|
|
|
G_CALLBACK (remove_call),
|
|
|
|
self);
|
|
|
|
|
|
|
|
calls = calls_manager_get_calls (calls_manager_get_default ());
|
|
|
|
for (c = calls; c != NULL; c = c->next) {
|
|
|
|
add_call (self, c->data);
|
|
|
|
}
|
2018-08-01 10:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
dispose (GObject *object)
|
|
|
|
{
|
|
|
|
CallsCallWindow *self = CALLS_CALL_WINDOW (object);
|
|
|
|
|
2021-01-28 11:46:19 +00:00
|
|
|
if (self->calls)
|
2018-08-01 10:51:55 +00:00
|
|
|
{
|
|
|
|
remove_calls (self);
|
|
|
|
}
|
|
|
|
|
2021-01-28 11:46:19 +00:00
|
|
|
g_clear_object (&self->calls);
|
2018-08-01 10:51:55 +00:00
|
|
|
|
2020-02-18 15:01:22 +00:00
|
|
|
G_OBJECT_CLASS (calls_call_window_parent_class)->dispose (object);
|
2018-08-01 10:51:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
calls_call_window_class_init (CallsCallWindowClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->constructed = constructed;
|
|
|
|
object_class->dispose = dispose;
|
|
|
|
|
2019-08-13 10:38:40 +00:00
|
|
|
#ifdef CALLS_WAYLAND
|
|
|
|
// The "application" property is not a construction property so we
|
|
|
|
// have to wait for it to be set before setting up wayland & co.
|
|
|
|
object_class->notify = notify;
|
|
|
|
#endif // CALLS_WAYLAND
|
|
|
|
|
2021-07-10 02:15:22 +00:00
|
|
|
gtk_widget_class_set_template_from_resource (widget_class, "/org/gnome/Calls/ui/call-window.ui");
|
2020-03-02 18:11:37 +00:00
|
|
|
gtk_widget_class_bind_template_child (widget_class, CallsCallWindow, in_app_notification);
|
2018-08-01 10:51:55 +00:00
|
|
|
gtk_widget_class_bind_template_child (widget_class, CallsCallWindow, main_stack);
|
|
|
|
gtk_widget_class_bind_template_child (widget_class, CallsCallWindow, header_bar_stack);
|
|
|
|
gtk_widget_class_bind_template_child (widget_class, CallsCallWindow, show_calls);
|
|
|
|
gtk_widget_class_bind_template_child (widget_class, CallsCallWindow, call_stack);
|
|
|
|
gtk_widget_class_bind_template_child (widget_class, CallsCallWindow, call_selector);
|
|
|
|
gtk_widget_class_bind_template_callback (widget_class, call_selector_child_activated_cb);
|
|
|
|
gtk_widget_class_bind_template_callback (widget_class, show_calls_clicked_cb);
|
|
|
|
gtk_widget_class_bind_template_callback (widget_class, new_call_submitted_cb);
|
|
|
|
}
|
2018-10-08 10:40:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
CallsCallWindow *
|
2020-03-17 20:50:39 +00:00
|
|
|
calls_call_window_new (GtkApplication *application)
|
2018-10-08 10:40:02 +00:00
|
|
|
{
|
|
|
|
return g_object_new (CALLS_TYPE_CALL_WINDOW,
|
|
|
|
"application", application,
|
|
|
|
NULL);
|
|
|
|
}
|