gmessage(message, title="message",
icon = c("info", "warning", "error", "question"),
parent = NULL,
handler = NULL,
action = NULL, ..., toolkit=guiToolkit()) ginput(message, text="", title="Input", icon = c("info", "warning",
"error", "question"), parent=NULL,
handler = NULL, action = NULL,..., toolkit=guiToolkit())
gconfirm(message, title="Confirm", icon = c("info", "warning", "error",
"question"), parent=NULL,
handler = NULL, action = NULL, ..., toolkit=guiToolkit())
gbasicdialog(title = "Dialog", widget, parent=NULL, handler = NULL, action=NULL, ..., toolkit=guiToolkit())
The gmessage
dialog shows a message with an icon and a dismiss
button. This dialog returns TRUE
or FALSE
as
appropriate.
The gconfirm
dialog shows a message with an icon and an OK
button and a dismiss button. A handler may be attached to the OK
button selection. This dialog returns TRUE
or FALSE
as
appropriate.
The ginput
dialog adds an edit box for gathering user
information. The text
argument sets the default value. This is
then passed to the handler via the component input
of the first
argument of the handler. This dialog returns the value of the string
if OK is clicked, otherwise NA
.
The gbasicdialog
dialog wraps a widget around an OK and dismiss
button. The handler is called when the OK button is clicked. This
dialog returns the TRUE
when OK is clicked, otherwise FALSE
.
These dialogs are modal. This means that the R session freezes until the dialog is dismissed. This may be confusing to users if the window should appear below a currently drawn window.
gmessage("Hi there")
gconfirm("Are we having fun?", handler = function(h,...)
print("Yes"))
ginput("Enter your name", icon="question", handler = function(h,...) cat("Hi",h$input,"\n"))
Run the code above in your browser using DataLab