From 709ce87732fbdd33ae108cd90a311dd25358b26b Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 5 Feb 2003 10:31:02 +0000 Subject: Added a small manual page --- data/zenity.1 | 212 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 212 insertions(+) create mode 100644 data/zenity.1 (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 new file mode 100644 index 00000000..2995cfd1 --- /dev/null +++ b/data/zenity.1 @@ -0,0 +1,212 @@ +.TH ZENITY 1 "February 1st, 2003" +.SH NAME +zenity \- display GTK+ dialogs +.SH SYNOPSIS +.B zenity +.RI [ options ] +.SH DESCRIPTION +\fBzenity\fP is a program that will display GTK+ dialogs, and return +(either in the return code, or on standard output) the users +input. This allows you to present information, and ask for information +from the user, from all manner of shell scripts. +.PP +For example, \fBzenity --question\fP will return either 0 or 1, +depending on whether the user pressed \fIYes\fP or \fINo\fP. \fBzenity +--entry\fP will output on standard output what the user typed into the +text entry field. +.PP +Comprehensive documentation is available in the GNOME Help Browser, +under \fIGNOME/Utilities\fP. +.SH OPTIONS +This program follows the usual GNU command line syntax, with long +options starting with two dashes (`-'). + +.PP +Dialog options + +.TP +.B \-\-calendar +Display calendar dialog +.TP +.B \-\-entry +Display text entry dialog +.TP +.B \-\-error +Display error dialog +.TP +.B \-\-file-selection +Display file selection dialog +.TP +.B \-\-info +Display info dialog +.TP +.B \-\-list +Display list dialog +.TP +.B \-\-progress +Display progress indication dialog +.TP +.B \-\-question +Display question dialog +.TP +.B \-\-text-info +Display text information dialog +.TP +.B \-\-warning +Display warning dialog + +.PP +General options + +.TP +.B \-\-title=TITLE +Set the dialog title +.TP +.B \-\-window-icon=ICONPATH +Set the window icon + +.PP +Calendar options + +.TP +.B \-\-text=STRING +Set the dialog text +.TP +.B \-\-day=INT +Set the calendar day +.TP +.B \-\-month=INT +Set the calendar month +.TP +.B \-\-year=INT +Set the calendar year +.TP +.B \-\-date-format=STRING +Set the format for the returned date + +.PP +Text entry options + +.TP +.B \-\-text=STRING +Set the dialog text +.TP +.B \-\-entry-text=STRING +Set the entry text +.TP +.B \-\-hide-text +Hide the entry text + +.PP +Error options +.TP +.B \-\-text=STRING +Set the dialog text + +.PP +File selection options +.TP +.B \-\-filename=FILENAME +Set the filename + +.PP +Info options +.TP +.B \-\-text=STRING +Set the dialog text + +.PP +List options + +.TP +.B \-\-column=STRING +Set the column header +.TP +.B \-\-checklist +Use check boxes for first column +.TP +.B \-\-radiolist +Use radio buttons for first column +.TP +.B \-\-separator=STRING +Set output separator character +.TP +.B \-\-editable +Allow changes to text + +.PP +Progress options + +.TP +.B \-\-text=STRING +Set the dialog text +.TP +.B \-\-percentage=INT +Set initial percentage +.TP +.B \-\-pulsate +Pulsate progress bar + +Question options +.TP +.B \-\-text=STRING +Set the dialog text + +.PP +Text options + +.TP +.B \-\-filename=FILENAME +Open file +.TP +.B \-\-editable +Allow changes to text + +.PP +Warning options + +.TP +.B \-\-text=STRING +Set the dialog text + +.PP +Miscellaneous options + +.TP +.B \-?, \-\-help +Show summary of options. +.TP +.B \-\-about +Display an about dialog. +.TP +.B \-\-version +Show version of program. + +.PP +Also the standard GTK+ options are accepted. + +.SH EXAMPLES + +Display a file selector with the title \fISelect a file to +remove\fP. The file selected is returned on standard output. +.IP +zenity --title="Select a file to remove" --file-selection +.PP +Display a text entry dialog with the title \fISelect Host\fP and the +text \fISelect the host you would like to flood-ping\fP. The entered +text is returned on standard output. +.IP +zenity --title "Select Host" --entry --text "Select the host you would like to flood-ping" +.PP +Display a dialog, asking \fIMicrosoft Windows has been found! Would +you like to remove it?\fP. The return code will be 0 (true in shell) +if \fIOK\fP is selected, and 1 (false) if \fICancel\fP is selected. +.IP +zenity --question --title "Alert" --text "Microsoft Windows has been found! Would you like to remove it?" + +.SH AUTHOR +\fBZenity\fP was written by Glynn Foster . This +manual page was written by Ross Burton . + +.SH SEE ALSO +\fBgdialog\fP(1), \fBdialog\fP(1) -- cgit From c5056dd3bbbcd964a9782240f9415443b36b26c2 Mon Sep 17 00:00:00 2001 From: Glynn Foster Date: Wed, 28 May 2003 23:19:16 +0000 Subject: Update some more items. Update man page a little, although it still should 2003-05-29 Glynn Foster * TODO: Update some more items. * data/zenity.1: Update man page a little, although it still should contain more useful information I guess. --- data/zenity.1 | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 2995cfd1..e6b36374 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -11,7 +11,7 @@ input. This allows you to present information, and ask for information from the user, from all manner of shell scripts. .PP For example, \fBzenity --question\fP will return either 0 or 1, -depending on whether the user pressed \fIYes\fP or \fINo\fP. \fBzenity +depending on whether the user pressed \fIOK\fP or \fICancel\fP. \fBzenity --entry\fP will output on standard output what the user typed into the text entry field. .PP @@ -64,7 +64,12 @@ Set the dialog title .TP .B \-\-window-icon=ICONPATH Set the window icon - +.TP +.B \-\-width=WIDTH +Set the dialog width +.TP +.B \-\-height=HEIGHT +Set the dialog height .PP Calendar options @@ -203,10 +208,23 @@ you like to remove it?\fP. The return code will be 0 (true in shell) if \fIOK\fP is selected, and 1 (false) if \fICancel\fP is selected. .IP zenity --question --title "Alert" --text "Microsoft Windows has been found! Would you like to remove it?" - +.PP +Show the search results in a list dialog with the title \fISearch Results\fP +and the text \fIFinding all header files...\fP. +.IP +find . -name '*.h' | zenity --title "Search Results" --text "Finding all header files.." --column "Files" +.PP +Display a weekly shopping list in a check list dialog with \fIApples\fP and \fIOranges\fP pre selected +.IP +zenity --list --checklist --column "Buy" --column "Item" TRUE Apples TRUE Oranges FALSE Pears FALSE Toothpaste +.PP +Display a progress dialog while searching for all the postscript files in your home directory +.P +find `echo $HOME` '*.ps' | zenity --progress --pulsate .SH AUTHOR -\fBZenity\fP was written by Glynn Foster . This -manual page was written by Ross Burton . +\fBZenity\fP was written by Glynn Foster . +.P +This manual page was written by Ross Burton . .SH SEE ALSO \fBgdialog\fP(1), \fBdialog\fP(1) -- cgit From 626d95b752159fdcec1e7c08271f3eaca1113ab7 Mon Sep 17 00:00:00 2001 From: Mike Newman Date: Tue, 3 Jun 2003 21:52:16 +0000 Subject: Add --auto-close option to progress dialog. Closes dialog when 100% has been reached. Also update docs for new option. Fixes #114125. --- data/zenity.1 | 3 +++ 1 file changed, 3 insertions(+) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index e6b36374..b61a8c99 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -149,6 +149,9 @@ Set the dialog text .B \-\-percentage=INT Set initial percentage .TP +.B \-\-auto\-close +Close dialog when 100% has been reached +.TP .B \-\-pulsate Pulsate progress bar -- cgit From 0e4c879656dcb3a0f4ffbcc65e30b6120f65c05e Mon Sep 17 00:00:00 2001 From: Mike Newman Date: Mon, 9 Jun 2003 18:57:01 +0000 Subject: Allow multiple file selections. --- data/zenity.1 | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index b61a8c99..77942ddb 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -113,6 +113,12 @@ File selection options .TP .B \-\-filename=FILENAME Set the filename +.TP +.B \-\-multiple +Allow selection of multiple filenames in file selection dialog +.TP +.B \-\-separator=SEPARATOR +Specify separator character when returning multiple filenames .PP Info options -- cgit From 02955ce70f7fa58da88dc8d66e07520afb94f642 Mon Sep 17 00:00:00 2001 From: Glynn Foster Date: Wed, 28 Apr 2004 12:06:02 +0000 Subject: Fix the list dialog not being able to handle --text to change the text. It 2004-04-29 Glynn Foster * src/main.c, src/tree.c: Fix the list dialog not being able to handle --text to change the text. It was also intentional but must have fallen through the gaps. * data/zenity.1: Update * help/C/zenity.xml: Update. --- data/zenity.1 | 3 +++ 1 file changed, 3 insertions(+) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 77942ddb..d5518dd2 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -129,6 +129,9 @@ Set the dialog text .PP List options +.TP +.B \-\-text=STRING +Set the dialog text .TP .B \-\-column=STRING Set the column header -- cgit From 408f2cad51aa4c82392dc7b37159e811e23daa70 Mon Sep 17 00:00:00 2001 From: Glynn Foster Date: Tue, 3 Aug 2004 09:14:27 +0000 Subject: Update the man page for the --print-column option added. 2004-08-03 Glynn Foster * data/zenity.1: Update the man page for the --print-column option added. --- data/zenity.1 | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index d5518dd2..17f6eab4 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -147,6 +147,10 @@ Set output separator character .TP .B \-\-editable Allow changes to text +.TP +.B \-\-print-column=STRING +Specify what column to print to standard output. The default is to return +the first column. 'ALL' may be used to print all columns. .PP Progress options -- cgit From 3e05834b4c23a5d5951403719b8594ff3d9fe30b Mon Sep 17 00:00:00 2001 From: Glynn Foster Date: Mon, 13 Sep 2004 07:51:51 +0000 Subject: Add new notification icon. Update for new files. Restructure code a little 2004-09-13 Glynn Foster * data/Makefile.am, data/zenity-notification.png: Add new notification icon. * src/Makefile.am: Update for new files. * src/about.c, src/calendar.c, src/entry.c, src/fileselection.c, src/progress.c, src/text.c, src/tree.c, src/msg.c: Restructure code a little bit for new utility functions for setting window icons. * src/eggtrayicon.c, src/eggtrayicon.h: New files for notification area support. * src/main.c, src/notification.c, src/util.c, src/util.h, src/zenity.h: Add support for notification area. * data/zenity.1, help/*: Update docs for notification and new file selection changes. --- data/zenity.1 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 17f6eab4..39498992 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -43,6 +43,9 @@ Display info dialog .B \-\-list Display list dialog .TP +.B \-\-notification +Display notification icon +.TP .B \-\-progress Display progress indication dialog .TP @@ -152,6 +155,13 @@ Allow changes to text Specify what column to print to standard output. The default is to return the first column. 'ALL' may be used to print all columns. +.PP +Notification options + +.TP +.B \-\-text=STRING +Set the notification text + .PP Progress options @@ -230,6 +240,10 @@ and the text \fIFinding all header files...\fP. .IP find . -name '*.h' | zenity --title "Search Results" --text "Finding all header files.." --column "Files" .PP +Show an icon in the notification area +.IP +zenity --notification --window-icon=update.png --text "System update necessary!" +.PP Display a weekly shopping list in a check list dialog with \fIApples\fP and \fIOranges\fP pre selected .IP zenity --list --checklist --column "Buy" --column "Item" TRUE Apples TRUE Oranges FALSE Pears FALSE Toothpaste -- cgit From 51a7c9d3894307af8492bd05cd5958fee09b9026 Mon Sep 17 00:00:00 2001 From: "Guilherme de S. Pastore" Date: Wed, 21 Sep 2005 14:38:02 +0000 Subject: escaped "-"s; they're supposed to be minus signs, not hyphens. * data/zenity.1: escaped "-"s; they're supposed to be minus signs, not hyphens. --- data/zenity.1 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 39498992..264febf7 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -10,7 +10,7 @@ zenity \- display GTK+ dialogs input. This allows you to present information, and ask for information from the user, from all manner of shell scripts. .PP -For example, \fBzenity --question\fP will return either 0 or 1, +For example, \fBzenity \-\-question\fP will return either 0 or 1, depending on whether the user pressed \fIOK\fP or \fICancel\fP. \fBzenity --entry\fP will output on standard output what the user typed into the text entry field. @@ -221,36 +221,36 @@ Also the standard GTK+ options are accepted. Display a file selector with the title \fISelect a file to remove\fP. The file selected is returned on standard output. .IP -zenity --title="Select a file to remove" --file-selection +zenity \-\-title="Select a file to remove" \-\-file-selection .PP Display a text entry dialog with the title \fISelect Host\fP and the text \fISelect the host you would like to flood-ping\fP. The entered text is returned on standard output. .IP -zenity --title "Select Host" --entry --text "Select the host you would like to flood-ping" +zenity \-\-title "Select Host" \-\-entry \-\-text "Select the host you would like to flood-ping" .PP Display a dialog, asking \fIMicrosoft Windows has been found! Would you like to remove it?\fP. The return code will be 0 (true in shell) if \fIOK\fP is selected, and 1 (false) if \fICancel\fP is selected. .IP -zenity --question --title "Alert" --text "Microsoft Windows has been found! Would you like to remove it?" +zenity \-\-question \-\-title "Alert" \-\-text "Microsoft Windows has been found! Would you like to remove it?" .PP Show the search results in a list dialog with the title \fISearch Results\fP and the text \fIFinding all header files...\fP. .IP -find . -name '*.h' | zenity --title "Search Results" --text "Finding all header files.." --column "Files" +find . \-name '*.h' | zenity \-\-title "Search Results" \-\-text "Finding all header files.." \-\-column "Files" .PP Show an icon in the notification area .IP -zenity --notification --window-icon=update.png --text "System update necessary!" +zenity \-\-notification \-\-window-icon=update.png \-\-text "System update necessary!" .PP Display a weekly shopping list in a check list dialog with \fIApples\fP and \fIOranges\fP pre selected .IP -zenity --list --checklist --column "Buy" --column "Item" TRUE Apples TRUE Oranges FALSE Pears FALSE Toothpaste +zenity \-\-list \-\-checklist \-\-column "Buy" \-\-column "Item" TRUE Apples TRUE Oranges FALSE Pears FALSE Toothpaste .PP Display a progress dialog while searching for all the postscript files in your home directory .P -find `echo $HOME` '*.ps' | zenity --progress --pulsate +find `echo $HOME` '*.ps' | zenity \-\-progress \-\-pulsate .SH AUTHOR \fBZenity\fP was written by Glynn Foster . .P -- cgit From d1e9373658a59eb20144323a2a74193525ba0a29 Mon Sep 17 00:00:00 2001 From: Lucas Rocha Date: Sat, 24 Sep 2005 15:15:04 +0000 Subject: bug fix for #315020. 2005-09-24 Lucas Rocha * data/zenity.1: bug fix for #315020. --- data/zenity.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 264febf7..4966804e 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -238,7 +238,7 @@ zenity \-\-question \-\-title "Alert" \-\-text "Microsoft Windows has been fou Show the search results in a list dialog with the title \fISearch Results\fP and the text \fIFinding all header files...\fP. .IP -find . \-name '*.h' | zenity \-\-title "Search Results" \-\-text "Finding all header files.." \-\-column "Files" +find . \-name '*.h' | zenity \-\-list \-\-title "Search Results" \-\-text "Finding all header files.." \-\-column "Files" .PP Show an icon in the notification area .IP -- cgit From a88ade52a01ae65ee3d336339ac20fe07bedd1cd Mon Sep 17 00:00:00 2001 From: Lucas Rocha Date: Fri, 31 Mar 2006 22:49:57 +0000 Subject: fix example on progress dialog (Fixed bug #336751). 2006-03-31 Lucas Rocha * data/zenity.1: fix example on progress dialog (Fixed bug #336751). --- data/zenity.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 4966804e..83931dd9 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -250,7 +250,7 @@ zenity \-\-list \-\-checklist \-\-column "Buy" \-\-column "Item" TRUE Apples TRU .PP Display a progress dialog while searching for all the postscript files in your home directory .P -find `echo $HOME` '*.ps' | zenity \-\-progress \-\-pulsate +find $HOME \-name '*.ps' | zenity \-\-progress \-\-pulsate .SH AUTHOR \fBZenity\fP was written by Glynn Foster . .P -- cgit From 5c1ff4ebd1cb580b54320c6f0ed8f8f4215810ab Mon Sep 17 00:00:00 2001 From: Lucas Rocha Date: Mon, 14 May 2007 18:18:01 +0000 Subject: man page update (Fixes bug #436187). Patch from Sven Arvidsson 2007-05-14 Lucas Rocha * data/zenity.1: man page update (Fixes bug #436187). Patch from Sven Arvidsson . svn path=/trunk/; revision=1207 --- data/zenity.1 | 69 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 66 insertions(+), 3 deletions(-) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 83931dd9..2cee7238 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -34,7 +34,7 @@ Display text entry dialog .B \-\-error Display error dialog .TP -.B \-\-file-selection +.B \-\-file\-selection Display file selection dialog .TP .B \-\-info @@ -57,6 +57,9 @@ Display text information dialog .TP .B \-\-warning Display warning dialog +.TP +.B \-\-scale +Display scale dialog .PP General options @@ -89,7 +92,7 @@ Set the calendar month .B \-\-year=INT Set the calendar year .TP -.B \-\-date-format=STRING +.B \-\-date-format=PATTERN Set the format for the returned date .PP @@ -110,6 +113,9 @@ Error options .TP .B \-\-text=STRING Set the dialog text +.TP +.B \-\-no\-wrap +Do not enable text wrapping .PP File selection options @@ -120,14 +126,26 @@ Set the filename .B \-\-multiple Allow selection of multiple filenames in file selection dialog .TP +.B \-\-directory +Activate directory-only selection +.TP +.B \-\-save +Activate save mode +.TP .B \-\-separator=SEPARATOR Specify separator character when returning multiple filenames +.TP +.B \-\-confirm\-overwrite +Confirm file selection if filename already exists .PP Info options .TP .B \-\-text=STRING Set the dialog text +.TP +.B \-\-no\-wrap +Do not enable text wrapping .PP List options @@ -148,12 +166,18 @@ Use radio buttons for first column .B \-\-separator=STRING Set output separator character .TP +.B \-\-multiple +Allow multiple rows to be selected +.TP .B \-\-editable Allow changes to text .TP .B \-\-print-column=STRING Specify what column to print to standard output. The default is to return the first column. 'ALL' may be used to print all columns. +.TP +.B \-\-hide\-column=NUMBER +Hide a specific column .PP Notification options @@ -161,6 +185,9 @@ Notification options .TP .B \-\-text=STRING Set the notification text +.TP +.B \-\-listen +Listen for commands on stdin .PP Progress options @@ -175,13 +202,21 @@ Set initial percentage .B \-\-auto\-close Close dialog when 100% has been reached .TP +.B \-\-auto\-kill +Kill parent process if cancel button is pressed +.TP .B \-\-pulsate Pulsate progress bar - + +.PP Question options + .TP .B \-\-text=STRING Set the dialog text +.TP +.B \-\-no\-wrap +Do not enable text wrapping .PP Text options @@ -199,6 +234,34 @@ Warning options .TP .B \-\-text=STRING Set the dialog text +.TP +.B \-\-no\-wrap +Do not enable text wrapping + +.PP +Scale options + +.TP +.B \-\-text=STRING +Set the dialog text +.TP +.B \-\-value=VALUE +Set initial value +.TP +.B \-\-min\-value=VALUE +Set minimum value +.TP +.B \-\-max\-value=VALUE +Set maximum value +.TP +.B \-\-step=VALUE +Set step size +.TP +.B \-\-print\-partial +Print partial values +.TP +.B \-\-hide\-value +Hide value .PP Miscellaneous options -- cgit From d661db7e4e425668f8a7faeaee043ba8bfd67a62 Mon Sep 17 00:00:00 2001 From: Lucas Rocha Date: Fri, 9 Jan 2009 00:03:05 +0000 Subject: document --timeout (Fixes bug #565133). Patch from Luca Bruno 2009-01-08 Lucas Rocha * data/zenity.1: document --timeout (Fixes bug #565133). Patch from Luca Bruno . svn path=/trunk/; revision=1460 --- data/zenity.1 | 3 +++ 1 file changed, 3 insertions(+) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 2cee7238..9acfcc45 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -76,6 +76,9 @@ Set the dialog width .TP .B \-\-height=HEIGHT Set the dialog height +.TP +.B \-\-timeout=TIMEOUT +Set the dialog timeout .PP Calendar options -- cgit From 81dc4ae2e2db09d4bfa087db9667a5cf2fbc061c Mon Sep 17 00:00:00 2001 From: Frederic Peters Date: Mon, 10 Aug 2009 03:29:53 +0100 Subject: Bug 541400 - document use of $WINDOWID variable --- data/zenity.1 | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 9acfcc45..63e5a151 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -282,6 +282,12 @@ Show version of program. .PP Also the standard GTK+ options are accepted. +.SH ENVIRONMENT + +Normally, zenity detects the terminal window from which it was launched and +keeps itself above that window. This behavior can be disabled by unsetting the +WINDOWID environment variable. + .SH EXAMPLES Display a file selector with the title \fISelect a file to -- cgit From 77d3b7cce74df75afc819894527f8030cba2de32 Mon Sep 17 00:00:00 2001 From: Lucas Rocha Date: Sun, 13 Dec 2009 18:23:14 +0000 Subject: [man] Change --print-column expect a NUMBER --- data/zenity.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 63e5a151..91201fb3 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -175,7 +175,7 @@ Allow multiple rows to be selected .B \-\-editable Allow changes to text .TP -.B \-\-print-column=STRING +.B \-\-print-column=NUMBER Specify what column to print to standard output. The default is to return the first column. 'ALL' may be used to print all columns. .TP -- cgit From 4ccc7f6fac79a189e0c0c4896bb2f0f38d38d7c7 Mon Sep 17 00:00:00 2001 From: Berislav Kovacki Date: Tue, 23 Feb 2010 18:24:20 +0000 Subject: Bug 540169 - Zenity should offer color selection dialog --- data/zenity.1 | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 91201fb3..e7f03be4 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -60,6 +60,8 @@ Display warning dialog .TP .B \-\-scale Display scale dialog +.B \-\-color-selection +Display color selection dialog .PP General options @@ -266,6 +268,16 @@ Print partial values .B \-\-hide\-value Hide value +.PP +Color selection options + +.TP +.B \-\-color=VALUE +Set the initial color +.TP +.B \-\-show\-palette +Show the palette + .PP Miscellaneous options -- cgit From 771d00a9d35b0c487fcfed643f12b3a10abc2d0c Mon Sep 17 00:00:00 2001 From: Arx Cruz Date: Mon, 28 Jun 2010 12:44:29 -0300 Subject: Bug #616816 - Add new entries to Zenity's man page - Patch from Carnë Draug - carandraug.ml at gmail dot com MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/zenity.1 | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index e7f03be4..ccba5888 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -60,6 +60,7 @@ Display warning dialog .TP .B \-\-scale Display scale dialog +.TP .B \-\-color-selection Display color selection dialog @@ -71,7 +72,7 @@ General options Set the dialog title .TP .B \-\-window-icon=ICONPATH -Set the window icon +Set the window icon with the path to an image. Alternatively, one of the four stock icons can be used: 'error', 'info', 'question' or 'warning' .TP .B \-\-width=WIDTH Set the dialog width @@ -80,7 +81,7 @@ Set the dialog width Set the dialog height .TP .B \-\-timeout=TIMEOUT -Set the dialog timeout +Set the dialog timeout in seconds .PP Calendar options @@ -98,7 +99,7 @@ Set the calendar month Set the calendar year .TP .B \-\-date-format=PATTERN -Set the format for the returned date +Set the format for the returned date. The default depends on the user locale or be set with the strftime style. For example %A %d/%m/%y .PP Text entry options @@ -126,7 +127,7 @@ Do not enable text wrapping File selection options .TP .B \-\-filename=FILENAME -Set the filename +Set the file or directory to be selected by default .TP .B \-\-multiple Allow selection of multiple filenames in file selection dialog @@ -142,6 +143,10 @@ Specify separator character when returning multiple filenames .TP .B \-\-confirm\-overwrite Confirm file selection if filename already exists +.TP +.B \-\-file\-filter=NAME | PATTERN1 PATTERN2 +Sets a filename filter + .PP Info options @@ -183,6 +188,9 @@ the first column. 'ALL' may be used to print all columns. .TP .B \-\-hide\-column=NUMBER Hide a specific column +.TP +.B \-\-hide\-header +Hides the column headers .PP Notification options @@ -192,7 +200,7 @@ Notification options Set the notification text .TP .B \-\-listen -Listen for commands on stdin +Listen for commands on stdin. Commands include 'message', 'tooltip', 'icon', and 'visible' separated by a colon. For example, 'message: Hello world', 'visible: false', or 'icon: /path/to/icon'. The icon command also accepts the four stock icon: 'error', 'info', 'question', and 'warning' .PP Progress options @@ -212,6 +220,9 @@ Kill parent process if cancel button is pressed .TP .B \-\-pulsate Pulsate progress bar +.TP +.B \-\-no\-cancel +Hides the cancel button .PP Question options @@ -222,6 +233,12 @@ Set the dialog text .TP .B \-\-no\-wrap Do not enable text wrapping +.TP +.B \-\-ok\-label +Set the text of the OK button +.TP +.B \-\-cancel\-label +Set the text of the cancel button .PP Text options -- cgit From a079520980b238bc7fd95913877ca3d72de472c8 Mon Sep 17 00:00:00 2001 From: Luis Medinas Date: Thu, 21 Oct 2010 00:03:27 +0100 Subject: Fix manpage for the statusicon removal from Zenity 3.0 --- data/zenity.1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index ccba5888..67b46c81 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -44,7 +44,7 @@ Display info dialog Display list dialog .TP .B \-\-notification -Display notification icon +Display notification .TP .B \-\-progress Display progress indication dialog @@ -341,7 +341,7 @@ and the text \fIFinding all header files...\fP. .IP find . \-name '*.h' | zenity \-\-list \-\-title "Search Results" \-\-text "Finding all header files.." \-\-column "Files" .PP -Show an icon in the notification area +Show a notification in the message tray .IP zenity \-\-notification \-\-window-icon=update.png \-\-text "System update necessary!" .PP -- cgit From 5dcac46253fd6fe379096effaf7ff406dc326d0d Mon Sep 17 00:00:00 2001 From: Carnë Draug Date: Thu, 16 Jun 2011 17:28:03 +0100 Subject: man page to mention return code 5 for timeout --- data/zenity.1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 67b46c81..e704a8de 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -10,10 +10,10 @@ zenity \- display GTK+ dialogs input. This allows you to present information, and ask for information from the user, from all manner of shell scripts. .PP -For example, \fBzenity \-\-question\fP will return either 0 or 1, -depending on whether the user pressed \fIOK\fP or \fICancel\fP. \fBzenity ---entry\fP will output on standard output what the user typed into the -text entry field. +For example, \fBzenity \-\-question\fP will return either 0, 1 or 5, +depending on whether the user pressed \fIOK\fP, \fICancel\fP or timeout +has been reached. \fBzenity --entry\fP will output on standard output +what the user typed into the text entry field. .PP Comprehensive documentation is available in the GNOME Help Browser, under \fIGNOME/Utilities\fP. -- cgit From 498472b7d879b4e701ece66e99b94a6b747e5091 Mon Sep 17 00:00:00 2001 From: Arx Cruz Date: Wed, 29 Jun 2011 10:32:09 -0300 Subject: Update man page to reflect new text-info options. --- data/zenity.1 | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index e704a8de..dba0aa27 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -249,6 +249,15 @@ Open file .TP .B \-\-editable Allow changes to text +.TP +.B \-\-checkbox=TEXT +Enable a checkbox for use like a 'I read and accept the terms.' +.TP +.B \-\-ok\-label +Set the text of the OK button +.TP +.B \-\-cancel\-label +Set the text of the cancel button .PP Warning options -- cgit From d8954d9222654f645ebdcc1752c70be97faaae45 Mon Sep 17 00:00:00 2001 From: Arx Cruz Date: Wed, 6 Jul 2011 14:55:30 -0300 Subject: Patch for bug #621907 This patch add the option --no-markup in the info, warning, error and question dialogs So if the user wants to use & \ ' and other symbols, now he can, and no error will be showed. --- data/zenity.1 | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index dba0aa27..5cde33b4 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -122,6 +122,9 @@ Set the dialog text .TP .B \-\-no\-wrap Do not enable text wrapping +.TP +.B \-\-no\-markup +Do not enable pango markup .PP File selection options @@ -156,6 +159,9 @@ Set the dialog text .TP .B \-\-no\-wrap Do not enable text wrapping +.TP +.B \-\-no\-markup +Do not enable pango markup .PP List options @@ -234,6 +240,9 @@ Set the dialog text .B \-\-no\-wrap Do not enable text wrapping .TP +.B \-\-no\-markup +Do not enable pango markup +.TP .B \-\-ok\-label Set the text of the OK button .TP @@ -268,6 +277,9 @@ Set the dialog text .TP .B \-\-no\-wrap Do not enable text wrapping +.TP +.B \-\-no\-markup +Do not enable pango markup .PP Scale options -- cgit From f82bc55b8303ee823588aa8d15711d302d89c466 Mon Sep 17 00:00:00 2001 From: Yasumichi Akahoshi Date: Wed, 28 Dec 2011 00:48:15 +0900 Subject: Add about password and forms dialog. Signed-off-by: Yasumichi Akahoshi --- data/zenity.1 | 41 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 5cde33b4..6fcc81df 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -1,4 +1,4 @@ -.TH ZENITY 1 "February 1st, 2003" +.TH ZENITY 1 "December 2011" .SH NAME zenity \- display GTK+ dialogs .SH SYNOPSIS @@ -63,6 +63,12 @@ Display scale dialog .TP .B \-\-color-selection Display color selection dialog +.TP +.B \-\-password +Display password dialog +.TP +.B \-\-forms +Display forms dialog .PP General options @@ -316,6 +322,35 @@ Set the initial color .B \-\-show\-palette Show the palette +.PP +Password dialog options + +.TP +.B \-\-username +Display the username field + +.PP +Forms dialog options + +.TP +.B \-\-add\-entry=FIELDNAME +Add a new Entry in forms dialog +.TP +.B \-\-add\-password=FIELDNAME +Add a new Password Entry in forms dialog +.TP +.B \-\-add\-calendar=FIELDNAME +Add a new Calendar in forms dialog +.TP +.B \-\-text=STRING +Set the dialog text +.TP +.B \-\-separator=STRING +Set output separator character +.TP +.B \-\-forms\-date-format=PATTERN +Set the format for the returned date. The default depends on the user locale or be set with the strftime style. For example %A %d/%m/%y + .PP Miscellaneous options @@ -330,7 +365,9 @@ Display an about dialog. Show version of program. .PP -Also the standard GTK+ options are accepted. +Also the standard GTK+ options are accepted. For more information about the GTK+ options, execute following command. +.IP +zenity \-\-help\-gtk .SH ENVIRONMENT -- cgit From 886bfb438d496f052faf706b9ece004d31b2247b Mon Sep 17 00:00:00 2001 From: Arx Cruz Date: Sat, 23 Nov 2013 21:02:29 -0200 Subject: Bug #667711 - man page points to nonexisting doc --- data/zenity.1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index 6fcc81df..feb85edf 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -15,8 +15,7 @@ depending on whether the user pressed \fIOK\fP, \fICancel\fP or timeout has been reached. \fBzenity --entry\fP will output on standard output what the user typed into the text entry field. .PP -Comprehensive documentation is available in the GNOME Help Browser, -under \fIGNOME/Utilities\fP. +Comprehensive documentation is available in the GNOME Help Browser. .SH OPTIONS This program follows the usual GNU command line syntax, with long options starting with two dashes (`-'). -- cgit From a0d1d9abae1591a0354ea289230246c1956512f7 Mon Sep 17 00:00:00 2001 From: Piotr Drąg Date: Wed, 20 Sep 2017 04:39:38 +0200 Subject: man: Remove mention of gdialog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It’s been dead for a while. https://git.gnome.org/browse/archive/gnome-utils/commit/?id=c7259559145956d41615206747066da10fd92898 --- data/zenity.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data/zenity.1') diff --git a/data/zenity.1 b/data/zenity.1 index feb85edf..06a1aba6 100644 --- a/data/zenity.1 +++ b/data/zenity.1 @@ -415,4 +415,4 @@ find $HOME \-name '*.ps' | zenity \-\-progress \-\-pulsate This manual page was written by Ross Burton . .SH SEE ALSO -\fBgdialog\fP(1), \fBdialog\fP(1) +\fBdialog\fP(1) -- cgit