diff options
Diffstat (limited to 'doc/messageBox.n')
-rw-r--r-- | doc/messageBox.n | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/doc/messageBox.n b/doc/messageBox.n index 0079972..5cdd26e 100644 --- a/doc/messageBox.n +++ b/doc/messageBox.n @@ -27,10 +27,21 @@ The following option-value pairs are supported: .TP \fB\-default\fR \fIname\fR \fIName\fR gives the symbolic name of the default button for -this message window ('ok', 'cancel', and so on). See \fB\-type\fR +this message window ( +.QW ok , +.QW cancel , +and so on). See \fB\-type\fR for a list of the symbolic names. If this option is not specified, the first button in the dialog will be made the default. .TP +\fB\-detail\fR \fIstring\fR +.VS 8.5 +Specifies an auxiliary message to the main message given by the +\fB\-message\fR option. Where supported by the underlying OS, the +message detail will be presented in a less emphasized font than the +main message. +.VE 8.5 +.TP \fB\-icon\fR \fIiconImage\fR Specifies an icon to display. \fIIconImage\fR must be one of the following: \fBerror\fR, \fBinfo\fR, \fBquestion\fR or @@ -76,8 +87,10 @@ and \fBcancel\fR. .PP .SH EXAMPLE .CS -set answer [\fBtk_messageBox\fR \-message "Really quit?" \-type yesno \-icon question] -switch -- $answer { +set answer [\fBtk_messageBox\fR \-message "Really quit?" \e + \-icon question \-type yesno \e + \-detail "Select \e"Yes\e" to make the application exit"] +switch \-\- $answer { yes exit no {\fBtk_messageBox\fR \-message "I know you like this application!" \e \-type ok} |