The R Project SVN R

Rev

Rev 61433 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
42333 ripley 1
% File src/library/tcltk/man/tkStartGUI.Rd
68948 ripley 2
% Part of the R package, https://www.R-project.org
59039 ripley 3
% Copyright 1995-2007 R Core Team
42333 ripley 4
% Distributed under GPL 2 or later
5
 
23763 pd 6
\name{tkStartGUI}
56186 murdoch 7
\alias{tkStartGUI}
23763 pd 8
\title{Tcl/Tk GUI startup}
9
\description{
10
  Starts up the Tcl/Tk GUI
11
}
12
\usage{
13
tkStartGUI()
14
}
15
\details{
16
  Starts a GUI console implemented via a Tk text widget. This should
17
  probably be called at most once per session. Also redefines the file
61433 ripley 18
  pager (as used by \code{help()}) to be the Tk pager.
23763 pd 19
}
20
\author{Peter Dalgaard}
40375 ripley 21
\note{
22
#ifdef windows
23
  This function is not usable under Windows.
24
 
25
#endif
26
  \code{tkStartGUI()} saves its evaluation environment as
23763 pd 27
  \code{.GUIenv}. This means that the user interface elements can be
28
  accessed in order to extend the interface. The three main objects are
29
  named \code{Term}, \code{Menu}, and \code{Toolbar}, and the various
30
  submenus and callback functions can be seen with
61162 ripley 31
  \code{ls(envir = .GUIenv)}.
40375 ripley 32
}
23763 pd 33
 
61433 ripley 34
 
23763 pd 35
\keyword{misc}