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 <adwaita.h>
7 : : #include <libebook-contacts/libebook-contacts.h>
8 : : #include <valent.h>
9 : :
10 : : G_BEGIN_DECLS
11 : :
12 : : #define VALENT_TYPE_CONVERSATION_PAGE (valent_conversation_page_get_type())
13 : :
14 [ - - + - : 2 : G_DECLARE_FINAL_TYPE (ValentConversationPage, valent_conversation_page, VALENT, CONVERSATION_PAGE, AdwNavigationPage)
+ - - + ]
15 : :
16 : : void valent_conversation_page_add_participant (ValentConversationPage *conversation,
17 : : EContact *contact,
18 : : const char *medium);
19 : : const char * valent_conversation_page_get_iri (ValentConversationPage *conversation);
20 : : void valent_conversation_page_scroll_to_date (ValentConversationPage *conversation,
21 : : int64_t date);
22 : : void valent_conversation_page_scroll_to_message (ValentConversationPage *conversation,
23 : : ValentMessage *message);
24 : :
25 : : G_END_DECLS
|