[gtk/ebassi/gidocgen: 24/26] textview: Add property annotations




commit db65a1c878966637fec7a96009a4bbed05973203
Author: Matthias Clasen <mclasen redhat com>
Date:   Wed Feb 24 21:58:35 2021 -0500

    textview: Add property annotations
    
    Connect properties, getters, and setters with annotations.

 gtk/gtktextview.c | 125 ++++++++++++++++++++++++++----------------------------
 1 file changed, 61 insertions(+), 64 deletions(-)
---
diff --git a/gtk/gtktextview.c b/gtk/gtktextview.c
index 4ffa117c1d..79cd7aaa6b 100644
--- a/gtk/gtktextview.c
+++ b/gtk/gtktextview.c
@@ -58,10 +58,7 @@
 #include "gtkwidgetprivate.h"
 
 /**
- * SECTION:gtktextview
- * @Short_description: Widget that displays a GtkTextBuffer
- * @Title: GtkTextView
- * @See_also: `GtkTextBuffer`, `GtkTextIter`
+ * GtkTextView:
  *
  * A widget that displays the contents of a [class@Gtk.TextBuffer].
  *
@@ -835,7 +832,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
    */
 
   /**
-   * GtkTextview:pixels-above-lines:
+   * GtkTextview:pixels-above-lines: (attributes org.gtk.Property.get=gtk_text_view_get_pixels_above_lines 
org.gtk.Property.set=gtk_text_view_set_pixels_above_lines)
    *
    * Pixels of blank space above paragraphs.
    */
@@ -848,7 +845,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                      GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextview:pixels-below-lines:
+   * GtkTextview:pixels-below-lines: (attributes org.gtk.Property.get=gtk_text_view_get_pixels_below_lines 
org.gtk.Property.set=gtk_text_view_set_pixels_below_lines)
    *
    * Pixels of blank space below paragraphs.
    */
@@ -861,7 +858,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                      GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextview:pixels-inside-wrap:
+   * GtkTextview:pixels-inside-wrap: (attributes org.gtk.Property.get=gtk_text_view_get_pixels_inside_wrap 
org.gtk.Property.set=gtk_text_view_set_pixels_inside_wrap)
    *
    * Pixels of blank space between wrapped lines in a paragraph.
    */
@@ -874,7 +871,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                      GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextview:editable:
+   * GtkTextview:editable: (attributes org.gtk.Property.get=gtk_text_view_get_editable 
org.gtk.Property.set=gtk_text_view_set_editable)
    *
    * Whether the text can be modified by the user.
    */
@@ -887,7 +884,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                          GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextview:wrap-mode:
+   * GtkTextview:wrap-mode: (attributes org.gtk.Property.get=gtk_text_view_get_wrap_mode 
org.gtk.Property.set=gtk_text_view_set_wrap_mode)
    *
    * Whether to wrap lines never, at word boundaries, or at character boundaries.
    */
@@ -901,7 +898,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                       GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextview:justification:
+   * GtkTextview:justification: (attributes org.gtk.Property.get=gtk_text_view_get_justification 
org.gtk.Property.set=gtk_text_view_set_justification)
    *
    * Left, right, or center justification.
    */
@@ -915,7 +912,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                       GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextView:left-margin:
+   * GtkTextView:left-margin: (attributes org.gtk.Property.get=gtk_text_view_get_left_margin 
org.gtk.Property.set=gtk_text_view_set_left_margin)
    *
    * The default left margin for text in the text view.
    *
@@ -934,7 +931,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                      GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextView:right-margin:
+   * GtkTextView:right-margin: (attributes org.gtk.Property.get=gtk_text_view_get_right_margin 
org.gtk.Property.set=gtk_text_view_set_right_margin)
    *
    * The default right margin for text in the text view.
    *
@@ -953,7 +950,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                      GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextView:top-margin:
+   * GtkTextView:top-margin: (attributes org.gtk.Property.get=gtk_text_view_get_top_margin 
org.gtk.Property.set=gtk_text_view_set_top_margin)
    *
    * The top margin for text in the text view.
    *
@@ -972,7 +969,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                      GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextView:bottom-margin:
+   * GtkTextView:bottom-margin: (attributes org.gtk.Property.get=gtk_text_view_get_bottom_margin 
org.gtk.Property.set=gtk_text_view_set_bottom_margin)
    *
    * The bottom margin for text in the text view.
    *
@@ -991,7 +988,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                      GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextView:indent:
+   * GtkTextView:indent: (attributes org.gtk.Property.get=gtk_text_view_get_indent 
org.gtk.Property.set=gtk_text_view_set_indent)
    *
    * Amount to indent the paragraph, in pixels.
    */
@@ -1004,7 +1001,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                      GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextview:tabs:
+   * GtkTextview:tabs: (attributes org.gtk.Property.get=gtk_text_view_get_tabs 
org.gtk.Property.set=gtk_text_view_set_tabs)
    *
    * Custom tabs for this text.
    */
@@ -1017,7 +1014,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                       GTK_PARAM_READWRITE));
 
   /**
-   * GtkTextView:cursor-visible:
+   * GtkTextView:cursor-visible: (attributes org.gtk.Property.get=gtk_text_view_get_cursor_visible 
org.gtk.Property.set=gtk_text_view_set_cursor_visible)
    *
    * If the insertion cursor is shown.
    */
@@ -1030,7 +1027,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                          GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextView:buffer:
+   * GtkTextView:buffer: (attributes org.gtk.Property.get=gtk_text_view_get_buffer 
org.gtk.Property.set=gtk_text_view_set_buffer)
    *
    * The buffer which is displayed.
    */
@@ -1043,7 +1040,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                        GTK_PARAM_READWRITE));
 
   /**
-   * GtkTextView:overwrite:
+   * GtkTextView:overwrite: (attributes org.gtk.Property.get=gtk_text_view_get_overwrite 
org.gtk.Property.set=gtk_text_view_set_overwrite)
    *
    * Whether entered text overwrites existing contents.
    */
@@ -1056,7 +1053,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                          GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextView:accepts-tab:
+   * GtkTextView:accepts-tab: (attributes org.gtk.Property.get=gtk_text_view_get_accepts_tab 
org.gtk.Property.set=gtk_text_view_set_accepts_tab)
    *
    * Whether Tab will result in a tab character being entered.
    */
@@ -1087,7 +1084,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                          GTK_PARAM_READWRITE));
 
   /**
-   * GtkTextView:input-purpose:
+   * GtkTextView:input-purpose: (attributes org.gtk.Property.get=gtk_text_view_get_input_purpose 
org.gtk.Property.set=gtk_text_view_set_input_purpose)
    *
    * The purpose of this text field.
    *
@@ -1105,7 +1102,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
 
 
   /**
-   * GtkTextView:input-hints:
+   * GtkTextView:input-hints: (attributes org.gtk.Property.get=gtk_text_view_get_input_hints 
org.gtk.Property.set=gtk_text_view_set_input_hints)
    *
    * Additional hints (beyond [property@Gtk.TextView:input-purpose])
    * that allow input methods to fine-tune their behaviour.
@@ -1121,7 +1118,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
 
 
   /**
-   * GtkTextView:monospace:
+   * GtkTextView:monospace: (attributes org.gtk.Property.get=gtk_text_view_get_monospace 
org.gtk.Property.set=gtk_text_view_set_monospace)
    *
    * Whether text should be displayed in a monospace font.
    *
@@ -1137,7 +1134,7 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
                                                          GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
 
   /**
-   * GtkTextView:extra-menu:
+   * GtkTextView:extra-menu: (attributes org.gtk.Property.get=gtk_text_view_get_extra_menu 
org.gtk.Property.set=gtk_text_view_set_extra_menu)
    *
    * A menu model whose contents will be appended to the context menu.
    */
@@ -2097,7 +2094,7 @@ gtk_text_view_new_with_buffer (GtkTextBuffer *buffer)
 }
 
 /**
- * gtk_text_view_set_buffer:
+ * gtk_text_view_set_buffer: (attributes org.gtk.Method.set_property=buffer)
  * @text_view: a `GtkTextView`
  * @buffer: (allow-none): a `GtkTextBuffer`
  *
@@ -2240,7 +2237,7 @@ gtk_text_view_create_buffer (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_get_buffer:
+ * gtk_text_view_get_buffer: (attributes org.gtk.Method.get_property=buffer)
  * @text_view: a `GtkTextView`
  *
  * Returns the `GtkTextBuffer` being displayed by this text view.
@@ -3099,7 +3096,7 @@ gtk_text_view_get_visible_rect (GtkTextView  *text_view,
 }
 
 /**
- * gtk_text_view_set_wrap_mode:
+ * gtk_text_view_set_wrap_mode: (attributes org.gtk.Method.set_property=wrap-mode)
  * @text_view: a `GtkTextView`
  * @wrap_mode: a `GtkWrapMode`
  *
@@ -3129,7 +3126,7 @@ gtk_text_view_set_wrap_mode (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_wrap_mode:
+ * gtk_text_view_get_wrap_mode: (attributes org.gtk.Method.get_property=wrap-mode)
  * @text_view: a `GtkTextView`
  *
  * Gets the line wrapping for the view.
@@ -3145,7 +3142,7 @@ gtk_text_view_get_wrap_mode (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_editable:
+ * gtk_text_view_set_editable: (attributes org.gtk.Method.set_property=editable)
  * @text_view: a `GtkTextView`
  * @setting: whether it’s editable
  *
@@ -3200,7 +3197,7 @@ gtk_text_view_set_editable (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_editable:
+ * gtk_text_view_get_editable: (attributes org.gtk.Method.get_property=editable)
  * @text_view: a `GtkTextView`
  *
  * Returns the default editability of the `GtkTextView`.
@@ -3218,7 +3215,7 @@ gtk_text_view_get_editable (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_pixels_above_lines:
+ * gtk_text_view_set_pixels_above_lines: (attributes org.gtk.Method.set_property=pixels-above-lines)
  * @text_view: a `GtkTextView`
  * @pixels_above_lines: pixels above paragraphs
  *
@@ -3251,7 +3248,7 @@ gtk_text_view_set_pixels_above_lines (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_pixels_above_lines:
+ * gtk_text_view_get_pixels_above_lines: (attributes org.gtk.Method.get_property=pixels-above-lines)
  * @text_view: a `GtkTextView`
  *
  * Gets the default number of pixels to put above paragraphs.
@@ -3270,7 +3267,7 @@ gtk_text_view_get_pixels_above_lines (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_pixels_below_lines:
+ * gtk_text_view_set_pixels_below_lines: (attributes org.gtk.Method.set_property=pixels-below-lines)
  * @text_view: a `GtkTextView`
  * @pixels_below_lines: pixels below paragraphs
  *
@@ -3304,7 +3301,7 @@ gtk_text_view_set_pixels_below_lines (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_pixels_below_lines:
+ * gtk_text_view_get_pixels_below_lines: (attributes org.gtk.Method.get_property=pixels-below-lines)
  * @text_view: a `GtkTextView`
  *
  * Gets the default number of pixels to put below paragraphs.
@@ -3323,7 +3320,7 @@ gtk_text_view_get_pixels_below_lines (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_pixels_inside_wrap:
+ * gtk_text_view_set_pixels_inside_wrap: (attributes org.gtk.Method.set_property=pixels-inside-wrap)
  * @text_view: a `GtkTextView`
  * @pixels_inside_wrap: default number of pixels between wrapped lines
  *
@@ -3357,7 +3354,7 @@ gtk_text_view_set_pixels_inside_wrap (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_pixels_inside_wrap:
+ * gtk_text_view_get_pixels_inside_wrap: (attributes org.gtk.Method.get_property=pixels-inside-wrap)
  * @text_view: a `GtkTextView`
  *
  * Gets the default number of pixels to put between wrapped lines
@@ -3374,7 +3371,7 @@ gtk_text_view_get_pixels_inside_wrap (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_justification:
+ * gtk_text_view_set_justification: (attributes org.gtk.Method.set_property=justification)
  * @text_view: a `GtkTextView`
  * @justification: justification
  *
@@ -3407,7 +3404,7 @@ gtk_text_view_set_justification (GtkTextView     *text_view,
 }
 
 /**
- * gtk_text_view_get_justification:
+ * gtk_text_view_get_justification: (attributes org.gtk.Method.get_property=justification)
  * @text_view: a `GtkTextView`
  *
  * Gets the default justification of paragraphs in @text_view.
@@ -3425,7 +3422,7 @@ gtk_text_view_get_justification (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_left_margin:
+ * gtk_text_view_set_left_margin: (attributes org.gtk.Method.set_property=left-margin)
  * @text_view: a `GtkTextView`
  * @left_margin: left margin in pixels
  *
@@ -3460,7 +3457,7 @@ gtk_text_view_set_left_margin (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_left_margin:
+ * gtk_text_view_get_left_margin: (attributes org.gtk.Method.get_property=left-margin)
  * @text_view: a `GtkTextView`
  *
  * Gets the default left margin size of paragraphs in the @text_view.
@@ -3478,7 +3475,7 @@ gtk_text_view_get_left_margin (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_right_margin:
+ * gtk_text_view_set_right_margin: (attributes org.gtk.Method.set_property=right-margin)
  * @text_view: a `GtkTextView`
  * @right_margin: right margin in pixels
  *
@@ -3513,7 +3510,7 @@ gtk_text_view_set_right_margin (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_right_margin:
+ * gtk_text_view_get_right_margin: (attributes org.gtk.Method.get_property=right-margin)
  * @text_view: a `GtkTextView`
  *
  * Gets the default right margin for text in @text_view.
@@ -3531,7 +3528,7 @@ gtk_text_view_get_right_margin (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_top_margin:
+ * gtk_text_view_set_top_margin: (attributes org.gtk.Method.set_property=top-margin)
  * @text_view: a `GtkTextView`
  * @top_margin: top margin in pixels
  *
@@ -3565,7 +3562,7 @@ gtk_text_view_set_top_margin (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_top_margin:
+ * gtk_text_view_get_top_margin: (attributes org.gtk.Method.get_property=top-margin)
  * @text_view: a `GtkTextView`
  *
  * Gets the top margin for text in the @text_view.
@@ -3581,7 +3578,7 @@ gtk_text_view_get_top_margin (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_bottom_margin:
+ * gtk_text_view_set_bottom_margin: (attributes org.gtk.Method.set_property=bottom-margin)
  * @text_view: a `GtkTextView`
  * @bottom_margin: bottom margin in pixels
  *
@@ -3611,7 +3608,7 @@ gtk_text_view_set_bottom_margin (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_bottom_margin:
+ * gtk_text_view_get_bottom_margin: (attributes org.gtk.Method.get_property=bottom-margin)
  * @text_view: a `GtkTextView`
  *
  * Gets the bottom margin for text in the @text_view.
@@ -3627,7 +3624,7 @@ gtk_text_view_get_bottom_margin (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_indent:
+ * gtk_text_view_set_indent: (attributes org.gtk.Method.set_property=indent)
  * @text_view: a `GtkTextView`
  * @indent: indentation in pixels
  *
@@ -3660,7 +3657,7 @@ gtk_text_view_set_indent (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_indent:
+ * gtk_text_view_get_indent: (attributes org.gtk.Method.get_property=indent)
  * @text_view: a `GtkTextView`
  *
  * Gets the default indentation of paragraphs in @text_view.
@@ -3679,7 +3676,7 @@ gtk_text_view_get_indent (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_tabs:
+ * gtk_text_view_set_tabs: (attributes org.gtk.Method.set_property=tabs)
  * @text_view: a `GtkTextView`
  * @tabs: tabs as a #PangoTabArray
  *
@@ -3718,7 +3715,7 @@ gtk_text_view_set_tabs (GtkTextView   *text_view,
 }
 
 /**
- * gtk_text_view_get_tabs:
+ * gtk_text_view_get_tabs: (attributes org.gtk.Method.get_property=tabs)
  * @text_view: a `GtkTextView`
  *
  * Gets the default tabs for @text_view.
@@ -3746,7 +3743,7 @@ gtk_text_view_toggle_cursor_visible (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_cursor_visible:
+ * gtk_text_view_set_cursor_visible: (attributes org.gtk.Method.set_property=cursor-visible)
  * @text_view: a `GtkTextView`
  * @setting: whether to show the insertion cursor
  *
@@ -3787,7 +3784,7 @@ gtk_text_view_set_cursor_visible (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_cursor_visible:
+ * gtk_text_view_get_cursor_visible: (attributes org.gtk.Method.get_property=cursor-visible)
  * @text_view: a `GtkTextView`
  *
  * Find out whether the cursor should be displayed.
@@ -6995,7 +6992,7 @@ gtk_text_view_toggle_overwrite (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_get_overwrite:
+ * gtk_text_view_get_overwrite: (attributes org.gtk.Method.get_property=overwrite)
  * @text_view: a `GtkTextView`
  *
  * Returns whether the `GtkTextView` is in overwrite mode or not.
@@ -7011,7 +7008,7 @@ gtk_text_view_get_overwrite (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_overwrite:
+ * gtk_text_view_set_overwrite: (attributes org.gtk.Method.set_property=overwrite)
  * @text_view: a `GtkTextView`
  * @overwrite: %TRUE to turn on overwrite mode, %FALSE to turn it off
  *
@@ -7029,7 +7026,7 @@ gtk_text_view_set_overwrite (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_set_accepts_tab:
+ * gtk_text_view_set_accepts_tab: (attributes org.gtk.Method.set_property=accepts-tab)
  * @text_view: A `GtkTextView`
  * @accepts_tab: %TRUE if pressing the Tab key should insert a tab
  *    character, %FALSE, if pressing the Tab key should move the
@@ -7058,7 +7055,7 @@ gtk_text_view_set_accepts_tab (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_accepts_tab:
+ * gtk_text_view_get_accepts_tab: (attributes org.gtk.Method.get_property=accepts-tab)
  * @text_view: A `GtkTextView`
  *
  * Returns whether pressing the Tab key inserts a tab characters.
@@ -9593,7 +9590,7 @@ gtk_text_view_move_visually (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_set_input_purpose:
+ * gtk_text_view_set_input_purpose: (attributes org.gtk.Method.set_property=input-purpose)
  * @text_view: a `GtkTextView`
  * @purpose: the purpose
  *
@@ -9620,7 +9617,7 @@ gtk_text_view_set_input_purpose (GtkTextView     *text_view,
 }
 
 /**
- * gtk_text_view_get_input_purpose:
+ * gtk_text_view_get_input_purpose: (attributes org.gtk.Method.get_property=input-purpose)
  * @text_view: a `GtkTextView`
  *
  * Gets the `input-purpose` of the `GtkTextView`.
@@ -9640,7 +9637,7 @@ gtk_text_view_get_input_purpose (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_input_hints:
+ * gtk_text_view_set_input_hints: (attributes org.gtk.Method.set_property=input-hints)
  * @text_view: a `GtkTextView`
  * @hints: the hints
  *
@@ -9668,7 +9665,7 @@ gtk_text_view_set_input_hints (GtkTextView   *text_view,
 }
 
 /**
- * gtk_text_view_get_input_hints:
+ * gtk_text_view_get_input_hints: (attributes org.gtk.Method.get_property=input-hints)
  * @text_view: a `GtkTextView`
  *
  * Gets the `input-hints` of the `GtkTextView`.
@@ -9688,7 +9685,7 @@ gtk_text_view_get_input_hints (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_monospace:
+ * gtk_text_view_set_monospace: (attributes org.gtk.Method.set_property=monospace)
  * @text_view: a `GtkTextView`
  * @monospace: %TRUE to request monospace styling
  *
@@ -9717,7 +9714,7 @@ gtk_text_view_set_monospace (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_monospace:
+ * gtk_text_view_get_monospace: (attributes org.gtk.Method.get_property=monospace)
  * @text_view: a `GtkTextView`
  *
  * Gets whether the `GtkTextView` uses monospace styling.
@@ -9798,7 +9795,7 @@ gtk_text_view_insert_emoji (GtkTextView *text_view)
 }
 
 /**
- * gtk_text_view_set_extra_menu:
+ * gtk_text_view_set_extra_menu: (attributes org.gtk.Method.set_property=extra-menu)
  * @text_view: a `GtkTextView`
  * @model: (allow-none): a `GMenuModel`
  *
@@ -9823,7 +9820,7 @@ gtk_text_view_set_extra_menu (GtkTextView *text_view,
 }
 
 /**
- * gtk_text_view_get_extra_menu:
+ * gtk_text_view_get_extra_menu: (attributes org.gtk.Method.get_property=extra-menu)
  * @text_view: a `GtkTextView`
  *
  * Gets the menu model that gets added to the context menu


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]