Update some more items. Update man page a little, although it still should
2003-05-29 Glynn Foster <glynn.foster@sun.com> * TODO: Update some more items. * data/zenity.1: Update man page a little, although it still should contain more useful information I guess.
This commit is contained in:
parent
f091d10d08
commit
c5056dd3bb
@ -1,3 +1,9 @@
|
|||||||
|
2003-05-29 Glynn Foster <glynn.foster@sun.com>
|
||||||
|
|
||||||
|
* TODO: Update some more items.
|
||||||
|
* data/zenity.1: Update man page a little, although it still
|
||||||
|
should contain more useful information I guess.
|
||||||
|
|
||||||
2003-05-27 Glynn Foster <glynn.foster@sun.com>
|
2003-05-27 Glynn Foster <glynn.foster@sun.com>
|
||||||
|
|
||||||
* src/zenity.glade: Make the progress dialog resize. Lamely
|
* src/zenity.glade: Make the progress dialog resize. Lamely
|
||||||
|
6
TODO
6
TODO
@ -1,4 +1,10 @@
|
|||||||
* Canceling progress dialog should kill off process and close the dialog
|
* Canceling progress dialog should kill off process and close the dialog
|
||||||
|
- Current it does a Hangup, I'm not sure how to solve this
|
||||||
|
* Would be nice to have an option to use your own icon in the info/warning/message/question
|
||||||
|
dialogs
|
||||||
|
- Suggested by kckrinke@opendoorsoftware.com
|
||||||
|
* gdialog used to have env vars to specify the return values of some of the dialogs
|
||||||
|
- Suggested by kckrinke@opendoorsoftware.com
|
||||||
* Add pixmap support to list dialog ?
|
* Add pixmap support to list dialog ?
|
||||||
- Suggested by Dani Brody <brodydani@hotmail.com>
|
- Suggested by Dani Brody <brodydani@hotmail.com>
|
||||||
* Add new format ?
|
* Add new format ?
|
||||||
|
@ -11,7 +11,7 @@ input. This allows you to present information, and ask for information
|
|||||||
from the user, from all manner of shell scripts.
|
from the user, from all manner of shell scripts.
|
||||||
.PP
|
.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 \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
|
--entry\fP will output on standard output what the user typed into the
|
||||||
text entry field.
|
text entry field.
|
||||||
.PP
|
.PP
|
||||||
@ -64,7 +64,12 @@ Set the dialog title
|
|||||||
.TP
|
.TP
|
||||||
.B \-\-window-icon=ICONPATH
|
.B \-\-window-icon=ICONPATH
|
||||||
Set the window icon
|
Set the window icon
|
||||||
|
.TP
|
||||||
|
.B \-\-width=WIDTH
|
||||||
|
Set the dialog width
|
||||||
|
.TP
|
||||||
|
.B \-\-height=HEIGHT
|
||||||
|
Set the dialog height
|
||||||
.PP
|
.PP
|
||||||
Calendar options
|
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.
|
if \fIOK\fP is selected, and 1 (false) if \fICancel\fP is selected.
|
||||||
.IP
|
.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"
|
||||||
|
.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
|
.SH AUTHOR
|
||||||
\fBZenity\fP was written by Glynn Foster <glynn.foster@sun.com>. This
|
\fBZenity\fP was written by Glynn Foster <glynn.foster@sun.com>.
|
||||||
manual page was written by Ross Burton <ross@burtonini.com>.
|
.P
|
||||||
|
This manual page was written by Ross Burton <ross@burtonini.com>.
|
||||||
|
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
\fBgdialog\fP(1), \fBdialog\fP(1)
|
\fBgdialog\fP(1), \fBdialog\fP(1)
|
||||||
|
Reference in New Issue
Block a user