2018-05-17 13:16:51 +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/>.
|
|
|
|
*
|
|
|
|
* Author: Bob Ham <bob.ham@puri.sm>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2022-04-24 10:24:55 +00:00
|
|
|
#pragma once
|
2018-05-17 13:16:51 +00:00
|
|
|
|
|
|
|
#include "calls-call.h"
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
|
|
|
#define CALLS_TYPE_ORIGIN (calls_origin_get_type ())
|
|
|
|
|
2022-04-24 10:24:55 +00:00
|
|
|
G_DECLARE_INTERFACE (CallsOrigin, calls_origin, CALLS, ORIGIN, GObject)
|
2018-05-17 13:16:51 +00:00
|
|
|
|
|
|
|
|
2022-04-24 10:24:55 +00:00
|
|
|
struct _CallsOriginInterface {
|
2018-05-17 13:16:51 +00:00
|
|
|
GTypeInterface parent_iface;
|
|
|
|
|
2022-04-24 10:24:55 +00:00
|
|
|
void (*dial) (CallsOrigin *self,
|
|
|
|
const char *number);
|
|
|
|
gboolean (*supports_protocol) (CallsOrigin *self,
|
|
|
|
const char *protocol);
|
2018-05-17 13:16:51 +00:00
|
|
|
};
|
|
|
|
|
2020-03-23 22:10:05 +00:00
|
|
|
typedef void (*CallsOriginForeachCallFunc) (gpointer param, CallsCall* call, CallsOrigin* origin);
|
2018-05-17 13:16:51 +00:00
|
|
|
|
2021-12-18 13:07:32 +00:00
|
|
|
char * calls_origin_get_name (CallsOrigin *self);
|
|
|
|
char * calls_origin_get_id (CallsOrigin *self);
|
|
|
|
GList * calls_origin_get_calls (CallsOrigin *self);
|
|
|
|
void calls_origin_foreach_call (CallsOrigin *self,
|
|
|
|
CallsOriginForeachCallFunc callback,
|
|
|
|
gpointer param);
|
|
|
|
void calls_origin_dial (CallsOrigin *self,
|
|
|
|
const char *number);
|
|
|
|
gboolean calls_origin_supports_protocol (CallsOrigin *self,
|
|
|
|
const char *protocol);
|
|
|
|
GStrv calls_origin_get_emergency_numbers (CallsOrigin *self);
|
|
|
|
|
2018-05-17 13:16:51 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|