summaryrefslogtreecommitdiff
path: root/gtk/gtktreeview.c
diff options
context:
space:
mode:
authorPhillip Wood <phillip.wood@dunelm.org.uk>2014-03-03 10:40:35 +0000
committerMatthias Clasen <mclasen@redhat.com>2014-03-03 18:21:00 -0500
commitc3945d506da5d8aefdb960f4d98cafdb83dc047e (patch)
tree57245955e3cb29b3e43e2dca7469d107092ec952 /gtk/gtktreeview.c
parentdb9a6f8cafef54a1562281efdac6831ae66f02d9 (diff)
downloadgtk+-c3945d506da5d8aefdb960f4d98cafdb83dc047e.tar.gz
GtkTreeView documentation fixes
Add documentation for GtkTreeView::move-cursor Add links to GtkTreeModel::row-inserted and GtkTreeModel::row-deleted in the documentation for gtk_tree_view_set_reorderable (). https://bugzilla.gnome.org/show_bug.cgi?id=725560
Diffstat (limited to 'gtk/gtktreeview.c')
-rw-r--r--gtk/gtktreeview.c34
1 files changed, 30 insertions, 4 deletions
diff --git a/gtk/gtktreeview.c b/gtk/gtktreeview.c
index 2e0aa5da0b..e4e127fc2e 100644
--- a/gtk/gtktreeview.c
+++ b/gtk/gtktreeview.c
@@ -1414,6 +1414,31 @@ gtk_tree_view_class_init (GtkTreeViewClass *class)
_gtk_marshal_VOID__VOID,
G_TYPE_NONE, 0);
+ /**
+ * GtkTreeView::move-cursor:
+ * @tree_view: the object on which the signal is emitted.
+ * @step: the granularity of the move, as a
+ * #GtkMovementStep. %GTK_MOVEMENT_LOGICAL_POSITIONS,
+ * %GTK_MOVEMENT_VISUAL_POSITIONS, %GTK_MOVEMENT_DISPLAY_LINES,
+ * %GTK_MOVEMENT_PAGES and %GTK_MOVEMENT_BUFFER_ENDS are
+ * supported. %GTK_MOVEMENT_LOGICAL_POSITIONS and
+ * %GTK_MOVEMENT_VISUAL_POSITIONS are treated identically.
+ * @direction: the direction to move: +1 to move forwards;
+ * -1 to move backwards. The resulting movement is
+ * undefined for all other values.
+ *
+ * The #GtkTreeView::move-cursor signal is a [keybinding
+ * signal][GtkBindingSignal] which gets emitted when the user
+ * presses one of the cursor keys.
+ *
+ * Applications should not connect to it, but may emit it with
+ * g_signal_emit_by_name() if they need to control the cursor
+ * programmatically. In contrast to gtk_tree_view_set_cursor() and
+ * gtk_tree_view_set_cursor_on_cell() when moving horizontally
+ * #GtkTreeView::move-cursor does not reset the current selection.
+ *
+ * Returns: %TRUE if @step is supported, %FALSE otherwise.
+ */
tree_view_signals[MOVE_CURSOR] =
g_signal_new (I_("move-cursor"),
G_TYPE_FROM_CLASS (o_class),
@@ -13070,10 +13095,11 @@ gtk_tree_view_get_reorderable (GtkTreeView *tree_view)
* #GtkTreeDragDestIface. Both #GtkTreeStore and #GtkListStore support
* these. If @reorderable is %TRUE, then the user can reorder the
* model by dragging and dropping rows. The developer can listen to
- * these changes by connecting to the model’s row_inserted and
- * row_deleted signals. The reordering is implemented by setting up
- * the tree view as a drag source and destination. Therefore, drag and
- * drop can not be used in a reorderable view for any other purpose.
+ * these changes by connecting to the model’s #GtkTreeModel::row-inserted
+ * and #GtkTreeModel::row-deleted signals. The reordering is implemented
+ * by setting up the tree view as a drag source and destination.
+ * Therefore, drag and drop can not be used in a reorderable view for any
+ * other purpose.
*
* This function does not give you any degree of control over the order -- any
* reordering is allowed. If more control is needed, you should probably