gvarbrowser {gWidgets}R Documentation

Widget for browsing environment

Description

A widget to browse the objects in the current global environment

Usage

gvarbrowser(handler = function(h, ...) {
                 values = h$obj[]
                 value = paste(values, collapse = "$")
                 if (!is.null(action))
                     print(do.call(h$action, list(svalue(value))))
                 },
                 action = "summary", container = NULL, ...,
                 toolkit = guiToolkit())

Arguments

handler Handler for double click. Default is to call value of action on the object
action Passed to handler.
container Optional container to attach widget to
... ignored
toolkit Which GUI toolkit to use

Details

There is an idle handler that updates the top-level components. However, changes are made below this, they will not be updated automatically. Rather, the user must close and expand that level.

Value

Note

Author(s)

References

See Also

Examples

## Not run: 
gvarbrowser(container=TRUE)
## End(Not run)

[Package gWidgets version 0.0-6 Index]