Rev 15323 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{TkWidgets}\alias{TkWidgets}\alias{tkwidget}\alias{tkbutton}\alias{tkcanvas}\alias{tkcheckbutton}\alias{tkentry}\alias{tkframe}\alias{tklabel}\alias{tklistbox}\alias{tkmenu}\alias{tkmenubutton}\alias{tkmessage}\alias{tkradiobutton}\alias{tkscale}\alias{tkscrollbar}\alias{tktext}\alias{tktoplevel}\title{Tk widgets}\description{Create Tk widgets and associated \R objects.}\usage{tkwidget(parent, type, ...)tkbutton(parent, ...)tkcanvas(parent, ...)tkcheckbutton(parent, ...)tkentry(parent, ...)tkframe(parent, ...)tklabel(parent, ...)tklistbox(parent, ...)tkmenu(parent, ...)tkmenubutton(parent, ...)tkmessage(parent, ...)tkradiobutton(parent, ...)tkscale(parent, ...)tkscrollbar(parent, ...)tktext(parent, ...)tktoplevel(parent=.TkRoot, ...)}\arguments{\item{parent}{ Parent of widget window }\item{type}{string describing the type of widget desired}\item{\dots}{handled via \code{.Tcl.args}}}\details{These functions create Tk widgets. \code{tkwidget} creates a widget ofa given type, the others simply call \code{tkwidget} with therespective \code{type} argument.It is not possible to describe the widgets and their arguments infull. Please refer to the Tcl/Tk documentation.}\seealso{\code{\link{TclInterface}}, \code{\link{TkCommands}},\code{\link{TkWidgetcmds}}}\examples{\dontrun{## These cannot be run by examples() but should be OK when pasted## into an interactive R session with the tcltk package loadedtt <- tktoplevel()label.widget <- tklabel(tt, text="Hello, World!")button.widget <- tkbutton(tt, text="Push",command=function()cat("OW!\n"))tkpack(label.widget, button.widget) # geometry manager# see Tk-commands## Push the button and then...tkdestroy(tt)}}\keyword{ misc }%-- one or more ...