summaryrefslogtreecommitdiff
path: root/src/zenity.h
diff options
context:
space:
mode:
authorGlynn Foster <glynn.foster@sun.com>2004-12-07 00:17:16 +0000
committerGlynn Foster <gman@src.gnome.org>2004-12-07 00:17:16 +0000
commit530a4c04082242ea4740998ed4f50270c94e823a (patch)
tree3a1e4f06da8362477b026c678c32e5785e741e10 /src/zenity.h
parentd9f8ccdc477bc839ab1d863b88fc3e82dc16c52e (diff)
Patch from Lucas Rocha <lucasr@im.ufba.br> to use the GOption API for the
2004-12-07 Glynn Foster <glynn.foster@sun.com> Patch from Lucas Rocha <lucasr@im.ufba.br> to use the GOption API for the zenity parsing options, with some spacing fixes from Glynn. * configure.in: zenity now requires glib-2.0 >= 2.5.3 to build because now it uses GOption. popt requirement removed. * src/Makefile.am: update for new files * src/main.c: use GOption API * src/option.c, src/option.h: New files to implement the new functionality. * src/zenity.h: Fix spacing. 2004-12-07 Glynn Foster <glynn.foster@sun.com> * POTFILES.in: Add new files.
Diffstat (limited to 'src/zenity.h')
-rw-r--r--src/zenity.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/zenity.h b/src/zenity.h
index 1365d17..0e86971 100644
--- a/src/zenity.h
+++ b/src/zenity.h
@@ -55,35 +55,35 @@ typedef enum {
} MsgMode;
typedef struct {
- gchar *dialog_text;
+ gchar *dialog_text;
MsgMode mode;
} ZenityMsgData;
typedef struct {
- gchar *uri;
+ gchar *uri;
gboolean multi;
gboolean directory;
gboolean save;
- gchar *separator;
+ gchar *separator;
} ZenityFileData;
typedef struct {
- gchar *dialog_text;
- gchar *entry_text;
- gboolean visible;
+ gchar *dialog_text;
+ gchar *entry_text;
+ gboolean visible;
} ZenityEntryData;
typedef struct {
- gchar *dialog_text;
- gchar *entry_text;
- gboolean pulsate;
- gboolean autoclose;
- gdouble percentage;
+ gchar *dialog_text;
+ gchar *entry_text;
+ gboolean pulsate;
+ gboolean autoclose;
+ gdouble percentage;
} ZenityProgressData;
typedef struct {
gchar *uri;
- gboolean editable;
+ gboolean editable;
GtkTextBuffer *buffer;
} ZenityTextData;
@@ -99,8 +99,8 @@ typedef struct {
} ZenityTreeData;
typedef struct {
- gchar *notification_text;
- gboolean listen;
+ gchar *notification_text;
+ gboolean listen;
} ZenityNotificationData;
void zenity_calendar (ZenityData *data,