📄 signals.sgml
字号:
<!-- ##### SECTION Title ##### -->Signals<!-- ##### SECTION Short_Description ##### -->A means for customization of object behaviour and a general purpose notification mechanism<!-- ##### SECTION Long_Description ##### --><para>The basic concept of the signal system is that of the <emphasis>emission</emphasis>of a signal.Signals are introduced per-type and are identified through strings.Signals introduced for a parent type are available in derived types as well,so basically they are a per-type facility that is inherited.A signal emission mainly involves invocation of a certain set of callbacks inprecisely defined manner. There are two main categories of such callbacks,per-object <footnote><para>Although signals can deal with any kind of instantiatable type, i'm referring to those types as "object types" in the following, simply because that is the context most users will encounter signals in. </para></footnote>ones and user provided ones.The per-object callbacks are most often referred to as "object methodhandler" or "default (signal) handler", while user provided callbacks areusually just called "signal handler".The object method handler is provided at signal creation time (this mostfrequently happens at the end of an object class' creation), while userprovided handlers are frequently connected and disconnected to/from a certainsignal on certain object instances.</para><para>A signal emission consists of five stages, unless prematurely stopped:<variablelist> <varlistentry><term></term><listitem><para> 1 - Invocation of the object method handler for %G_SIGNAL_RUN_FIRST signals </para></listitem></varlistentry> <varlistentry><term></term><listitem><para> 2 - Invocation of normal user-provided signal handlers (<emphasis>after</emphasis> flag %FALSE) </para></listitem></varlistentry> <varlistentry><term></term><listitem><para> 3 - Invocation of the object method handler for %G_SIGNAL_RUN_LAST signals </para></listitem></varlistentry> <varlistentry><term></term><listitem><para> 4 - Invocation of user provided signal handlers, connected with an <emphasis>after</emphasis> flag of %TRUE </para></listitem></varlistentry> <varlistentry><term></term><listitem><para> 5 - Invocation of the object method handler for %G_SIGNAL_RUN_CLEANUP signals </para></listitem></varlistentry></variablelist>The user-provided signal handlers are called in the order they wereconnected in.All handlers may prematurely stop a signal emission, and any number ofhandlers may be connected, disconnected, blocked or unblocked duringa signal emission.There are certain criteria for skipping user handlers in stages 2 and 4of a signal emission.First, user handlers may be <emphasis>blocked</emphasis>, blocked handlers are omittedduring callback invocation, to return from the "blocked" state, ahandler has to get unblocked exactly the same amount of timesit has been blocked before.Second, upon emission of a %G_SIGNAL_DETAILED signal, an additional"detail" argument passed in to g_signal_emit() has to match the detailargument of the signal handler currently subject to invocation.Specification of no detail argument for signal handlers (omission of thedetail part of the signal specification upon connection) serves as awildcard and matches any detail argument passed in to emission.</para><!-- ##### SECTION See_Also ##### --><para></para><!-- ##### SECTION Stability_Level ##### --><!-- ##### STRUCT GSignalInvocationHint ##### --><para>The #GSignalInvocationHint structure is used to pass on additional informationto callbacks during a signal emission.</para>@signal_id: The signal id of the signal invoking the callback@detail: The detail passed on for this emission@run_type: The stage the signal emission is currently in, this field will contain one of %G_SIGNAL_RUN_FIRST, %G_SIGNAL_RUN_LAST or %G_SIGNAL_RUN_CLEANUP.<!-- ##### USER_FUNCTION GSignalAccumulator ##### --><para>The signal accumulator is a special callback function that can be usedto collect return values of the various callbacks that are calledduring a signal emission. The signal accumulator is specified at signalcreation time, if it is left %NULL, no accumulation of callback returnvalues is performed. The return value of signal emissions is then thevalue returned by the last callback.</para>@ihint: Signal invocation hint, see #GSignalInvocationHint.@return_accu: Accumulator to collect callback return values in, this is the return value of the current signal emission.@handler_return: @data: @Returns: The accumulator function returns whether the signal emission should be aborted. Returning %FALSE means to abort the current emission and %TRUE is returned for continuation.<!-- ##### TYPEDEF GSignalCMarshaller ##### --><para>This is the signature of marshaller functions, required to marshallarrays of parameter values to signal emissions into C language callbackinvocations. It is merely an alias to #GClosureMarshal since the #GClosuremechanism takes over responsibility of actual function invocation for thesignal system.</para><!-- ##### USER_FUNCTION GSignalEmissionHook ##### --><para>A simple function pointer to get invoked when the signal is emitted. This allows you to tie a hook to the signal type, so that it will trap all emissions of that signal, from any object.</para><para>You may not attach these to signals created with the #G_SIGNAL_NO_HOOKS flag.</para>@ihint: Signal invocation hint, see #GSignalInvocationHint.@n_param_values: the number of parameters to the function, including the instance on which the signal was emitted.@param_values: the instance on which the signal was emitted, followed by the parameters of the emission.@data: user data associated with the hook.@Returns: whether it wants to stay connected. If it returns %FALSE, the signal hook is disconnected (and destroyed).<!-- ##### ENUM GSignalFlags ##### --><para>The signal flags are used to specify a signal's behaviour, the overallsignal description outlines how especially the RUN flags control thestages of a signal emission.</para>@G_SIGNAL_RUN_FIRST: Invoke the object method handler in the first emission stage.@G_SIGNAL_RUN_LAST: Invoke the object method handler in the third emission stage.@G_SIGNAL_RUN_CLEANUP: Invoke the object method handler in the last emission stage.@G_SIGNAL_NO_RECURSE: Signals being emitted for an object while currently being in emission for this very object will not be emitted recursively, but instead cause the first emission to be restarted.@G_SIGNAL_DETAILED: This signal supports "::detail" appendices to the signal name upon handler connections and emissions.@G_SIGNAL_ACTION: Action signals are signals that may freely be emitted on alive objects from user code via g_signal_emit() and friends, without the need of being embedded into extra code that performs pre or post emission adjustments on the object. They can also be thought of as object methods which can be called generically by third-party code.@G_SIGNAL_NO_HOOKS: No emissions hooks are supported for this signal.<!-- ##### ENUM GSignalMatchType ##### --><para>The match types specify what g_signal_handlers_block_matched(),g_signal_handlers_unblock_matched() and g_signal_handlers_disconnect_matched()match signals by.</para>@G_SIGNAL_MATCH_ID: The signal id must be equal.@G_SIGNAL_MATCH_DETAIL: The signal detail be equal.@G_SIGNAL_MATCH_CLOSURE: The closure must be the same.@G_SIGNAL_MATCH_FUNC: The C closure callback must be the same.@G_SIGNAL_MATCH_DATA: The closure data must be the same.@G_SIGNAL_MATCH_UNBLOCKED: Only unblocked signals may matched.<!-- ##### STRUCT GSignalQuery ##### --><para>A structure holding in-depth information for a specific signal. It isfilled in by the g_signal_query() function.</para>@signal_id: The signal id of the signal being queried, or 0 if the signal to be queried was unknown.@signal_name: The signal name.@itype: The interface/instance type that this signal can be emitted for.@signal_flags: The signal flags as passed in to g_signal_new().@return_type: The return type for user callbacks.@n_params: The number of parameters that user callbacks take.@param_types: The individual parameter types for user callbacks, note that the effective callback signature is:<programlisting>@return_type callback (#gpointer data1, [#param_types param_names,] #gpointer data2);</programlisting><!-- ##### MACRO G_SIGNAL_TYPE_STATIC_SCOPE ##### --><para>This macro flags signal argument types for which the signal system may assume that instances thereof remain persistent across all signal emissionsthey are used in. This is only useful for non ref-counted, value-copy types.</para><para>To flag a signal argument in this way, add <literal>| G_SIGNAL_TYPE_STATIC_SCOPE</literal> to the corresponding argumentof g_signal_new().</para><informalexample><programlisting> g_signal_new ("size_request", G_TYPE_FROM_CLASS (gobject_class), G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (GtkWidgetClass, size_request), NULL, NULL, _gtk_marshal_VOID__BOXED, G_TYPE_NONE, 1, GTK_TYPE_REQUISITION | G_SIGNAL_TYPE_STATIC_SCOPE);</programlisting></informalexample><!-- ##### MACRO G_SIGNAL_MATCH_MASK ##### --><para>A mask for all #GSignalMatchType bits.</para><!-- ##### MACRO G_SIGNAL_FLAGS_MASK ##### --><para>A mask for all #GSignalFlags bits.</para><!-- ##### FUNCTION g_signal_new ##### --><para>Creates a new signal. (This is usually done in the class initializer.)</para><para>A signal name consists of segments consisting of ASCII letters anddigits, separated by either the '-' or '_' character. The firstcharacter of a signal name must be a letter. Names which violate theserules lead to undefined behaviour of the GSignal system. </para><para>When registering a signal and looking up a signal, either separator canbe used, but they cannot be mixed. </para>@signal_name: the name for the signal@itype: the type this signal pertains to. It will also pertain to types which are derived from this type.@signal_flags: a combination of #GSignalFlags specifying detail of when the default handler is to be invoked. You should at least specify %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST.@class_offset: The offset of the function pointer in the class structure for this type. Used to invoke a class method generically.@accumulator: the accumulator for this signal; may be %NULL.@accu_data: user data for the @accumulator.@c_marshaller: the function to translate arrays of parameter values to signal emissions into C language callback invocations.@return_type: the type of return value, or #G_TYPE_NONE for a signal without a return value.@n_params: the number of parameter types to follow.@Varargs: a list of types, one for each parameter.@Returns: the signal id<!-- ##### FUNCTION g_signal_newv ##### --><para>Creates a new signal. (This is usually done in the class initializer.)</para><para>See g_signal_new() for details on allowed signal names.</para>@signal_name: the name for the signal@itype: the type this signal pertains to. It will also pertain to types which are derived from this type.@signal_flags: a combination of #GSignalFlags specifying detail of when the default handler is to be invoked. You should at least specify %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST.@class_closure: The closure to invoke on signal emission.@accumulator: the accumulator for this signal; may be %NULL.@accu_data: user data for the @accumulator.@c_marshaller: the function to translate arrays of parameter values to signal emissions into C language callback invocations.@return_type: the type of return value, or #G_TYPE_NONE for a signal without a return value.@n_params: the length of @param_types.@param_types: an array types, one for each parameter.@Returns: the signal id<!-- ##### FUNCTION g_signal_new_valist ##### --><para>Creates a new signal. (This is usually done in the class initializer.)</para><para>See g_signal_new() for details on allowed signal names.</para>@signal_name: the name for the signal@itype: the type this signal pertains to. It will also pertain to types which are derived from this type.@signal_flags: a combination of #GSignalFlags specifying detail of when the default handler is to be invoked. You should at least specify %G_SIGNAL_RUN_FIRST or %G_SIGNAL_RUN_LAST.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -