A dialog is a widget that draws its own window. These dialogs are used for simple things -- confirming a choice, gathering a single line of input, etc. Dialogs are always modal, meaning they must be closed before R can be interacted with again.
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, do.buttons=TRUE, 
handler = NULL, action=NULL,  ..., toolkit=guiToolkit())
galert(message, title = "message", delay=3, parent=NULL, ..., toolkit=guiToolkit())
Message shown for widget
Title of window
Which icon to show
default value for ginput text
Widget to place in basic dialog. If missing, dialog returns a container.
A gwindow() instance. If specified, dialog will be located in relation to this
For gbasicdialog -- when no widget
    argument is passed in -- this can be used to suppress the addition of
    Ok and Cancel buttons. If suppressed, the dialog can be closed by the
    window manager or programattically through the dispose method.
Handler called on OK selection.
Value passed to handler
For galert, how long the transient message will appear
Ignored
Toolkit to use for GUI
These basic dialogs do slightly different things.
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 widget wraps a dialog (with buttons) around
   a widget. For gWidgetsRGtk2 and gWidgetsQt the widget may be specified throuh the
   widget argument of the constructor. The constructor produces
   a modal dialog, hence no methods are defined. The return value is a
   logical indicating which button was clicked.
More portably (hence encouraged), if the widget argument is NULL, then the
  constructor produces a container. This container becomes modal after a
  call to visible(..., set=TRUE) (not the assignment version
  though). Again the return value is a logical.  This too creates a
  modal dialog. The handler specified to the constructor is called when
  OK is clicked and TRUE is returned. The value of FALSE
  is returned on cancel, and NA otherwise.
The buttons may be suppressed by setting the argument
  do.buttons=FALSE. The
  dialog then may be closed by calling the dispose method
  within a callback.
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.
The galert dialog is non-modal and does not grab the
  focus. Like gmessage it shows a message but unlike it, only
  for a short period of time and is unobtrusive.
# NOT RUN {
   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"))
   ## gbasicdialog
   w <- gbasicdialog(title="Select a state", handler = function(h,...) 
      print(svalue(tbl)))
   tbl <- gtable(data.frame(states = rownames(state.x77)), expand=TRUE, container = w)
   visible(w, set=TRUE) ## show dialog
# }
Run the code above in your browser using DataLab