Updates.
* gtk/gtk-sections.txt, gtk/tmpl/gtkspinbutton.sgml, gtk/tmpl/gtkseparatormenuitem.sgml, gtk/tmpl/gtknotebook.sgml, gtk/tmpl/gtkstatusbar.sgml, gtk/tmpl/gtkradiobutton.sgml, gtk/tmpl/gtkradiomenuitem.sgml: Updates. * gdk-pixbuf/gdk-pixbuf-sections.txt, gdk-pixbuf/tmpl/gdk-pixbuf.sgml: Follow recent API changes.
This commit is contained in:
parent
0f05628cb3
commit
82a3cc699d
@ -1,3 +1,13 @@
|
||||
2001-10-10 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* gtk/gtk-sections.txt, gtk/tmpl/gtkspinbutton.sgml,
|
||||
gtk/tmpl/gtkseparatormenuitem.sgml, gtk/tmpl/gtknotebook.sgml,
|
||||
gtk/tmpl/gtkstatusbar.sgml, gtk/tmpl/gtkradiobutton.sgml,
|
||||
gtk/tmpl/gtkradiomenuitem.sgml: Updates.
|
||||
|
||||
* gdk-pixbuf/gdk-pixbuf-sections.txt,
|
||||
gdk-pixbuf/tmpl/gdk-pixbuf.sgml: Follow recent API changes.
|
||||
|
||||
2001-10-10 Matthias Clasen <matthiasc@poet.de>
|
||||
|
||||
* gtk/tmpl/gtkcalendar.sgml, gtk/tmpl/gtkeditable.sgml: Update.
|
||||
|
@ -69,7 +69,7 @@ gdk_pixbuf_save
|
||||
gdk_pixbuf_new
|
||||
gdk_pixbuf_new_from_data
|
||||
gdk_pixbuf_new_from_xpm_data
|
||||
gdk_pixbuf_new_from_stream
|
||||
gdk_pixbuf_new_from_inline
|
||||
gdk_pixbuf_new_subpixbuf
|
||||
gdk_pixbuf_copy
|
||||
</SECTION>
|
||||
|
@ -22,9 +22,6 @@ operations can cause errors in this domain, or in the #G_FILE_ERROR
|
||||
domain.
|
||||
</para>
|
||||
|
||||
@GDK_PIXBUF_ERROR_HEADER_CORRUPT:
|
||||
@GDK_PIXBUF_ERROR_PIXEL_CORRUPT:
|
||||
@GDK_PIXBUF_ERROR_UNKNOWN_FORMAT:
|
||||
@GDK_PIXBUF_ERROR_CORRUPT_IMAGE: An image file was broken somehow.
|
||||
@GDK_PIXBUF_ERROR_INSUFFICIENT_MEMORY: Not enough memory.
|
||||
@GDK_PIXBUF_ERROR_BAD_OPTION: A bad option was passed to a pixbuf save module.
|
||||
|
@ -1945,9 +1945,9 @@ GTK_SEPARATOR_GET_CLASS
|
||||
<FILE>gtkseparatormenuitem</FILE>
|
||||
<TITLE>GtkSeparatorMenuItem</TITLE>
|
||||
GtkSeparatorMenuItem
|
||||
GtkSeparatorMenuItemClass
|
||||
gtk_separator_menu_item_new
|
||||
<SUBSECTION Standard>
|
||||
GtkSeparatorMenuItemClass
|
||||
GTK_SEPARATOR_MENU_ITEM
|
||||
GTK_SEPARATOR_MENU_ITEM_CLASS
|
||||
GTK_SEPARATOR_MENU_ITEM_GET_CLASS
|
||||
@ -2732,8 +2732,10 @@ gtk_tree_selection_get_selected
|
||||
gtk_tree_selection_selected_foreach
|
||||
gtk_tree_selection_select_path
|
||||
gtk_tree_selection_unselect_path
|
||||
gtk_tree_selection_path_is_selected
|
||||
gtk_tree_selection_select_iter
|
||||
gtk_tree_selection_unselect_iter
|
||||
gtk_tree_selection_iter_is_selected
|
||||
gtk_tree_selection_select_all
|
||||
gtk_tree_selection_unselect_all
|
||||
gtk_tree_selection_select_range
|
||||
|
@ -118,7 +118,8 @@ The #GtkNotebookPage is an opaque implementation detail of #GtkNotebook.
|
||||
|
||||
<!-- ##### MACRO gtk_notebook_current_page ##### -->
|
||||
<para>
|
||||
Deprecated compatibility macro.
|
||||
Deprecated compatibility macro. Use
|
||||
gtk_notebook_get_current_page() instead.
|
||||
</para>
|
||||
|
||||
|
||||
@ -134,7 +135,8 @@ Deprecated compatibility macro.
|
||||
|
||||
<!-- ##### MACRO gtk_notebook_set_page ##### -->
|
||||
<para>
|
||||
|
||||
Deprecated compatibility macro. Use
|
||||
gtk_notebook_set_current_page() instead.
|
||||
</para>
|
||||
|
||||
|
||||
|
@ -151,14 +151,9 @@ as @group.
|
||||
|
||||
<!-- ##### MACRO gtk_radio_button_group ##### -->
|
||||
<para>
|
||||
Retrieves the group assigned to a radio button.
|
||||
Deprecated compatibility macro. Use gtk_radio_button_get_group() instead.
|
||||
</para>
|
||||
|
||||
@Returns: a linked list containing all the radio buttons in the same group
|
||||
as @radio_button.
|
||||
<!-- # Unused Parameters # -->
|
||||
@radio_button: a #GtkRadioButton.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_radio_button_set_group ##### -->
|
||||
<para>
|
||||
@ -170,16 +165,17 @@ changes.
|
||||
|
||||
@radio_button: a #GtkRadioButton.
|
||||
@group: an existing radio button group, such as one returned from
|
||||
gtk_radio_button_group().
|
||||
gtk_radio_button_get_group().
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_radio_button_get_group ##### -->
|
||||
<para>
|
||||
|
||||
Retrieves the group assigned to a radio button.
|
||||
</para>
|
||||
|
||||
@radio_button:
|
||||
@Returns:
|
||||
@radio_button: a #GtkRadioButton.
|
||||
@Returns: a linked list containing all the radio buttons in the same group
|
||||
as @radio_button.
|
||||
|
||||
|
||||
<!-- ##### ARG GtkRadioButton:group ##### -->
|
||||
|
@ -82,30 +82,24 @@ Creates a new #GtkRadioMenuItem whose child is a simple #GtkLabel.
|
||||
|
||||
<!-- ##### MACRO gtk_radio_menu_item_group ##### -->
|
||||
<para>
|
||||
Returns the group to which the radio menu item belongs, as a #GList of
|
||||
#GtkRadioMenuItem. The list belongs to GTK+ and should not be freed.
|
||||
Deprecated compatibility macro. Use gtk_radio_menu_item_get_group() instead.
|
||||
</para>
|
||||
|
||||
@Returns: its group
|
||||
<!-- # Unused Parameters # -->
|
||||
@radio_menu_item: the radio menu item
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_radio_menu_item_set_group ##### -->
|
||||
<para>
|
||||
Sets the group of a radio menu item, or changes it.
|
||||
</para>
|
||||
|
||||
@radio_menu_item: the radio menu item
|
||||
@group: the new group
|
||||
@radio_menu_item: a #GtkRadioMenuItem.
|
||||
@group: the new group.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_radio_menu_item_get_group ##### -->
|
||||
<para>
|
||||
|
||||
Returns the group to which the radio menu item belongs, as a #GList of
|
||||
#GtkRadioMenuItem. The list belongs to GTK+ and should not be freed.
|
||||
</para>
|
||||
|
||||
@radio_menu_item:
|
||||
@Returns:
|
||||
|
||||
|
||||
@radio_menu_item: a #GtkRadioMenuItem.
|
||||
@Returns: the group of @radio_menu_item.
|
||||
|
@ -2,11 +2,13 @@
|
||||
GtkSeparatorMenuItem
|
||||
|
||||
<!-- ##### SECTION Short_Description ##### -->
|
||||
|
||||
a separator used in menus.
|
||||
|
||||
<!-- ##### SECTION Long_Description ##### -->
|
||||
<para>
|
||||
|
||||
The #GtkSeparatorMenuItem is a separator used to group
|
||||
items within a menu. It displays a horizontal line with a shadow to
|
||||
make it appear sunken into the interface.
|
||||
</para>
|
||||
|
||||
<!-- ##### SECTION See_Also ##### -->
|
||||
@ -16,21 +18,16 @@ GtkSeparatorMenuItem
|
||||
|
||||
<!-- ##### STRUCT GtkSeparatorMenuItem ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
|
||||
<!-- ##### STRUCT GtkSeparatorMenuItemClass ##### -->
|
||||
<para>
|
||||
|
||||
The #GtkSeparatorMenuItem-struct struct contains private data only, and
|
||||
should be accessed using the functions below.
|
||||
</para>
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_separator_menu_item_new ##### -->
|
||||
<para>
|
||||
|
||||
Creates a new #GtkSeparatorMenuItem.
|
||||
</para>
|
||||
|
||||
@Returns:
|
||||
@Returns: a new #GtkSeparatorMenuItem.
|
||||
|
||||
|
||||
|
@ -232,12 +232,12 @@ Creates a new #GtkSpinButton.
|
||||
|
||||
<!-- ##### MACRO gtk_spin_button_get_value_as_float ##### -->
|
||||
<para>
|
||||
|
||||
Gets the value in the @spin_button. This function is deprecated,
|
||||
use gtk_spin_button_get_value() instead.
|
||||
</para>
|
||||
|
||||
@Returns:
|
||||
<!-- # Unused Parameters # -->
|
||||
@spin_button:
|
||||
@spin_button: a #GtkSpinButton.
|
||||
@Returns: the value of @spin_button.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_spin_button_get_value_as_int ##### -->
|
||||
|
@ -10,7 +10,9 @@ A #GtkStatusbar is usually placed along the bottom of an application's main
|
||||
#GtkWindow. It may provide a regular commentary of the application's status
|
||||
(as is usually the case in a web browser, for example), or may be used to
|
||||
simply output a message when the status changes, (when an upload is complete
|
||||
in an FTP client, for example).
|
||||
in an FTP client, for example).
|
||||
It may also have a resize grip (a triangular area in the lower left corner)
|
||||
which can be clicked on to resize the window containing the statusbar.
|
||||
</para>
|
||||
<para>
|
||||
Status bars in Gtk+ maintain a stack of messages. The message at
|
||||
@ -102,20 +104,20 @@ Forces the removal of a message from a statusbar's stack. The exact context_id a
|
||||
|
||||
<!-- ##### FUNCTION gtk_statusbar_set_has_resize_grip ##### -->
|
||||
<para>
|
||||
|
||||
Sets whether the statusbar has a resize grip. %TRUE by default.
|
||||
</para>
|
||||
|
||||
@statusbar:
|
||||
@setting:
|
||||
@statusbar: a #GtkStatusBar.
|
||||
@setting: %TRUE to have a resize grip.
|
||||
|
||||
|
||||
<!-- ##### FUNCTION gtk_statusbar_get_has_resize_grip ##### -->
|
||||
<para>
|
||||
|
||||
Returns whether the statusbar has a resize grip.
|
||||
</para>
|
||||
|
||||
@statusbar:
|
||||
@Returns:
|
||||
@statusbar: a #GtkStatusBar.
|
||||
@Returns: %TRUE if the statusbar has a resize grip.
|
||||
|
||||
|
||||
<!-- ##### SIGNAL GtkStatusbar::text-popped ##### -->
|
||||
|
Loading…
Reference in New Issue
Block a user