diff options
Diffstat (limited to 'src/ui/chat.h')
-rw-r--r-- | src/ui/chat.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/src/ui/chat.h b/src/ui/chat.h new file mode 100644 index 0000000..5415647 --- /dev/null +++ b/src/ui/chat.h | |||
@@ -0,0 +1,59 @@ | |||
1 | /* | ||
2 | This file is part of GNUnet. | ||
3 | Copyright (C) 2021 GNUnet e.V. | ||
4 | |||
5 | GNUnet is free software: you can redistribute it and/or modify it | ||
6 | under the terms of the GNU Affero General Public License as published | ||
7 | by the Free Software Foundation, either version 3 of the License, | ||
8 | or (at your option) any later version. | ||
9 | |||
10 | GNUnet is distributed in the hope that it will be useful, but | ||
11 | WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
13 | Affero General Public License for more details. | ||
14 | |||
15 | You should have received a copy of the GNU Affero General Public License | ||
16 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | |||
18 | SPDX-License-Identifier: AGPL3.0-or-later | ||
19 | */ | ||
20 | /* | ||
21 | * @author Tobias Frisch | ||
22 | * @file ui/chat.h | ||
23 | */ | ||
24 | |||
25 | #ifndef UI_CHAT_H_ | ||
26 | #define UI_CHAT_H_ | ||
27 | |||
28 | #include <gtk-3.0/gtk/gtk.h> | ||
29 | #include <libhandy-1/handy.h> | ||
30 | #include <libnotify/notify.h> | ||
31 | |||
32 | typedef struct MESSENGER_Application MESSENGER_Application; | ||
33 | |||
34 | typedef struct UI_CHAT_Handle | ||
35 | { | ||
36 | GtkWidget *chat_box; | ||
37 | |||
38 | GtkButton *back_button; | ||
39 | |||
40 | GtkLabel *chat_title; | ||
41 | GtkLabel *chat_subtitle; | ||
42 | GtkButton *chat_details_button; | ||
43 | |||
44 | GtkListBox *messages_listbox; | ||
45 | |||
46 | GtkButton *attach_file_button; | ||
47 | GtkTextView *send_text_view; | ||
48 | GtkButton *emoji_button; | ||
49 | GtkButton *send_record_button; | ||
50 | GtkImage *send_record_symbol; | ||
51 | } UI_CHAT_Handle; | ||
52 | |||
53 | UI_CHAT_Handle* | ||
54 | ui_chat_new(MESSENGER_Application *app); | ||
55 | |||
56 | void | ||
57 | ui_chat_delete(UI_CHAT_Handle *handle); | ||
58 | |||
59 | #endif /* UI_CHAT_H_ */ | ||