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_CONVERSATION_ROW (valent_conversation_row_get_type())
13 : :
14 [ + - + - : 11 : G_DECLARE_FINAL_TYPE (ValentConversationRow, valent_conversation_row, VALENT, CONVERSATION_ROW, GtkListBoxRow)
- + ]
15 : :
16 : : GtkWidget * valent_conversation_row_new (ValentMessage *message,
17 : : EContact *contact);
18 : : int valent_conversation_row_collate (ValentConversationRow *row1,
19 : : ValentConversationRow *row2);
20 : :
21 : : EContact * valent_conversation_row_get_contact (ValentConversationRow *row);
22 : : void valent_conversation_row_set_contact (ValentConversationRow *row,
23 : : EContact *contact);
24 : : int64_t valent_conversation_row_get_date (ValentConversationRow *row);
25 : : ValentMessage * valent_conversation_row_get_message (ValentConversationRow *row);
26 : : void valent_conversation_row_set_message (ValentConversationRow *row,
27 : : ValentMessage *message);
28 : : gboolean valent_conversation_row_is_incoming (ValentConversationRow *row);
29 : : void valent_conversation_row_show_avatar (ValentConversationRow *row,
30 : : gboolean visible);
31 : :
32 : : G_END_DECLS
33 : :
|