getMainWindow.ggobi {Rggobi}R Documentation

Get control panel or current display widget for a GGobi instance

Description

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.

Usage

getMainWindow.ggobi(.gobi = getDefaultGGobi())

Arguments

.gobi the identifier for the GGobi instance of interest. This can be an integer or a GGobi reference object returned from ggobi.

Details

Value

A Gtk object of class GtkWindow.

Author(s)

Duncan Temple Lang

References

http://www.ggobi.org

See Also

ggobi gtkWindow gtkWidgetHide gtkWidgetShow

Examples

 o = ggobi()
 w = getMainWindow.ggobi(o)
 w$Hide()
 w$Show()

[Package Rggobi version 1.1-3 Index]