More documentation fixes

This commit is contained in:
Matthias Clasen 2013-09-17 01:28:39 -04:00
parent 41f8ad5384
commit 6aa56979dc
5 changed files with 38 additions and 7 deletions

View File

@ -5282,6 +5282,7 @@ gtk_widget_queue_draw
gtk_widget_queue_resize gtk_widget_queue_resize
gtk_widget_queue_resize_no_redraw gtk_widget_queue_resize_no_redraw
gtk_widget_get_frame_clock gtk_widget_get_frame_clock
gtk_widget_get_scale_factor
GtkTickCallback GtkTickCallback
gtk_widget_add_tick_callback gtk_widget_add_tick_callback
gtk_widget_remove_tick_callback gtk_widget_remove_tick_callback
@ -6636,6 +6637,7 @@ gtk_icon_theme_lookup_icon_for_scale
gtk_icon_theme_choose_icon gtk_icon_theme_choose_icon
gtk_icon_theme_choose_icon_for_scale gtk_icon_theme_choose_icon_for_scale
gtk_icon_theme_lookup_by_gicon gtk_icon_theme_lookup_by_gicon
gtk_icon_theme_lookup_by_gicon_for_scale
gtk_icon_theme_load_icon gtk_icon_theme_load_icon
gtk_icon_theme_load_icon_for_scale gtk_icon_theme_load_icon_for_scale
gtk_icon_theme_load_surface gtk_icon_theme_load_surface
@ -6705,6 +6707,7 @@ gtk_icon_set_new_from_pixbuf
gtk_icon_set_ref gtk_icon_set_ref
gtk_icon_set_render_icon gtk_icon_set_render_icon
gtk_icon_set_render_icon_pixbuf gtk_icon_set_render_icon_pixbuf
gtk_icon_set_render_icon_surface
gtk_icon_set_unref gtk_icon_set_unref
gtk_icon_size_lookup gtk_icon_size_lookup
gtk_icon_size_lookup_for_settings gtk_icon_size_lookup_for_settings

View File

@ -5200,8 +5200,8 @@ gtk_icon_theme_lookup_by_gicon (GtkIconTheme *icon_theme,
* The icon can then be rendered into a pixbuf using * The icon can then be rendered into a pixbuf using
* gtk_icon_info_load_icon_for_scale (). * gtk_icon_info_load_icon_for_scale ().
* *
* Return value: (transfer full): a #GtkIconInfo structure containing * Return value: (transfer full): a #GtkIconInfo structure containing
* information about the icon, or %NULL if the icon * information about the icon, or %NULL if the icon
* wasn't found. Unref with g_object_unref() * wasn't found. Unref with g_object_unref()
* *
* Since: 3.10 * Since: 3.10

View File

@ -4207,9 +4207,15 @@ gtk_places_sidebar_class_init (GtkPlacesSidebarClass *class)
/** /**
* gtk_places_sidebar_new: * gtk_places_sidebar_new:
* *
* Creates a new #GtkPlacesSidebar widget. The application should connect * Creates a new #GtkPlacesSidebar widget.
* to at least the #GtkPlacesSidebar::open-location signal to be notified *
* The application should connect to at least the
* #GtkPlacesSidebar::open-location signal to be notified
* when the user makes a selection in the sidebar. * when the user makes a selection in the sidebar.
*
* Returns: a newly created #GtkPlacesSidebar
*
* Since: 3.10
*/ */
GtkWidget * GtkWidget *
gtk_places_sidebar_new (void) gtk_places_sidebar_new (void)
@ -4332,6 +4338,16 @@ gtk_places_sidebar_set_open_flags (GtkPlacesSidebar *sidebar, GtkPlacesOpenFlags
} }
} }
/**
* gtk_places_sidebar_get_open_flags:
* @sidebar: a #GtkPlacesSidebar
*
* Gets the open flags.
*
* Returns: the #GtkPlacesOpenFlags of @sidebar
*
* Since: 3.10
*/
GtkPlacesOpenFlags GtkPlacesOpenFlags
gtk_places_sidebar_get_open_flags (GtkPlacesSidebar *sidebar) gtk_places_sidebar_get_open_flags (GtkPlacesSidebar *sidebar)
{ {
@ -4602,8 +4618,11 @@ gtk_places_sidebar_remove_shortcut (GtkPlacesSidebar *sidebar, GFile *location)
* gtk_places_sidebar_list_shortcuts: * gtk_places_sidebar_list_shortcuts:
* @sidebar: a places sidebar * @sidebar: a places sidebar
* *
* Return value: (element-type GFile) (transfer full): A #GSList of #GFile of the locations * Gets the list of shortcuts.
* that have been added as application-specific shortcuts with gtk_places_sidebar_add_shortcut(). *
* Return value: (element-type GFile) (transfer full):
* A #GSList of #GFile of the locations that have been added as
* application-specific shortcuts with gtk_places_sidebar_add_shortcut().
* To free this list, you can use * To free this list, you can use
* |[ * |[
* g_slist_free_full (list, (GDestroyNotify) g_object_unref); * g_slist_free_full (list, (GDestroyNotify) g_object_unref);

View File

@ -249,6 +249,15 @@ gtk_revealer_class_init (GtkRevealerClass *klass)
G_PARAM_READABLE)); G_PARAM_READABLE));
} }
/**
* gtk_revealer_new:
*
* Creates a new #GtkRevealer.
*
* Returns: a newly created #GtkRevealer
*
* Since: 3.10
*/
GtkWidget * GtkWidget *
gtk_revealer_new (void) gtk_revealer_new (void)
{ {

View File

@ -15932,7 +15932,7 @@ gtk_widget_class_set_connect_func (GtkWidgetClass *widget_class,
} }
/** /**
* gtk_widget_class_bind_template_child_private_full: * gtk_widget_class_bind_template_child_full:
* @widget_class: A #GtkWidgetClass * @widget_class: A #GtkWidgetClass
* @name: The "id" of the child defined in the template XML * @name: The "id" of the child defined in the template XML
* @internal_child: Whether the child should be accessible as an "internal-child" * @internal_child: Whether the child should be accessible as an "internal-child"