1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
\name{tk2commands}
\alias{tk2commands}
\alias{tk2column}
\alias{tk2insert.multi}
\alias{tk2list.delete}
\alias{tk2list.get}
\alias{tk2list.insert}
\alias{tk2list.set}
\alias{tk2list.size}
\alias{tk2notetraverse}
\alias{tk2notetab}
\alias{tk2notetab.select}
\alias{tk2notetab.text}
\alias{tk2state.set}
\alias{is.tk}
\alias{is.ttk}
\alias{tk2theme.elements}
\alias{tk2theme.list}
\alias{tk2theme}
\alias{tk2style}
\alias{tk2dataList}
\alias{tk2configList}
\title{ Tk commands associated with the tk2XXX widgets }
\description{
These commands supplement those available in the tcltk package to ease
manipulation of tk2XXX widgets.
}
\usage{
tk2column(widget, action = c("add", "configure", "delete", "names", "cget",
"nearest"), ...)
tk2insert.multi(widget, where = "end", items)
tk2list.delete(widget, first, last = first)
tk2list.get(widget, first = 0, last = "end")
tk2list.insert(widget, index = "end", ...)
tk2list.set(widget, items)
tk2list.size(widget)
tk2notetraverse(nb)
tk2notetab(nb, tab)
tk2notetab.select(nb, tab)
tk2notetab.text(nb)
tk2state.set(widget, state = c("normal", "disabled", "readonly"))
is.tk()
is.ttk()
tk2theme.elements()
tk2theme.list()
tk2theme(theme = NULL)
tk2style(class, style, state = c("default", "active", "disabled", "focus",
"!focus", "pressed", "selected", "background", "readonly", "alternate",
"invalid", "hover", "all"), default = NULL)
tk2dataList(x)
tk2configList(x)
}
\arguments{
\item{widget}{ the widget to which these actions apply. }
\item{action}{ which kind of action? }
\item{where}{ where are these item added in the list (by default, at the end). }
\item{items}{ the items to add (either a vector for a single line, or a matrix
for more items). }
\item{\dots}{ further arguments to the action. }
\item{first}{ the 0-based first index to consider in the list. }
\item{last}{ the 0-based last index to consider in the list, or \code{"end"}
for using the last element of the list. }
\item{index}{ the 0-based index where to insert items in the list. }
\item{nb}{ a tk2notebook or ttk2notebook widget (\"tclObj\" object). }
\item{tab}{ the name (text) of a tab in a notebook. }
\item{state}{ the new state of the widget, or the state to inquiry. }
\item{theme}{ a theme to use (character string). }
\item{class}{ the class of the tk2widget (either the Tk class, like
\code{TButton}, or the name of the function that creates it, like
\code{tk2button}) }
\item{style}{ a character string with the name of the style to retrieve }
\item{default}{ the default value to return in case this style is not found }
\item{x}{ either a tk2widget object, or a character string with its class name. }
}
\details{
\code{tk2column()} manipulate columns of a tk2mclistbox widget,
\code{tk2insert.multi()} is used to insert multiple field entries in a
tk2mclistbox widget,
\code{is.tk()} determines if the tk package is loaded (on some platforms
it is possible to load the tcltk package without tk, for instance, in
batch mode). \code{is.ttk()} determines if 'ttk' widgets (styled widgets)
used by the \code{tk2XXX()} functions are available (you need Tk >= 8.5).
}
\note{
In comparison with traditional Tk widgets, ttk proposes an advances mechanism
for styling the widgets with \"themes\". By default, it adapts to the current
platform (for instance, under Windows XP with XP theme, all widgets take the
appearance of XP themed widgets (even with custom themes applied!). Usual Tk
widgets are ALWAYS displayed in old-looking fashion under Windows XP. If you
want, you can switch dynamically to a different theme among those avaiable
(list them using \code{tk2theme.list()}, and switch to another one with
\code{tk2theme(newtheme)}. This is most useful to see how your GUI elements
and dialog boxes look like on foreign systems. If you prefer, let's say, a
Unix look of the R GUI elements under Windows, these functions are also
useful. If you are more advanturous, you can even design your own themes (see
the tile documentation on the Tcl wiki).
}
\author{ Philippe Grosjean }
\seealso{ \code{\link{tk2widgets}}, \code{\link{tk2tip}} }
\examples{
\dontrun{
## These cannot be run by examples() but should be OK when pasted
## into an interactive R session with the tcltk package loaded
tt <- tktoplevel()
# A label with a image and some text
file <- system.file("gui", "SciViews.gif", package = "tcltk2")
# Make this a tk2image function...
Image <- tclVar()
tkimage.create("photo", Image, file = file)
tlabel <- tk2label(tt, image = Image,
text = "A label with an image")
tkpack(tlabel)
config(tlabel, compound = "left")
tlabel2 <- tk2label(tt, text = "A disabled label")
tkpack(tlabel2)
disabled(tlabel2) <- TRUE
fruits <- c("Apple", "Orange", "Banana")
tcombo <- tk2combobox(tt, values = fruits)
tkpack(tcombo)
tkinsert(tcombo, 0, "Apple")
## Buttons
tbut <- tk2button(tt, text = "Enabled")
tbut2 <- tk2button(tt, text = "Disabled")
tkpack(tbut, tbut2)
tkconfigure(tbut2, state = "disabled")
tcheck <- tk2checkbutton(tt, text = "Some checkbox")
tcheck2 <- tk2checkbutton(tt, text = "Disabled checkbox")
tkconfigure(tcheck2, state = "disabled")
tcheck3 <- tk2checkbutton(tt, text = "Disabled and selected")
tkpack(tcheck, tcheck2, tcheck3)
cbValue <- tclVar("1")
tkconfigure(tcheck3, variable=cbValue)
tkconfigure(tcheck3, state = "disabled")
tradio <- tk2radiobutton(tt, text = "Some radiobutton")
tradio2 <- tk2radiobutton(tt, text = "Disabled and checked")
tkpack(tradio, tradio2)
tkconfigure(tradio2, state = "checked")
tkconfigure(tradio2, state = "disabled")
## Menu allowing to change ttk theme
topMenu <- tkmenu(tt) # Create a menu
tkconfigure(tt, menu = topMenu) # Add it to the 'tt' window
themes <- tk2theme.list()
themeMenu <- tkmenu(topMenu, tearoff = FALSE)
if ("alt" \%in\% themes) tkadd(themeMenu, "command", label = "alt",
command = function() tk2theme("alt"))
if ("aqua" \%in\% themes) tkadd(themeMenu, "command", label = "aqua",
command = function() tk2theme("aqua"))
if ("clam" \%in\% themes) tkadd(themeMenu, "command", label = "clam",
command = function() tk2theme("clam"))
tkadd(themeMenu, "command", label = "clearlooks",
command = function() tk2theme("clearlooks"))
if ("classic" \%in\% themes) tkadd(themeMenu, "command", label = "classic",
command = function() tk2theme("classic"))
if ("default" \%in\% themes) tkadd(themeMenu, "command", label = "default",
command = function() tk2theme("default"))
tkadd(themeMenu, "command", label = "keramik",
command = function() tk2theme("keramik"))
tkadd(themeMenu, "command", label = "plastik",
command = function() tk2theme("plastik"))
tkadd(themeMenu, "command", label = "radiance (fonts change too)!",
command = function() tk2theme("radiance"))
if ("vista" \%in\% themes) tkadd(themeMenu, "command", label = "vista",
command = function() tk2theme("vista"))
if ("winnative" \%in\% themes) tkadd(themeMenu, "command", label = "winnative",
command = function() tk2theme("winnative"))
if ("xpnative" \%in\% themes) tkadd(themeMenu, "command", label = "xpnative",
command = function() tk2theme("xpnative"))
tkadd(themeMenu, "separator")
tkadd(themeMenu, "command", label = "Quit", command = function() tkdestroy(tt))
tkadd(topMenu, "cascade", label = "Theme", menu = themeMenu)
tkfocus(tt)
}
}
\keyword{ utilities }
\concept{ Tcl/Tk widgets commands }
|