diff options
author | Jeremy Bicha <jbicha@debian.org> | 2017-12-16 13:06:04 -0500 |
---|---|---|
committer | Jeremy Bicha <jbicha@debian.org> | 2017-12-16 13:06:04 -0500 |
commit | c5fd821cd582b8d8df624e42c7722a5843ace911 (patch) | |
tree | 571f12c78d287f4c365cda1fb980117176d1167c /src/util.h | |
parent | Update Vcs fields for conversion to git (diff) | |
parent | New upstream version 3.26.0 (diff) | |
download | zenity-c5fd821cd582b8d8df624e42c7722a5843ace911.tar.gz zenity-c5fd821cd582b8d8df624e42c7722a5843ace911.tar.bz2 zenity-c5fd821cd582b8d8df624e42c7722a5843ace911.zip |
Update upstream source from tag 'upstream/3.26.0'
Update to upstream version '3.26.0'
with Debian dir 7b9bef2d6e33af30991a3e59a1c70875d7aa58e2
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h new file mode 100644 index 00000000..3e5391b2 --- /dev/null +++ b/src/util.h @@ -0,0 +1,35 @@ +#ifndef UTIL_H +#define UTIL_H + +#include "zenity.h" +#include <gtk/gtk.h> + +G_BEGIN_DECLS + +#define ZENITY_UI_FILE_FULLPATH ZENITY_DATADIR "/zenity.ui" +#define ZENITY_UI_FILE_RELATIVEPATH "./zenity.ui" + +#define ZENITY_IMAGE_FULLPATH(filename) (ZENITY_DATADIR "/" filename) + +GtkBuilder *zenity_util_load_ui_file ( + const gchar *widget_root, ...) G_GNUC_NULL_TERMINATED; +gchar *zenity_util_strip_newline (gchar *string); +gboolean zenity_util_fill_file_buffer ( + GtkTextBuffer *buffer, const gchar *filename); +const gchar *zenity_util_icon_name_from_filename (const gchar *filename); +void zenity_util_set_window_icon ( + GtkWidget *widget, const gchar *filename, const gchar *default_file); +void zenity_util_set_window_icon_from_icon_name ( + GtkWidget *widget, const gchar *filename, const gchar *default_icon_name); +void zenity_util_set_window_icon_from_file ( + GtkWidget *widget, const gchar *filename); +void zenity_util_show_help (GError **error); +gint 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, guintptr parent); + +gboolean zenity_util_timeout_handle (gpointer data); + +G_END_DECLS + +#endif /* UTIL_H */ |