Next: , Previous: signal-info, Up: Object types information


4.6 type-signals

— Function: type-signals
     (type-signals type &key (include-inherited t)) => signals
type
A GType designator
signals
A list of signal-info structures
include-inherited
A boolean that specifies whether to include signals defined on this type or also on ancestor types.

Returns the list of signals that are available in type type.

Example:

     (type-signals "GtkLabel" :include-inherited nil)
     =>
     (#<Signal [#138] void GtkLabel.move-cursor(GtkMovementStep, gint, gboolean) [RUN-LAST, ACTION]>
      #<Signal [#139] void GtkLabel.copy-clipboard() [RUN-LAST, ACTION]>
      #<Signal [#140] void GtkLabel.populate-popup(GtkMenu) [RUN-LAST]>)