new_group.h (1927B)
1 /* 2 This file is part of GNUnet. 3 Copyright (C) 2021--2024 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/new_group.h 23 */ 24 25 #ifndef UI_NEW_GROUP_H_ 26 #define UI_NEW_GROUP_H_ 27 28 #include "messenger.h" 29 30 typedef struct UI_NEW_GROUP_Handle 31 { 32 GList *contact_entries; 33 34 GtkBuilder *builder; 35 GtkDialog *dialog; 36 37 GtkStack *stack; 38 GtkWidget *details_box; 39 GtkWidget *contacts_box; 40 41 HdyAvatar *group_avatar; 42 GtkFileChooserButton *group_avatar_file; 43 44 GtkEntry *group_entry; 45 46 GtkSearchEntry *contact_search_entry; 47 48 GtkListBox *contacts_listbox; 49 50 GtkButton *cancel_button; 51 GtkButton *previous_button; 52 GtkButton *next_button; 53 GtkButton *confirm_button; 54 } UI_NEW_GROUP_Handle; 55 56 /** 57 * Initializes a handle for the new group dialog 58 * of a given messenger application. 59 * 60 * @param app Messenger application 61 * @param handle New group dialog handle 62 */ 63 void 64 ui_new_group_dialog_init(MESSENGER_Application *app, 65 UI_NEW_GROUP_Handle *handle); 66 67 /** 68 * Cleans up the allocated resources and resets the 69 * state of a given new group dialog handle. 70 * 71 * @param handle New group dialog handle 72 */ 73 void 74 ui_new_group_dialog_cleanup(UI_NEW_GROUP_Handle *handle); 75 76 #endif /* UI_NEW_GROUP_H_ */