Lines Matching full:link
312 No object reference will be returned to the client of <function><link linkend="g-object-new">g_object_new</link></function>
337 <type><link linkend="GParamSpec">GParamSpec</link></type> by setting the param spec's flag field to G_PARAM_CONSTRUCT_ONLY: this helps
361 afterwards and make sure that if your users do not call <function><link linkend="g-object-new">g_object_new</link></function>
387 <function><link linkend="g-object-unref">g_object_unref</link></function>
750 <para>The function <function><link linkend="g-type-class-peek-parent">g_type_class_peek_parent</link></function> is used to access the original parent
818 This code is the same as the code for a normal <type><link linkend="GType">GType</link></type>
819 which derives from a <type><link linkend="GObject">GObject</link></type> except for a few details:
823 and not implemented with <function><link linkend="G_TYPE_INSTANCE_GET_CLASS">G_TYPE_INSTANCE_GET_CLASS</link></function>
824 but with <function><link linkend="G_TYPE_INSTANCE_GET_INTERFACE">G_TYPE_INSTANCE_GET_INTERFACE</link></function>.
1073 <function><link linkend="g-type-add-interface-static">g_type_add_interface_static</link></function>,
1088 except that <function><link linkend="g-object-interface-install-property">g_object_interface_install_property</link></function> is used to
1089 declare the properties instead of <function><link linkend="g-object-class-install-property">g_object_class_install_property</link></function>.
1104 The <function><link linkend="g-object-interface-install-property">g_object_interface_install_property</link></function>
1142 implements using <function><link linkend="g-object-class-override-property">g_object_class_override_property</link></function>
1143 instead of <function><link linkend="g-object-class-install-property">g_object_class_install_property</link></function>.
1412 RUN_LAST phase of the signal emission, it will run after all handlers connected with <function><link linkend="g-signal-connect">g_signal_connect</link></function>
1413 and before all handlers connected with <function><link linkend="g-signal-connect-after">g_signal_connect_after</link></function>. If you intent to write a GObject
1491 a closure by hand and to use the <function><link linkend="g-signal-newv">g_signal_newv</link></function>.
1494 <para>For example, <function><link linkend="g-signal-new">g_signal_new</link></function> can be used to create a signal which uses a default
1497 the user is expected to provide to <function><link linkend="g-signal-new">g_signal_new</link></function> the offset from the start of the
1531 Finally, the signal is created with <function><link linkend="g-signal-new">g_signal_new</link></function> in the same class_init function:
1546 Of note, here, is the 4th argument to the function: it is an integer calculated by the <function><link linkend="G-STRUCT-OFFSET">G_STRUCT_OFFSET</link></function>
1567 involves <function><link linkend="g-signal-new">g_signal_new</link></function> rather than <function><link linkend="g-signal-newv">g_signal_newv</link></function>:
1587 the signal emission process thanks to <function><link linkend="g-signal-connect">g_signal_connect</link></function>,
1588 <function><link linkend="g-signal-connect-after">g_signal_connect_after</link></function> and G_SIGNAL_RUN_LAST, it is time to look into how your
1613 you can call <function><link linkend="g-signal-stop-by-name">g_signal_stop_by_name</link></function>. Its use is very simple which is why I won't detail
1647 Usually, the <function><link linkend="g-signal-new">g_signal_new</link></function> function is preferred over
1648 <function><link linkend="g-signal-newv">g_signal_newv</link></function>. When <function><link linkend="g-signal-new">g_signal_new</link></function>
1650 <filename>gobject.h</filename> contains the declaration of <type><link linkend="GObjectClass">GObjectClass</link></type>
1668 <filename>gobject.c</filename>'s <function><link linkend="g-object-do-class-init">g_object_do_class_init</link></function> function
1691 <function><link linkend="g-signal-new">g_signal_new</link></function> creates a <type><link linkend="GClosure">GClosure</link></type> which dereferences the