mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-11-15 12:55:36 +00:00
cc41df44d6
We change the code for dealing with contacts quite significantly, adding a new class, CallsBestMatch, in order to encapsulate a lot of the functionality that was in CallsCallRecordRow. At present avatars are not rounded and there are no auto-generated avatars for contacts with no avatar. This work is awaiting discussion of Apps_Issues#164.
126 lines
4.7 KiB
C
126 lines
4.7 KiB
C
/*
|
|
* Copyright (C) 2018, 2019 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
|
|
*
|
|
*/
|
|
|
|
#ifndef CALLS__UTIL_H__
|
|
#define CALLS__UTIL_H__
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/*
|
|
* For defining simple interface functions
|
|
*/
|
|
#define CALLS_DEFINE_IFACE_FUNC_BASE(prefix,iface,Prefix,Iface,PREFIX,IFACE,function,rettype,errval) \
|
|
rettype \
|
|
prefix##_##iface##_##function (Prefix##Iface *self) \
|
|
{ \
|
|
Prefix##Iface##Interface *i; \
|
|
\
|
|
g_return_val_if_fail (PREFIX##_IS_##IFACE (self), errval); \
|
|
\
|
|
i = PREFIX##_##IFACE##_GET_IFACE (self); \
|
|
g_return_val_if_fail (i-> function != NULL, errval); \
|
|
\
|
|
return i-> function (self); \
|
|
}
|
|
|
|
|
|
#define CALLS_DEFINE_IFACE_FUNC_VOID_BASE(prefix,iface,Prefix,Iface,PREFIX,IFACE,function) \
|
|
void \
|
|
prefix##_##iface##_##function (Prefix##Iface *self) \
|
|
{ \
|
|
Prefix##Iface##Interface *i; \
|
|
\
|
|
g_return_if_fail (PREFIX##_IS_##IFACE (self)); \
|
|
\
|
|
i = PREFIX##_##IFACE##_GET_IFACE (self); \
|
|
g_return_if_fail (i-> function != NULL); \
|
|
\
|
|
i-> function (self); \
|
|
}
|
|
|
|
|
|
#define CALLS_DEFINE_IFACE_FUNC(iface,Iface,IFACE,function,rettype,errval) \
|
|
CALLS_DEFINE_IFACE_FUNC_BASE(calls,iface,Calls,Iface,CALLS,IFACE,function,rettype,errval)
|
|
|
|
|
|
#define CALLS_DEFINE_IFACE_FUNC_VOID(iface,Iface,IFACE,function) \
|
|
CALLS_DEFINE_IFACE_FUNC_VOID_BASE(calls,iface,Calls,Iface,CALLS,IFACE,function)
|
|
|
|
|
|
|
|
#define CALLS_SET_PTR_PROPERTY(ptr,new_value) \
|
|
g_free (ptr); \
|
|
ptr = new_value;
|
|
|
|
|
|
#define calls_clear_source(source_id_ptr) \
|
|
if (*source_id_ptr != 0) \
|
|
{ \
|
|
g_source_remove (*source_id_ptr); \
|
|
*source_id_ptr = 0; \
|
|
}
|
|
|
|
#define calls_clear_signal(object,handler_id_ptr) \
|
|
if (*handler_id_ptr != 0) \
|
|
{ \
|
|
g_signal_handler_disconnect (object, *handler_id_ptr); \
|
|
*handler_id_ptr = 0; \
|
|
}
|
|
|
|
#define calls_date_time_unref(date_time) \
|
|
if (date_time) \
|
|
{ \
|
|
g_date_time_unref (date_time); \
|
|
}
|
|
|
|
|
|
/** If the GObject object is non-NULL, unref it */
|
|
void calls_object_unref (gpointer object);
|
|
|
|
|
|
/** Find a particular pointer value in a GtkListStore */
|
|
gboolean
|
|
calls_list_store_find (GtkListStore *store,
|
|
gpointer needle,
|
|
gint needle_column,
|
|
GtkTreeIter *iter);
|
|
|
|
/** Append a single character to a GtkEntry's contents */
|
|
void
|
|
calls_entry_append (GtkEntry *entry,
|
|
gchar character);
|
|
|
|
|
|
gboolean calls_date_time_is_same_day (GDateTime *a,
|
|
GDateTime *b);
|
|
gboolean calls_date_time_is_yesterday (GDateTime *now,
|
|
GDateTime *t);
|
|
gboolean calls_date_time_is_same_year (GDateTime *a,
|
|
GDateTime *b);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* CALLS__UTIL_H__ */
|