.GtkCall {RGtk} | R Documentation |
This is a wrapper for the general .Call
that adds an optional call to gdkFlush
at the end to flush all of the Gdk and Gtk events
to update the display, etc.
.GtkCall(name, ..., .flush=TRUE)
name |
the name of the native C routine to call. |
... |
the arguments to pass to the C routine.
These can contain the specific named arguments
for .Call such as PACKAGE
and DUP . |
.flush |
a logical value indicating whether to call
gdkFlush after the .Call
returns. |
The value returned by the actual call to .Call
.
Duncan Temple Lang <duncan@research.bell-labs.com>