Nothing
## The Tcl/Tk version of the list dialog box
dlgList.tcltkGUI <- function (choices, preselect = NULL, multiple = FALSE,
title = NULL, ..., gui = .GUI)
{
gui$setUI(widgets = "tcltkGUI")
res <- tk_select.list(choices = gui$args$choices,
preselect = gui$args$preselect, multiple = gui$args$multiple,
title = gui$args$title)
gui$setUI(res = res, status = NULL)
return(invisible(gui))
}
## This is old code to rework later...
# ## We construct the list dialog box with tcltk commands
# lbox <- tktoplevel()
# tkwm.withdraw(lbox)
# tktitle(lbox) <- title
# tkgrid(tklabel(lbox, text = message), sticky = "w", padx = 5)
# lstFrame <- tkframe(lbox, width = as.character(width))
# scr <- tkscrollbar(lstFrame, repeatinterval = 5,
# command = function (...) tkyview(tl, ...))
# SelMode <- if (multiple) "extended" else "single"
# tl <- tklistbox(lstFrame, width = width - 2, height = 5, selectmode = SelMode,
# yscrollcommand = function (...) tkset(scr, ...), background = "white")
# tkgrid(tl, scr)
# tkgrid.configure(scr, rowspan = 5, sticky = "nsw")
# tkgrid(lstFrame, padx = 5, pady = 2, sticky = "w")
# for (i in 1:(length(items)))
# tkinsert(tl, "end", items[i])
# if (!is.null(default)) {
# for (i in 1:length(default))
# tkselection.set(tl, default[i] - 1) # Default indexing starts at zero.
# tkyview(tl, default[1] - 1) # Make sure first selected item is visible
# }
# sep <- tkcanvas(lbox, height = "0", relief = "groove", borderwidth = "1")
# tkgrid(sep)
# onOk <- function () {
# res <- items[as.numeric(tkcurselection(tl)) + 1]
# assignTemp(".res.list", res)
# tkdestroy(lbox)
# return(res)
# }
# butFrame <- tkframe(lbox)
# wbutOK <- tkbutton(butFrame, text = "OK", width = "12", command = onOk,
# default = "active")
# wlabSep <- tklabel(butFrame, text = " ")
# wbutCancel <- tkbutton(butFrame, text = "Cancel", width = "12",
# command = function () tkdestroy(lbox))
# tkgrid(wbutOK, wlabSep, wbutCancel, sticky = "w")
# tkgrid(butFrame, pady = 5)
# .Tcl("update idletasks")
# tkwm.resizable(lbox, 0, 0)
# tkbind(lbox, "<Return>", onOk)
# tkbind(lbox, "<Double-Button-1>", onOk)
# tkwm.deiconify(lbox)
# tkfocus(lbox)
# tkwait.window(lbox)
# ## Retrieve result
# res <- getTemp(".res.list")
# rmTemp(".res.list")
# return(res)
#}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.