getMainWindow.ggobi {Rggobi} | R Documentation |
getMainWindow.ggobi
allows one to get access to the GtkWindow
object that is the top-level control panel window for a
GGobi instance. This can be used to navigate the widget hierarchy
and add or remove elements such as menus.
Additionally, one can use this to simply hide the window
programmatically which can be useful in the case that one is
creating a customized GUI with GGobi displays embedded within it.
getCurrentDisplay.ggobi
returns the R-level
representation of the Gtk object representing the
current display in the specified GGobi.
getMainWindow.ggobi(.gobi = getDefaultGGobi())
.gobi |
the identifier for the GGobi instance of interest.
This can be an integer or a GGobi reference object returned from
ggobi . |
A Gtk object of class GtkWindow
.
Duncan Temple Lang
ggobi
gtkWindow
gtkWidgetHide
gtkWidgetShow
o = ggobi() w = getMainWindow.ggobi(o) w$Hide() w$Show()