[gtktreeview] Add a couple of annotations

(cherry picked from commit 5c283cacbe)
This commit is contained in:
Johan Dahlin 2010-05-28 09:26:31 -03:00 committed by Matthias Clasen
parent eade6b23be
commit 05dad359e7

View File

@ -1548,7 +1548,7 @@ gtk_text_view_get_buffer (GtkTextView *text_view)
/** /**
* gtk_text_view_get_iter_at_location: * gtk_text_view_get_iter_at_location:
* @text_view: a #GtkTextView * @text_view: a #GtkTextView
* @iter: a #GtkTextIter * @iter: (out): a #GtkTextIter
* @x: x position, in buffer coordinates * @x: x position, in buffer coordinates
* @y: y position, in buffer coordinates * @y: y position, in buffer coordinates
* *
@ -1576,8 +1576,8 @@ gtk_text_view_get_iter_at_location (GtkTextView *text_view,
/** /**
* gtk_text_view_get_iter_at_position: * gtk_text_view_get_iter_at_position:
* @text_view: a #GtkTextView * @text_view: a #GtkTextView
* @iter: a #GtkTextIter * @iter: (out): a #GtkTextIter
* @trailing: if non-%NULL, location to store an integer indicating where * @trailing: (out) (allow-none): if non-%NULL, location to store an integer indicating where
* in the grapheme the user clicked. It will either be * in the grapheme the user clicked. It will either be
* zero, or the number of characters in the grapheme. * zero, or the number of characters in the grapheme.
* 0 represents the trailing edge of the grapheme. * 0 represents the trailing edge of the grapheme.
@ -1617,7 +1617,7 @@ gtk_text_view_get_iter_at_position (GtkTextView *text_view,
* gtk_text_view_get_iter_location: * gtk_text_view_get_iter_location:
* @text_view: a #GtkTextView * @text_view: a #GtkTextView
* @iter: a #GtkTextIter * @iter: a #GtkTextIter
* @location: bounds of the character at @iter * @location: (out): bounds of the character at @iter
* *
* Gets a rectangle which roughly contains the character at @iter. * Gets a rectangle which roughly contains the character at @iter.
* The rectangle position is in buffer coordinates; use * The rectangle position is in buffer coordinates; use
@ -1641,8 +1641,8 @@ gtk_text_view_get_iter_location (GtkTextView *text_view,
* gtk_text_view_get_line_yrange: * gtk_text_view_get_line_yrange:
* @text_view: a #GtkTextView * @text_view: a #GtkTextView
* @iter: a #GtkTextIter * @iter: a #GtkTextIter
* @y: return location for a y coordinate * @y: (out): return location for a y coordinate
* @height: return location for a height * @height: (out): return location for a height
* *
* Gets the y coordinate of the top of the line containing @iter, * Gets the y coordinate of the top of the line containing @iter,
* and the height of the line. The coordinate is a buffer coordinate; * and the height of the line. The coordinate is a buffer coordinate;
@ -1668,9 +1668,9 @@ gtk_text_view_get_line_yrange (GtkTextView *text_view,
/** /**
* gtk_text_view_get_line_at_y: * gtk_text_view_get_line_at_y:
* @text_view: a #GtkTextView * @text_view: a #GtkTextView
* @target_iter: a #GtkTextIter * @target_iter: (out): a #GtkTextIter
* @y: a y coordinate * @y: a y coordinate
* @line_top: return location for top coordinate of the line * @line_top: (out): return location for top coordinate of the line
* *
* Gets the #GtkTextIter at the start of the line containing * Gets the #GtkTextIter at the start of the line containing
* the coordinate @y. @y is in buffer coordinates, convert from * the coordinate @y. @y is in buffer coordinates, convert from
@ -8534,8 +8534,8 @@ buffer_to_text_window (GtkTextView *text_view,
* @win: a #GtkTextWindowType except #GTK_TEXT_WINDOW_PRIVATE * @win: a #GtkTextWindowType except #GTK_TEXT_WINDOW_PRIVATE
* @buffer_x: buffer x coordinate * @buffer_x: buffer x coordinate
* @buffer_y: buffer y coordinate * @buffer_y: buffer y coordinate
* @window_x: window x coordinate return location * @window_x: (out) (allow-none): window x coordinate return location or %NULL
* @window_y: window y coordinate return location * @window_y: (out) (allow-none): window y coordinate return location or %NULL
* *
* Converts coordinate (@buffer_x, @buffer_y) to coordinates for the window * Converts coordinate (@buffer_x, @buffer_y) to coordinates for the window
* @win, and stores the result in (@window_x, @window_y). * @win, and stores the result in (@window_x, @window_y).
@ -8674,8 +8674,8 @@ text_window_to_buffer (GtkTextView *text_view,
* @win: a #GtkTextWindowType except #GTK_TEXT_WINDOW_PRIVATE * @win: a #GtkTextWindowType except #GTK_TEXT_WINDOW_PRIVATE
* @window_x: window x coordinate * @window_x: window x coordinate
* @window_y: window y coordinate * @window_y: window y coordinate
* @buffer_x: buffer x coordinate return location * @buffer_x: (out) (allow-none): buffer x coordinate return location or %NULL
* @buffer_y: buffer y coordinate return location * @buffer_y: (out) (allow-none): buffer y coordinate return location or %NULL
* *
* Converts coordinates on the window identified by @win to buffer * Converts coordinates on the window identified by @win to buffer
* coordinates, storing the result in (@buffer_x,@buffer_y). * coordinates, storing the result in (@buffer_x,@buffer_y).