/* vim: colorcolumn=80 ts=4 sw=4 */ /* * util.h * * Copyright © 2002 Sun Microsystems, Inc. * © 1999, 2000 Red Hat Inc. * © 1998 James Henstridge * © 1995-2002 Free Software Foundation * © 2021-2023 Logan Rathbone * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * * Original Authors of util.c (inferring they were the authors of * this file as well): * * Glynn Foster * Havoc Pennington * James Henstridge * Tom Tromey */ #pragma once #include "zenity.h" #include "zenity-tree-column-view.h" #include G_BEGIN_DECLS #define ZENITY_IMAGE_FULLPATH(filename) (PACKAGE_DATADIR "/" filename) #define ZENITY_UTIL_ADD_EXTRA_LABELS(DIALOG) \ for (int i = 0; data->extra_label[i] != NULL; ++i) { \ zenity_util_add_button (ADW_MESSAGE_DIALOG (DIALOG), data->extra_label[i], i); \ } #define ZENITY_UTIL_SETUP_OK_BUTTON_LABEL(DIALOG) \ adw_message_dialog_set_response_label (ADW_MESSAGE_DIALOG(DIALOG), "ok", data->ok_label); #define ZENITY_UTIL_SETUP_CANCEL_BUTTON_LABEL(DIALOG) \ adw_message_dialog_set_response_label (ADW_MESSAGE_DIALOG(DIALOG), "cancel", data->cancel_label); GIcon *zenity_util_gicon_from_string (const char *str); GtkBuilder *zenity_util_load_ui_file (const char *widget_root, ...) G_GNUC_NULL_TERMINATED; char *zenity_util_strip_newline (char *string); gboolean zenity_util_fill_file_buffer (GtkTextBuffer *buffer, const char *filename); void zenity_util_show_help (GError **error); int zenity_util_return_exit_code (ZenityExitCode value); void zenity_util_exit_code_with_data (ZenityExitCode value, ZenityData *data); void zenity_util_show_dialog (GtkWidget *widget); gboolean zenity_util_timeout_handle (AdwMessageDialog *dialog); char *zenity_util_pango_font_description_to_css (PangoFontDescription *desc); void zenity_util_gapp_main (GtkWindow *window); void zenity_util_gapp_quit (GtkWindow *window, ZenityData *data); ZenityExitCode zenity_util_parse_dialog_response (const char *response); GtkWidget *zenity_util_add_button (AdwMessageDialog *dialog, const char *button_text, ZenityExitCode response_id); G_END_DECLS