summaryrefslogtreecommitdiff
path: root/gtk/gtkscrolledwindow.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-02-25 23:23:09 -0500
committerEmmanuele Bassi <ebassi@gnome.org>2021-03-11 16:37:33 +0000
commit3a62b283442f3e148cd9727b709846d1db024210 (patch)
tree5859debe2ceed09827d329192574b6a322e0b4f8 /gtk/gtkscrolledwindow.h
parentf3b16d0e9dbec29043646e1c2ca1fcfaf8cd25d5 (diff)
downloadgtk+-3a62b283442f3e148cd9727b709846d1db024210.tar.gz
scrolledwindow: Convert docs
Convert link format, add property annotations. General cleanup.
Diffstat (limited to 'gtk/gtkscrolledwindow.h')
-rw-r--r--gtk/gtkscrolledwindow.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/gtk/gtkscrolledwindow.h b/gtk/gtkscrolledwindow.h
index 30cfb334c6..fa3255f470 100644
--- a/gtk/gtkscrolledwindow.h
+++ b/gtk/gtkscrolledwindow.h
@@ -44,17 +44,18 @@ typedef struct _GtkScrolledWindow GtkScrolledWindow;
/**
* GtkCornerType:
* @GTK_CORNER_TOP_LEFT: Place the scrollbars on the right and bottom of the
- * widget (default behaviour).
+ * widget (default behaviour).
* @GTK_CORNER_BOTTOM_LEFT: Place the scrollbars on the top and right of the
- * widget.
+ * widget.
* @GTK_CORNER_TOP_RIGHT: Place the scrollbars on the left and bottom of the
- * widget.
+ * widget.
* @GTK_CORNER_BOTTOM_RIGHT: Place the scrollbars on the top and left of the
- * widget.
+ * widget.
*
* Specifies which corner a child widget should be placed in when packed into
- * a #GtkScrolledWindow. This is effectively the opposite of where the scroll
- * bars are placed.
+ * a `GtkScrolledWindow.`
+ *
+ * This is effectively the opposite of where the scroll bars are placed.
*/
typedef enum
{
@@ -68,14 +69,14 @@ typedef enum
/**
* GtkPolicyType:
* @GTK_POLICY_ALWAYS: The scrollbar is always visible. The view size is
- * independent of the content.
+ * independent of the content.
* @GTK_POLICY_AUTOMATIC: The scrollbar will appear and disappear as necessary.
- * For example, when all of a #GtkTreeView can not be seen.
+ * For example, when all of a `GtkTreeView` can not be seen.
* @GTK_POLICY_NEVER: The scrollbar should never appear. In this mode the
- * content determines the size.
+ * content determines the size.
* @GTK_POLICY_EXTERNAL: Don't show a scrollbar, but don't force the
- * size to follow the content. This can be used e.g. to make multiple
- * scrolled windows share a scrollbar.
+ * size to follow the content. This can be used e.g. to make multiple
+ * scrolled windows share a scrollbar.
*
* Determines how the size should be computed to achieve the one of the
* visibility mode for the scrollbars.