|
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.52">
gnome-triggersSynopsis
DescriptionThe GNOME triggers API was intended to provide a general way for the application to tell GNOME about "interesting events". Most of it is presently deprecated - at the present time, the application writer should only use gnome_triggers_do and gnome_triggers_vdo for the purpose of firing application sound events (in conjunction with .soundlist files). Please see the "GNOME configuration files" white paper for more information on .soundlist files. Detailsenum GnomeTriggerType
Deprecated. GnomeTriggerActionFunction ()
Deprecated.
struct GnomeTrigger
Deprecated. gnome_triggers_readfile ()
The file should be of the format: level section type params Where 'level' indicates the message severity at which this trigger should be activated, 'section' is a colon-separated list indicating which part of the "message classification tree" this trigger will be activated for, 'type' is either "command" (run the command specified in 'params') or 'play' (play the esd sound sample named 'params'). Deprecated.
gnome_triggers_add_trigger ()
Similar to gnome_triggers_readfile(), but gets the trigger information from the file 'nt' structure and the varargs, instead of from a file. Deprecated.
gnome_triggers_vadd_trigger ()
Similar to gnome_triggers_readfile(), but gets the trigger information from the file 'nt' structure and 'supinfo', instead of from a file. Deprecated.
gnome_triggers_do ()
Notifies GNOME about an event happening, so GNOME can do cool things. This function tells the GNOME framework that an event has occurred inside the application that GNOME might be interested in. Currently this is just used to trigger user-configurable sound events.
gnome_triggers_vdo ()
Notifies GNOME about an event happening, so GNOME can do cool things. This function is the same as gnome_triggers_do, except the supinfo is passed as an array of strings, rather than as a variable number of arguments.
|