getSignalInfo {RGtk}R Documentation

Information for all signals for multiple classes

Description

This retrieves the signal information for all of the signals defined for each of the classes specified by classes. This is just a convenient front-end to gtkSignalGetInfo for a large number of signals.

Usage

getSignalInfo(classes=.GtkClasses, load=TRUE)

Arguments

classes a character vector containing the names of different Gtk classes/types
load a logical value indicating whether to force the initialization of the different classes before asking for their signals. The class must be initialized for the information to be available. If an instance of the class has been created or the C routine gtk_<type>_get_type has been called (directly or indirectly), the class has been initialized.

Value

A list with elements for each of the classes. Each element is itself a list with an element for each of the signals defined for that class. Each element within this list is the value returned from gtkSignalGetInfo

Author(s)

Duncan Temple Lang <duncan@research.bell-labs.com>

References

Information on the package is available from http://www.omegahat.org/RGtk.

Information on Gtk is available from http://www.gtk.org.

See Also

gtkSignalGetInfo

Examples

 gtkInit()
 .C("gtk_button_get_type", PACKAGE = "RGtk")
 getSignalInfo("GtkButton")

[Package RGtk version 0.7-0 Index]