2020-03-17 15:29:43 +00:00
|
|
|
/* calls-manager.c
|
|
|
|
*
|
2021-07-03 22:20:57 +00:00
|
|
|
* Copyright (C) 2020, 2021 Purism SPC
|
2020-03-17 15:29:43 +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/>.
|
|
|
|
*
|
|
|
|
* Authors: Julian Sparber <julian.sparber@puri.sm>
|
2021-07-03 22:20:57 +00:00
|
|
|
* Evangelos Ribeiro Tzaras <evangelos.tzaras@puri.sm>
|
2020-03-17 15:29:43 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-01-20 14:20:09 +00:00
|
|
|
#include "calls-contacts-provider.h"
|
2020-03-17 15:29:43 +00:00
|
|
|
#include "calls-origin.h"
|
2021-09-23 07:32:37 +00:00
|
|
|
#include "calls-settings.h"
|
2020-03-17 15:29:43 +00:00
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define CALLS_TYPE_MANAGER (calls_manager_get_type ())
|
|
|
|
|
|
|
|
G_DECLARE_FINAL_TYPE (CallsManager, calls_manager, CALLS, MANAGER, GObject)
|
|
|
|
|
2022-01-26 13:18:24 +00:00
|
|
|
typedef enum /*< flags >*/
|
2020-03-17 15:29:43 +00:00
|
|
|
{
|
2022-01-26 13:18:24 +00:00
|
|
|
CALLS_MANAGER_FLAGS_UNKNOWN = 0,
|
|
|
|
CALLS_MANAGER_FLAGS_HAS_CELLULAR_PROVIDER = (1<<0),
|
|
|
|
CALLS_MANAGER_FLAGS_HAS_CELLULAR_MODEM = (1<<1),
|
|
|
|
CALLS_MANAGER_FLAGS_HAS_VOIP_PROVIDER = (1<<2),
|
|
|
|
CALLS_MANAGER_FLAGS_HAS_VOIP_ACCOUNT = (1<<3),
|
|
|
|
} CallsManagerFlags;
|
2020-03-17 15:29:43 +00:00
|
|
|
|
|
|
|
|
2021-04-13 09:36:58 +00:00
|
|
|
CallsManager *calls_manager_new (void);
|
|
|
|
CallsManager *calls_manager_get_default (void);
|
2021-07-03 22:20:57 +00:00
|
|
|
CallsContactsProvider *calls_manager_get_contacts_provider (CallsManager *self);
|
2021-09-23 07:32:37 +00:00
|
|
|
CallsSettings *calls_manager_get_settings (CallsManager *self);
|
2021-07-03 22:20:57 +00:00
|
|
|
void calls_manager_add_provider (CallsManager *self,
|
|
|
|
const char *name);
|
|
|
|
void calls_manager_remove_provider (CallsManager *self,
|
|
|
|
const char *name);
|
|
|
|
gboolean calls_manager_has_provider (CallsManager *self,
|
|
|
|
const char *name);
|
|
|
|
gboolean calls_manager_is_modem_provider (CallsManager *self,
|
|
|
|
const char *name);
|
2022-01-26 13:18:24 +00:00
|
|
|
CallsManagerFlags calls_manager_get_state_flags (CallsManager *self);
|
2021-07-03 22:20:57 +00:00
|
|
|
GListModel *calls_manager_get_origins (CallsManager *self);
|
|
|
|
GList *calls_manager_get_calls (CallsManager *self);
|
|
|
|
GListModel *calls_manager_get_suitable_origins (CallsManager *self,
|
|
|
|
const char *target);
|
|
|
|
const gchar *calls_manager_get_contact_name (CallsCall *call);
|
|
|
|
gboolean calls_manager_has_active_call (CallsManager *self);
|
|
|
|
void calls_manager_hang_up_all_calls (CallsManager *self);
|
|
|
|
gboolean calls_manager_has_any_provider (CallsManager *self);
|
|
|
|
const char **calls_manager_get_provider_names (CallsManager *self,
|
|
|
|
guint *length);
|
2021-07-03 23:41:35 +00:00
|
|
|
GList *calls_manager_get_providers (CallsManager *self);
|
2020-03-17 15:29:43 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|