summaryrefslogtreecommitdiff
path: root/src/zenity.h
diff options
context:
space:
mode:
authorArx Cruz <arxcruz@gnome.org>2014-05-20 16:05:32 -0300
committerArx Cruz <arxcruz@gnome.org>2014-05-20 16:05:32 -0300
commitec0c2f3292b3db0fdad7f02ed068a97b66f7a2ea (patch)
treebb8d9c30548dc3a93787aa253f6e4bdee5a4062a /src/zenity.h
parentFixing deprecated classes in GtkBuilder (diff)
downloadzenity-ec0c2f3292b3db0fdad7f02ed068a97b66f7a2ea.tar.gz
zenity-ec0c2f3292b3db0fdad7f02ed068a97b66f7a2ea.tar.bz2
zenity-ec0c2f3292b3db0fdad7f02ed068a97b66f7a2ea.zip
Add the --ellipsize option to info, error, warning and question dialogs
This option will help people who need to add huge texts in their dialogs and the window size get's very huge due amount of size that GtkLabel requests
Diffstat (limited to 'src/zenity.h')
-rw-r--r--src/zenity.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zenity.h b/src/zenity.h
index 6e1b6875..d3606cd4 100644
--- a/src/zenity.h
+++ b/src/zenity.h
@@ -67,6 +67,7 @@ typedef struct {
gboolean no_wrap;
gboolean no_markup;
gboolean default_cancel;
+ gboolean ellipsize;
} ZenityMsgData;
typedef struct {
bgstack15