diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-02-08 23:14:46 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-02-08 23:21:39 -0500 |
commit | 394ae46ec08857405e4e5b3dad3782c9d9c59651 (patch) | |
tree | f53e6691bfe7694145aaa3af4041078b0179c1aa | |
parent | 32398f11fab5e0abc88bf77ec76668d24af3e659 (diff) | |
download | gtk+-394ae46ec08857405e4e5b3dad3782c9d9c59651.tar.gz |
Add some missing symbols to the docs
-rw-r--r-- | docs/reference/gtk/gtk3-sections.txt | 5 | ||||
-rw-r--r-- | gtk/gtkappchooserbutton.c | 7 | ||||
-rw-r--r-- | gtk/gtkborder.h | 12 | ||||
-rw-r--r-- | gtk/gtkcellarea.c | 4 | ||||
-rw-r--r-- | gtk/gtkcomboboxtext.c | 9 | ||||
-rw-r--r-- | gtk/gtkicontheme.c | 18 | ||||
-rw-r--r-- | gtk/gtkmenu.c | 13 | ||||
-rw-r--r-- | gtk/gtkmenuitem.c | 33 | ||||
-rw-r--r-- | gtk/gtkmenuitem.h | 6 | ||||
-rw-r--r-- | gtk/gtkprintbackend.c | 2 | ||||
-rw-r--r-- | gtk/gtkprintjob.c | 5 | ||||
-rw-r--r-- | gtk/gtkstyle.c | 10 |
12 files changed, 85 insertions, 39 deletions
diff --git a/docs/reference/gtk/gtk3-sections.txt b/docs/reference/gtk/gtk3-sections.txt index 2dab319651..0b08465feb 100644 --- a/docs/reference/gtk/gtk3-sections.txt +++ b/docs/reference/gtk/gtk3-sections.txt @@ -2058,6 +2058,8 @@ gtk_menu_item_deselect gtk_menu_item_activate gtk_menu_item_toggle_size_request gtk_menu_item_toggle_size_allocate +gtk_menu_item_get_reserve_indicator +gtk_menu_item_set_reserve_indicator <SUBSECTION Standard> GTK_MENU_ITEM GTK_IS_MENU_ITEM @@ -4202,6 +4204,7 @@ gtk_tree_view_column_set_clickable gtk_tree_view_column_get_clickable gtk_tree_view_column_set_widget gtk_tree_view_column_get_widget +gtk_tree_view_column_get_button gtk_tree_view_column_set_alignment gtk_tree_view_column_get_alignment gtk_tree_view_column_set_reorderable @@ -4286,6 +4289,7 @@ gtk_tree_view_row_expanded gtk_tree_view_set_reorderable gtk_tree_view_get_reorderable gtk_tree_view_get_path_at_pos +gtk_tree_view_is_blank_at_pos gtk_tree_view_get_cell_area gtk_tree_view_get_background_area gtk_tree_view_get_visible_rect @@ -5749,6 +5753,7 @@ gtk_style_new gtk_style_copy gtk_style_attach gtk_style_detach +gtk_style_get_context gtk_style_set_background gtk_style_apply_default_background gtk_style_lookup_color diff --git a/gtk/gtkappchooserbutton.c b/gtk/gtkappchooserbutton.c index 3fe38b95df..34cc573b35 100644 --- a/gtk/gtkappchooserbutton.c +++ b/gtk/gtkappchooserbutton.c @@ -753,14 +753,15 @@ gtk_app_chooser_button_append_custom_item (GtkAppChooserButton *self, } /** - * gtk_app_chooser_button_select_custom_item: + * gtk_app_chooser_button_set_active_custom_item: * @self: a #GtkAppChooserButton * @name: the name of the custom item * * Selects a custom item previously added with * gtk_app_chooser_button_append_custom_item(). - * Use gtk_app_chooser_refresh() to bring the selection to its initial - * state. + * + * Use gtk_app_chooser_refresh() to bring the selection + * to its initial state. * * Since: 3.0 */ diff --git a/gtk/gtkborder.h b/gtk/gtkborder.h index 51a5b7bfd6..db0cb8f012 100644 --- a/gtk/gtkborder.h +++ b/gtk/gtkborder.h @@ -41,13 +41,13 @@ typedef struct _GtkBorder GtkBorder; /** * GtkBorder: - * @left: The width of the left border. - * @right: The width of the right border. - * @top: The width of the top border. - * @bottom: The width of the bottom border. + * @left: The width of the left border + * @right: The width of the right border + * @top: The width of the top border + * @bottom: The width of the bottom border * - * A struct that specifies a border around a rectangular area that can - * be of different width on each side. + * A struct that specifies a border around a rectangular area + * that can be of different width on each side. */ struct _GtkBorder { diff --git a/gtk/gtkcellarea.c b/gtk/gtkcellarea.c index 3050ff578b..eecb35b84a 100644 --- a/gtk/gtkcellarea.c +++ b/gtk/gtkcellarea.c @@ -3100,9 +3100,11 @@ gtk_cell_area_remove_focus_sibling (GtkCellArea *area, * @renderer: the #GtkCellRenderer expected to have focus * @sibling: the #GtkCellRenderer to check against @renderer's sibling list * - * Returns %TRUE if @sibling is one of @renderer's focus siblings + * Returns whether @sibling is one of @renderer's focus siblings * (see gtk_cell_area_add_focus_sibling()). * + * Return value: %TRUE if @sibling is a focus sibling of @renderer + * * Since: 3.0 */ gboolean diff --git a/gtk/gtkcomboboxtext.c b/gtk/gtkcomboboxtext.c index be0a076a1d..ba6c051179 100644 --- a/gtk/gtkcomboboxtext.c +++ b/gtk/gtkcomboboxtext.c @@ -408,10 +408,11 @@ gtk_combo_box_text_insert_text (GtkComboBoxText *combo_box, /** * gtk_combo_box_text_append: * @combo_box: A #GtkComboBoxText + * @id: (allow-none): a string ID for this value, or %NULL * @text: A string * - * Appends @text to the list of strings stored in @combo_box. If @id is - * non-%NULL then it is used as the ID of the row. + * Appends @text to the list of strings stored in @combo_box. + * If @id is non-%NULL then it is used as the ID of the row. * * This is the same as calling gtk_combo_box_text_insert() with a * position of -1. @@ -432,8 +433,8 @@ gtk_combo_box_text_append (GtkComboBoxText *combo_box, * @id: (allow-none): a string ID for this value, or %NULL * @text: a string * - * Prepends @text to the list of strings stored in @combo_box. If @id - * is non-%NULL then it is used as the ID of the row. + * Prepends @text to the list of strings stored in @combo_box. + * If @id is non-%NULL then it is used as the ID of the row. * * This is the same as calling gtk_combo_box_text_insert() with a * position of 0. diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index 1cd27cd8d1..88b89e201c 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -738,21 +738,19 @@ gtk_icon_theme_set_search_path (GtkIconTheme *icon_theme, /** * gtk_icon_theme_get_search_path: * @icon_theme: a #GtkIconTheme - * @path: (allow-none) (array length=n_elements) (element-type filename) (out): - * location to store a list of icon theme path directories or %NULL . - * The stored value should be freed with g_strfreev(). - * @n_elements: location to store number of elements - * in @path, or %NULL - * + * location to store a list of icon theme path directories or %NULL. + * The stored value should be freed with g_strfreev(). + * @n_elements: location to store number of elements in @path, or %NULL + * * Gets the current search path. See gtk_icon_theme_set_search_path(). * * Since: 2.4 - **/ + */ void -gtk_icon_theme_get_search_path (GtkIconTheme *icon_theme, - gchar **path[], - gint *n_elements) +gtk_icon_theme_get_search_path (GtkIconTheme *icon_theme, + gchar **path[], + gint *n_elements) { GtkIconThemePrivate *priv; int i; diff --git a/gtk/gtkmenu.c b/gtk/gtkmenu.c index d363009ac4..dee69b88ef 100644 --- a/gtk/gtkmenu.c +++ b/gtk/gtkmenu.c @@ -1987,12 +1987,12 @@ gtk_menu_set_accel_group (GtkMenu *menu, /** * gtk_menu_get_accel_group: - * @menu a #GtkMenu + * @menu: a #GtkMenu * * Gets the #GtkAccelGroup which holds global accelerators for the - * menu. See gtk_menu_set_accel_group(). + * menu. See gtk_menu_set_accel_group(). * - * Returns: (transfer none): the #GtkAccelGroup associated with the menu. + * Returns: (transfer none): the #GtkAccelGroup associated with the menu */ GtkAccelGroup* gtk_menu_get_accel_group (GtkMenu *menu) @@ -2418,8 +2418,11 @@ gtk_menu_get_title (GtkMenu *menu) * gtk_menu_reorder_child: * @menu: a #GtkMenu * @child: the #GtkMenuItem to move - * @position: the new position to place @child. Positions are - * numbered from 0 to n-1. + * @position: the new position to place @child. + * Positions are numbered from 0 to n - 1 + * + * Moves @child to a new @position in the list of @menu + * children. */ void gtk_menu_reorder_child (GtkMenu *menu, diff --git a/gtk/gtkmenuitem.c b/gtk/gtkmenuitem.c index 855fe0e685..6194ee567e 100644 --- a/gtk/gtkmenuitem.c +++ b/gtk/gtkmenuitem.c @@ -2564,9 +2564,23 @@ gtk_menu_item_get_use_underline (GtkMenuItem *menu_item) return FALSE; } +/** + * gtk_menu_item_set_reserve_indicator: + * @menu_item: a #GtkMenuItem + * @reserve: the new value + * + * Sets whether the @menu_item should reserve space for + * the submenu indicator, regardless if it actually has + * a submenu or not. + * + * There should be little need for applications to call + * this functions. + * + * Since: 3.0 + */ void -gtk_menu_item_set_reserve_indicator (GtkMenuItem *menu_item, - gboolean reserve) +gtk_menu_item_set_reserve_indicator (GtkMenuItem *menu_item, + gboolean reserve) { GtkMenuItemPrivate *priv; @@ -2581,8 +2595,21 @@ gtk_menu_item_set_reserve_indicator (GtkMenuItem *menu_item, } } +/** + * gtk_menu_item_get_reserve_indicator: + * @menu_item: a #GtkMenuItem + * + * Returns whether the @menu_item reserves space for + * the submenu indicator, regardless if it has a submenu + * or not. + * + * Returns: %TRUE if @menu_item always reserves space for the + * submenu indicator + * + * Since: 3.0 + */ gboolean -gtk_menu_item_get_reserve_indicator (GtkMenuItem *menu_item) +gtk_menu_item_get_reserve_indicator (GtkMenuItem *menu_item) { g_return_val_if_fail (GTK_IS_MENU_ITEM (menu_item), FALSE); diff --git a/gtk/gtkmenuitem.h b/gtk/gtkmenuitem.h index 4132e42286..6c8dee4c37 100644 --- a/gtk/gtkmenuitem.h +++ b/gtk/gtkmenuitem.h @@ -119,9 +119,9 @@ void gtk_menu_item_set_use_underline (GtkMenuItem *menu_item, gboolean setting); gboolean gtk_menu_item_get_use_underline (GtkMenuItem *menu_item); -void gtk_menu_item_set_reserve_indicator(GtkMenuItem *menu_item, - gboolean reserve); -gboolean gtk_menu_item_get_reserve_indicator(GtkMenuItem *menu_item); +void gtk_menu_item_set_reserve_indicator (GtkMenuItem *menu_item, + gboolean reserve); +gboolean gtk_menu_item_get_reserve_indicator (GtkMenuItem *menu_item); G_END_DECLS diff --git a/gtk/gtkprintbackend.c b/gtk/gtkprintbackend.c index df735c668c..f8858c1705 100644 --- a/gtk/gtkprintbackend.c +++ b/gtk/gtkprintbackend.c @@ -297,7 +297,7 @@ _gtk_print_backend_create (const gchar *backend_name) } /** - * gtk_printer_backend_load_modules: + * gtk_print_backend_load_modules: * * Return value: (element-type GtkPrintBackend) (transfer container): */ diff --git a/gtk/gtkprintjob.c b/gtk/gtkprintjob.c index 634e6b45ca..58d339778d 100644 --- a/gtk/gtkprintjob.c +++ b/gtk/gtkprintjob.c @@ -765,9 +765,8 @@ gtk_print_job_get_page_ranges (GtkPrintJob *job, /** * gtk_print_job_set_page_ranges: * @job: a #GtkPrintJob - * @ranges: (array length=n_ranges): pointer to an array of - * #GtkPageRange structs + * #GtkPageRange structs * @n_ranges: the length of the @ranges array * * Sets the page ranges for this job. @@ -993,7 +992,7 @@ gtk_print_job_get_collate (GtkPrintJob *job) } /** - * gtk_print_job_set_collated: + * gtk_print_job_set_collate: * @job: a #GtkPrintJob * @collate: whether the job is printed collated * diff --git a/gtk/gtkstyle.c b/gtk/gtkstyle.c index 1d31d1ef03..cf88d1d07a 100644 --- a/gtk/gtkstyle.c +++ b/gtk/gtkstyle.c @@ -858,6 +858,16 @@ gtk_style_new (void) return style; } +/** + * gtk_style_has_context: + * @style: a #GtkStyle + * + * Returns whether @style has an associated #GtkStyleContext. + * + * Returns: %TRUE if @style has a #GtkStyleContext + * + * Since: 3.0 + */ gboolean gtk_style_has_context (GtkStyle *style) { |