Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-3.0-or-later
2 : : // SPDX-FileCopyrightText: Andy Holmes <andrew.g.r.holmes@gmail.com>
3 : :
4 : : #pragma once
5 : :
6 : : #include <gtk/gtk.h>
7 : : #include <libebook-contacts/libebook-contacts.h>
8 : : #include <valent.h>
9 : :
10 : : G_BEGIN_DECLS
11 : :
12 : : #define VALENT_TYPE_CONTACT_ROW (valent_contact_row_get_type())
13 : :
14 [ + - + - : 1 : G_DECLARE_FINAL_TYPE (ValentContactRow, valent_contact_row, VALENT, CONTACT_ROW, GtkListBoxRow)
- + ]
15 : :
16 : : EContact * valent_contact_row_get_contact (ValentContactRow *row);
17 : : void valent_contact_row_set_contact (ValentContactRow *row,
18 : : EContact *contact);
19 : :
20 : : G_END_DECLS
|