diff options
author | Jonathan Blandford <jrb@redhat.com> | 2001-04-02 20:56:55 +0000 |
---|---|---|
committer | Jonathan Blandford <jrb@src.gnome.org> | 2001-04-02 20:56:55 +0000 |
commit | 29985af0fa06d7db2de812dcc8e0653bd70b1936 (patch) | |
tree | e388c8a54467b65d4144b5e34a5c27e10d0311c0 /docs | |
parent | ea78922f17d08929bb046aa743b69cfdbde705a9 (diff) | |
download | gtk+-29985af0fa06d7db2de812dcc8e0653bd70b1936.tar.gz |
BOXED,BOXED,BOXED,BOXED): new marshaller.
Mon Apr 2 16:56:15 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkmarshal.list (VOID:BOXED,BOXED,BOXED,BOXED): new
marshaller.
* gtk/gtktreemodel.c (gtk_tree_model_range_changed): change
"changed" signal to "range_changed".
* gtk/gtktreeview.c (gtk_tree_view_set_model): fix small bug where
removing a tree from one model would remove all trees from that
model.
* gtk/gtktreeview.c (gtk_tree_view_range_changed): use range
changed signal instead.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/reference/gtk/gtk.hierarchy | 1 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtk-unused.sgml | 8 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtkrc.sgml | 1 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtksignal.sgml | 165 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtktypeutils.sgml | 20 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtkwidget.sgml | 8 |
6 files changed, 106 insertions, 97 deletions
diff --git a/docs/reference/gtk/gtk.hierarchy b/docs/reference/gtk/gtk.hierarchy index 4655ff729f..601aa73ff2 100644 --- a/docs/reference/gtk/gtk.hierarchy +++ b/docs/reference/gtk/gtk.hierarchy @@ -6,6 +6,7 @@ GObject GdkPixmap GdkColormap GtkSettings + GtkRcStyle GtkObject GtkWidget GtkMisc diff --git a/docs/reference/gtk/tmpl/gtk-unused.sgml b/docs/reference/gtk/tmpl/gtk-unused.sgml index a198a0c11e..353c586d4d 100644 --- a/docs/reference/gtk/tmpl/gtk-unused.sgml +++ b/docs/reference/gtk/tmpl/gtk-unused.sgml @@ -756,6 +756,14 @@ produce superscript and subscript. @widget: the object which received the signal. +<!-- ##### SIGNAL GtkWidget::size-request ##### --> +<para> + +</para> + +@widget: the object which received the signal. +@requisition: + <!-- ##### FUNCTION gtk_button_box_child_requisition ##### --> <para>
This is an internally used function and should never be called from an
diff --git a/docs/reference/gtk/tmpl/gtkrc.sgml b/docs/reference/gtk/tmpl/gtkrc.sgml index 041bbddd55..fe52fbe8a2 100644 --- a/docs/reference/gtk/tmpl/gtkrc.sgml +++ b/docs/reference/gtk/tmpl/gtkrc.sgml @@ -496,7 +496,6 @@ This can later be composited together with other #GtkRcStyle structures to form a #GtkStyle. </para> -@parent_instance: @name: @bg_pixmap_name: @font_desc: diff --git a/docs/reference/gtk/tmpl/gtksignal.sgml b/docs/reference/gtk/tmpl/gtksignal.sgml index 1a5a4f3e27..1bb805c8ba 100644 --- a/docs/reference/gtk/tmpl/gtksignal.sgml +++ b/docs/reference/gtk/tmpl/gtksignal.sgml @@ -289,7 +289,7 @@ you don't want a return value. the callbacks. -<!-- ##### FUNCTION gtk_signal_lookup ##### --> +<!-- ##### MACRO gtk_signal_lookup ##### --> <para> Given the name of the signal and the type of object it connects to, get the signal's identifying integer. Emitting the signal @@ -299,12 +299,13 @@ by number is somewhat faster than using the name each time. It also tries the ancestors of the given type. </para> +@Returns: the signal's identifying number, or 0 if no signal was found. +<!-- # Unused Parameters # --> @name: the signal's name, e.g. clicked. @object_type: the type that the signal operates on, e.g. #GTK_TYPE_BUTTON. -@Returns: the signal's identifying number, or 0 if no signal was found. -<!-- ##### FUNCTION gtk_signal_name ##### --> +<!-- ##### MACRO gtk_signal_name ##### --> <para> Given the signal's identifier, find its name. </para> @@ -312,8 +313,9 @@ Given the signal's identifier, find its name. Two different signals may have the same name, if they have differing types. </para> -@signal_id: the signal's identifying number. @Returns: the signal name, or NULL if the signal number was invalid. +<!-- # Unused Parameters # --> +@signal_id: the signal's identifying number. <!-- ##### FUNCTION gtk_signal_emit ##### --> @@ -381,7 +383,7 @@ an array of GtkArgs instead of using C's varargs mechanism. followed by one which is a pointer to the return type. -<!-- ##### FUNCTION gtk_signal_emit_stop ##### --> +<!-- ##### MACRO gtk_signal_emit_stop ##### --> <para> This function aborts a signal's current emission. </para> @@ -395,11 +397,11 @@ It will print a warning if used on a signal which isn't being emitted. </para> -@object: the object whose signal handlers you wish to stop. -@signal_id: the signal identifier, as returned by gtk_signal_lookup(). -<!-- # Unused Parameters # --> @i: @s: +<!-- # Unused Parameters # --> +@object: the object whose signal handlers you wish to stop. +@signal_id: the signal identifier, as returned by gtk_signal_lookup(). <!-- ##### FUNCTION gtk_signal_emit_stop_by_name ##### --> @@ -415,7 +417,7 @@ except it will lookup the signal id for you. @name: the name of the signal you wish to stop. -<!-- ##### FUNCTION gtk_signal_connect ##### --> +<!-- ##### MACRO gtk_signal_connect ##### --> <para> Attach a function pointer and user data to a signal for a particular object. @@ -454,38 +456,38 @@ static void attach_print_signal(GtkButton* button, gint to_print) </programlisting> </informalexample> +@o: +@s: +@f: +@d: +@Returns: the connection id. +<!-- # Unused Parameters # --> @object: the object associated with the signal, e.g. if a button is getting pressed, this is that button. @name: name of the signal. @func: function pointer to attach to the signal. @func_data: value to pass as to your function (through the marshaller). -@Returns: the connection id. -<!-- # Unused Parameters # --> -@o: -@s: -@f: -@d: -<!-- ##### FUNCTION gtk_signal_connect_after ##### --> +<!-- ##### MACRO gtk_signal_connect_after ##### --> <para> Attach a function pointer and user data to a signal so that this handler will be called after the other handlers. </para> -@object: the object associated with the signal. -@name: name of the signal. -@func: function pointer to attach to the signal. -@func_data: value to pass as to your function (through the marshaller). -@Returns: the unique identifier for this attachment: the connection id. -<!-- # Unused Parameters # --> @o: @s: @f: @d: +@Returns: the unique identifier for this attachment: the connection id. +<!-- # Unused Parameters # --> +@object: the object associated with the signal. +@name: name of the signal. +@func: function pointer to attach to the signal. +@func_data: value to pass as to your function (through the marshaller). -<!-- ##### FUNCTION gtk_signal_connect_object ##### --> +<!-- ##### MACRO gtk_signal_connect_object ##### --> <para> This function is for registering a callback that will call another object's callback. That is, @@ -506,21 +508,21 @@ gtk_signal_connect_object(button, "clicked", gtk_widget_show, window); </programlisting> </informalexample> +@o: +@s: +@f: +@d: +@Returns: the connection id. +<!-- # Unused Parameters # --> @object: the object which emits the signal. @name: the name of the signal. @func: the function to callback. @slot_object: the object to pass as the first parameter to func. (Though it pretends to take an object, you can really pass any gpointer as the #slot_object .) -@Returns: the connection id. -<!-- # Unused Parameters # --> -@o: -@s: -@f: -@d: -<!-- ##### FUNCTION gtk_signal_connect_object_after ##### --> +<!-- ##### MACRO gtk_signal_connect_object_after ##### --> <para> Attach a signal hook to a signal, passing in an alternate object as the first parameter, and guaranteeing @@ -528,16 +530,16 @@ that the default handler and all normal handlers are called first. </para> -@object: the object associated with the signal. -@name: name of the signal. -@func: function pointer to attach to the signal. -@slot_object: the object to pass as the first parameter to #func. -@Returns: the connection id. -<!-- # Unused Parameters # --> @o: @s: @f: @d: +@Returns: the connection id. +<!-- # Unused Parameters # --> +@object: the object associated with the signal. +@name: name of the signal. +@func: function pointer to attach to the signal. +@slot_object: the object to pass as the first parameter to #func. <!-- ##### FUNCTION gtk_signal_connect_full ##### --> @@ -626,95 +628,98 @@ should signal the removal of this signal. @name: name of the signal. -<!-- ##### FUNCTION gtk_signal_disconnect ##### --> +<!-- ##### MACRO gtk_signal_disconnect ##### --> <para> Destroy a user-defined handler connection. </para> +<!-- # Unused Parameters # --> @object: the object which the handler pertains to. @handler_id: the connection id. -<!-- ##### FUNCTION gtk_signal_disconnect_by_func ##### --> +<!-- ##### MACRO gtk_signal_disconnect_by_func ##### --> <para> Destroy all connections for a particular object, with the given function-pointer and user-data. </para> -@object: the object which emits the signal. -@func: the function pointer to search for. -@data: the user data to search for. -<!-- # Unused Parameters # --> @o: @f: @d: +<!-- # Unused Parameters # --> +@object: the object which emits the signal. +@func: the function pointer to search for. +@data: the user data to search for. -<!-- ##### FUNCTION gtk_signal_disconnect_by_data ##### --> +<!-- ##### MACRO gtk_signal_disconnect_by_data ##### --> <para> Destroy all connections for a particular object, with the given user-data. </para> -@object: the object which emits the signal. -@data: the user data to search for. -<!-- # Unused Parameters # --> @o: @d: +<!-- # Unused Parameters # --> +@object: the object which emits the signal. +@data: the user data to search for. -<!-- ##### FUNCTION gtk_signal_handler_block ##### --> +<!-- ##### MACRO gtk_signal_handler_block ##### --> <para> Prevent an user-defined handler from being invoked. All other signal processing will go on as normal, but this particular handler will ignore it. </para> +<!-- # Unused Parameters # --> @object: the object which emits the signal to block. @handler_id: the connection id. -<!-- ##### FUNCTION gtk_signal_handler_block_by_func ##### --> +<!-- ##### MACRO gtk_signal_handler_block_by_func ##### --> <para> Prevent a user-defined handler from being invoked, by reference to the user-defined handler's function pointer and user data. (It may result in multiple hooks being blocked, if you've called connect multiple times.) </para> -@object: the object which emits the signal to block. -@func: the function pointer of the handler to block. -@data: the user data of the handler to block. -<!-- # Unused Parameters # --> @o: @f: @d: +<!-- # Unused Parameters # --> +@object: the object which emits the signal to block. +@func: the function pointer of the handler to block. +@data: the user data of the handler to block. -<!-- ##### FUNCTION gtk_signal_handler_block_by_data ##### --> +<!-- ##### MACRO gtk_signal_handler_block_by_data ##### --> <para> Prevent all user-defined handlers with a certain user data from being invoked. </para> -@object: the object which emits the signal we want to block. -@data: the user data of the handlers to block. -<!-- # Unused Parameters # --> @o: @d: +<!-- # Unused Parameters # --> +@object: the object which emits the signal we want to block. +@data: the user data of the handlers to block. -<!-- ##### FUNCTION gtk_signal_handler_unblock ##### --> +<!-- ##### MACRO gtk_signal_handler_unblock ##### --> <para> Undo a block, by connection id. Note that undoing a block doesn't necessarily make the hook callable, because if you block a hook twice, you must unblock it twice. </para> +<!-- # Unused Parameters # --> @object: the object which emits the signal we want to unblock. @handler_id: the emission handler identifier, as returned by gtk_signal_connect(), etc. -<!-- ##### FUNCTION gtk_signal_handler_unblock_by_func ##### --> +<!-- ##### MACRO gtk_signal_handler_unblock_by_func ##### --> <para> Undo a block, by function pointer and data. Note that undoing a block doesn't @@ -722,29 +727,29 @@ necessarily make the hook callable, because if you block a hook twice, you must unblock it twice. </para> -@object: the object which emits the signal we want to unblock. -@func: the function pointer to search for. -@data: the user data to search for. -<!-- # Unused Parameters # --> @o: @f: @d: +<!-- # Unused Parameters # --> +@object: the object which emits the signal we want to unblock. +@func: the function pointer to search for. +@data: the user data to search for. -<!-- ##### FUNCTION gtk_signal_handler_unblock_by_data ##### --> +<!-- ##### MACRO gtk_signal_handler_unblock_by_data ##### --> <para> Undo block(s), to all signals for a particular object with a particular user-data pointer </para> -@object: the object which emits the signal we want to unblock. -@data: the user data to search for. -<!-- # Unused Parameters # --> @o: @d: +<!-- # Unused Parameters # --> +@object: the object which emits the signal we want to unblock. +@data: the user data to search for. -<!-- ##### FUNCTION gtk_signal_handler_pending ##### --> +<!-- ##### MACRO gtk_signal_handler_pending ##### --> <para> Returns a connection id corresponding to a given signal id and object. </para> @@ -755,36 +760,36 @@ may opt to not emit the signal if no one is attached anyway, thus saving the cost of building the arguments. </para> +@i: +@s: +@b: +@Returns: the connection id, if a connection was found. 0 otherwise. +<!-- # Unused Parameters # --> @object: the object to search for the desired user-defined handler. @signal_id: the number of the signal to search for. @may_be_blocked: whether it is acceptable to return a blocked handler. -@Returns: the connection id, if a connection was found. 0 otherwise. -<!-- # Unused Parameters # --> -@i: -@s: -@b: -<!-- ##### FUNCTION gtk_signal_handler_pending_by_func ##### --> +<!-- ##### MACRO gtk_signal_handler_pending_by_func ##### --> <para> Returns a connection id corresponding to a given signal id, object, function pointer and user data. </para> +@o: +@s: +@b: +@f: +@d: +@Returns: the connection id, if a handler was found. 0 otherwise. +<!-- # Unused Parameters # --> @object: the object to search for the desired handler. @signal_id: the number of the signal to search for. @may_be_blocked: whether it is acceptable to return a blocked handler. @func: the function pointer to search for. @data: the user data to search for. -@Returns: the connection id, if a handler was found. 0 otherwise. -<!-- # Unused Parameters # --> -@o: -@s: -@b: -@f: -@d: <!-- ##### MACRO gtk_signal_default_marshaller ##### --> diff --git a/docs/reference/gtk/tmpl/gtktypeutils.sgml b/docs/reference/gtk/tmpl/gtktypeutils.sgml index 6295e2dfa1..16a7e543fe 100644 --- a/docs/reference/gtk/tmpl/gtktypeutils.sgml +++ b/docs/reference/gtk/tmpl/gtktypeutils.sgml @@ -560,30 +560,33 @@ Create a new, unique type. @type_info: must not be null, and @type_info->type_name must also not be null. -<!-- ##### FUNCTION gtk_type_name ##### --> +<!-- ##### MACRO gtk_type_name ##### --> <para> </para> -@type: a GtkType @Returns: a pointer to the name of a type, or NULL if it has none. +<!-- # Unused Parameters # --> +@type: a GtkType -<!-- ##### FUNCTION gtk_type_from_name ##### --> +<!-- ##### MACRO gtk_type_from_name ##### --> <para> Get the internal representation of a type given its name. </para> -@name: the name of a gtk type @Returns: a GtkType +<!-- # Unused Parameters # --> +@name: the name of a gtk type -<!-- ##### FUNCTION gtk_type_parent ##### --> +<!-- ##### MACRO gtk_type_parent ##### --> <para> </para> -@type: a GtkType @Returns: the GtkType of the parent +<!-- # Unused Parameters # --> +@type: a GtkType <!-- ##### FUNCTION gtk_type_class ##### --> @@ -608,15 +611,16 @@ has all the proper initializers called. @Returns: gpointer to a GtkTypeObject -<!-- ##### FUNCTION gtk_type_is_a ##### --> +<!-- ##### MACRO gtk_type_is_a ##### --> <para> Look in the type hierarchy to see if @type has @is_a_type among its ancestors. Do so with a simple lookup, not a loop. </para> +@Returns: +<!-- # Unused Parameters # --> @type: GtkType @is_a_type: GtkType -@Returns: <!-- ##### FUNCTION gtk_type_enum_get_values ##### --> diff --git a/docs/reference/gtk/tmpl/gtkwidget.sgml b/docs/reference/gtk/tmpl/gtkwidget.sgml index 28ac76363e..b6cd2b3ea0 100644 --- a/docs/reference/gtk/tmpl/gtkwidget.sgml +++ b/docs/reference/gtk/tmpl/gtkwidget.sgml @@ -1736,14 +1736,6 @@ a widget changes from un-anchored to anchored or vice-versa. @widget: the object which received the signal. @allocation: -<!-- ##### SIGNAL GtkWidget::size-request ##### --> -<para> - -</para> - -@widget: the object which received the signal. -@requisition: - <!-- ##### SIGNAL GtkWidget::state-changed ##### --> <para> |