]> Pileus Git - ~andy/gtk/blobdiff - docs/reference/gtk/tmpl/gtktreeview.sgml
Make 3.0 parallel-installable to 2.x
[~andy/gtk] / docs / reference / gtk / tmpl / gtktreeview.sgml
index 144de496eea01b32362ce328a401337dbcd6a397..549b2e62125802f01d4df3a3bc9dcfa2d88992cc 100644 (file)
 GtkTreeView
 
 <!-- ##### SECTION Short_Description ##### -->
-
+A widget for displaying both trees and lists
 
 <!-- ##### SECTION Long_Description ##### -->
 <para>
+Widget that displays any object that implements the <link
+linkend="GtkTreeModel">GtkTreeModel</link> interface.
+</para>
+
+<para>
+Please refer to the <link linkend="TreeWidget">tree widget conceptual 
+overview</link> for an overview of all the objects and data types related 
+to the tree widget and how they work together.
+</para>
+
+<para>
+Several different coordinate systems are exposed in the GtkTreeView API.
+These are:
+
+<inlinegraphic fileref="tree-view-coordinates.png" format="PNG"></inlinegraphic>
+
+  <simplelist>
+    <member>Widget coordinates -- coordinates relative to the widget 
+    (usually <literal>widget-&gt;window</literal>.</member>
+    <member>Bin window coordinates -- coordinates relative to the window 
+    that GtkTreeView renders to.</member>
+    <member>Tree coordinates -- coordinates relative to the entire scrollable 
+    area of GtkTreeView.  These coordinates start at (0, 0) for row 0 of the 
+    tree.</member>
+  </simplelist>
+</para>
 
+<para>
+Several functions are available for converting between the different
+coordinate systems.  The most common translations are between widget and bin 
+window coordinates and between bin window and tree coordinates.  For the 
+former you can use gtk_tree_view_convert_widget_to_bin_window_coords()
+(and vice versa), for the latter gtk_tree_view_convert_bin_window_to_tree_coords() 
+(and vice versa).
 </para>
 
+<refsect2 id="GtkTreeView-BUILDER-UI">
+<title>GtkTreeView as GtkBuildable</title>
+<para>
+The GtkTreeView implementation of the GtkBuildable interface accepts
+GtkTreeViewColumn objects as &lt;child&gt; elements in UI definitions.
+</para>
+<example>
+<title>A UI definition fragment with GtkTreeView</title>
+<programlisting><![CDATA[
+<object class="GtkTreeView" id="treeview">
+  <property name="model">liststore1</property>
+  <child>
+    <object class="GtkTreeViewColumn" id="test-column">
+      <property name="title">Test</property>
+      <child>
+        <object class="GtkCellRendererText" id="test-renderer"/>
+        <attributes>
+          <attribute name="text">1</attribute>
+        </attributes>
+      </child>
+    </object>
+  </child>
+</object>
+]]></programlisting>
+</example>
+</refsect2>
+
 <!-- ##### SECTION See_Also ##### -->
 <para>
+#GtkTreeViewColumn, #GtkTreeSelection, #GtkTreeDnd, #GtkTreeMode, #GtkTreeSortable, #GtkTreeModelSort, #GtkListStore, #GtkTreeStore, #GtkCellRenderer, #GtkCellEditable, #GtkCellRendererPixbuf, #GtkCellRendererText, #GtkCellRendererToggle
+</para>
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### SECTION Image ##### -->
+
+
+<!-- ##### STRUCT GtkTreeView ##### -->
+<para>
 
 </para>
 
-<!-- ##### ENUM GtkTreeViewDropPosition ##### -->
+
+<!-- ##### SIGNAL GtkTreeView::columns-changed ##### -->
 <para>
 
 </para>
 
-@GTK_TREE_VIEW_DROP_BEFORE: 
-@GTK_TREE_VIEW_DROP_AFTER: 
-@GTK_TREE_VIEW_DROP_INTO_OR_BEFORE: 
-@GTK_TREE_VIEW_DROP_INTO_OR_AFTER: 
+@tree_view: the object which received the signal.
 
-<!-- ##### STRUCT GtkTreeViewPrivate ##### -->
+<!-- ##### SIGNAL GtkTreeView::cursor-changed ##### -->
 <para>
 
 </para>
 
+@tree_view: the object which received the signal.
 
-<!-- ##### STRUCT GtkTreeSelection ##### -->
+<!-- ##### SIGNAL GtkTreeView::expand-collapse-cursor-row ##### -->
 <para>
 
 </para>
 
+@tree_view: the object which received the signal.
+@arg1: 
+@arg2: 
+@arg3: 
+@Returns: 
 
-<!-- ##### USER_FUNCTION GtkTreeViewColumnDropFunc ##### -->
+<!-- ##### SIGNAL GtkTreeView::move-cursor ##### -->
 <para>
 
 </para>
 
-@tree_view: 
-@column: 
-@prev_column: 
-@next_column: 
-@data: 
+@tree_view: the object which received the signal.
+@arg1: 
+@arg2: 
 @Returns: 
 
+<!-- ##### SIGNAL GtkTreeView::row-activated ##### -->
+<para>
+
+</para>
+
+@tree_view: the object which received the signal.
+@arg1: 
+@arg2: 
+
+<!-- ##### SIGNAL GtkTreeView::row-collapsed ##### -->
+<para>
+
+</para>
+
+@tree_view: the object which received the signal.
+@arg1: 
+@arg2: 
 
-<!-- ##### USER_FUNCTION GtkTreeViewDraggableFunc ##### -->
+<!-- ##### SIGNAL GtkTreeView::row-expanded ##### -->
 <para>
 
 </para>
 
-@tree_view: 
-@context: 
-@path: 
-@user_data: 
+@tree_view: the object which received the signal.
+@arg1: 
+@arg2: 
+
+<!-- ##### SIGNAL GtkTreeView::select-all ##### -->
+<para>
+
+</para>
+
+@tree_view: the object which received the signal.
 @Returns: 
 
+<!-- ##### SIGNAL GtkTreeView::select-cursor-parent ##### -->
+<para>
 
-<!-- ##### USER_FUNCTION GtkTreeViewMappingFunc ##### -->
+</para>
+
+@tree_view: the object which received the signal.
+@Returns: 
+
+<!-- ##### SIGNAL GtkTreeView::select-cursor-row ##### -->
 <para>
 
 </para>
 
-@tree_view: 
-@path: 
-@user_data: 
+@tree_view: the object which received the signal.
+@arg1: 
+@Returns: 
+
+<!-- ##### SIGNAL GtkTreeView::set-scroll-adjustments ##### -->
+<para>
+
+</para>
 
+@tree_view: the object which received the signal.
+@arg1: 
+@arg2: 
 
-<!-- ##### USER_FUNCTION GtkTreeViewDroppableFunc ##### -->
+<!-- ##### SIGNAL GtkTreeView::start-interactive-search ##### -->
 <para>
 
 </para>
 
-@tree_view: 
-@context: 
-@path: 
-@pos: 
-@user_data: 
+@tree_view: the object which received the signal.
 @Returns: 
 
+<!-- ##### SIGNAL GtkTreeView::test-collapse-row ##### -->
+<para>
 
-<!-- ##### USER_FUNCTION GtkTreeViewSearchEqualFunc ##### -->
+</para>
+
+@tree_view: the object which received the signal.
+@arg1: 
+@arg2: 
+@Returns: 
+
+<!-- ##### SIGNAL GtkTreeView::test-expand-row ##### -->
 <para>
 
 </para>
 
-@model: 
-@column: 
-@key: 
-@iter: 
-@search_data: 
+@tree_view: the object which received the signal.
+@arg1: 
+@arg2: 
 @Returns: 
 
+<!-- ##### SIGNAL GtkTreeView::toggle-cursor-row ##### -->
+<para>
+
+</para>
+
+@tree_view: the object which received the signal.
+@Returns: 
+
+<!-- ##### SIGNAL GtkTreeView::unselect-all ##### -->
+<para>
+
+</para>
+
+@tree_view: the object which received the signal.
+@Returns: 
+
+<!-- ##### ARG GtkTreeView:enable-grid-lines ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:enable-search ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:enable-tree-lines ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:expander-column ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:fixed-height-mode ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:hadjustment ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:headers-clickable ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:headers-visible ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:hover-expand ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:hover-selection ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:level-indentation ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:model ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:reorderable ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:rubber-banding ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:rules-hint ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:search-column ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:show-expanders ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:tooltip-column ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:vadjustment ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:allow-rules ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:even-row-color ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:expander-size ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:grid-line-pattern ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:grid-line-width ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:horizontal-separator ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:indent-expanders ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:odd-row-color ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:row-ending-details ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:tree-line-pattern ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:tree-line-width ##### -->
+<para>
+
+</para>
+
+<!-- ##### ARG GtkTreeView:vertical-separator ##### -->
+<para>
+
+</para>
+
+<!-- ##### ENUM GtkTreeViewDropPosition ##### -->
+<para>
+An enum for determining where a dropped row goes.
+</para>
+
+@GTK_TREE_VIEW_DROP_BEFORE: dropped row is inserted before
+@GTK_TREE_VIEW_DROP_AFTER: dropped row is inserted after
+@GTK_TREE_VIEW_DROP_INTO_OR_BEFORE: dropped row becomes a child or is inserted before
+@GTK_TREE_VIEW_DROP_INTO_OR_AFTER: dropped row becomes a child or is inserted after
+
+<!-- ##### STRUCT GtkTreeViewPrivate ##### -->
+<para>
+A private struct for internal use only.  The definition of this
+structure is not publically available.
+</para>
+
+
+<!-- ##### USER_FUNCTION GtkTreeViewColumnDropFunc ##### -->
+<para>
+Function type for determining whether @column can be dropped in a
+particular spot (as determined by @prev_column and @next_column).  In
+left to right locales, @prev_column is on the left of the potential drop
+spot, and @next_column is on the right.  In right to left mode, this is
+reversed.  This function should return %TRUE if the spot is a valid drop
+spot.  Please note that returning %TRUE does not actually indicate that
+the column drop was made, but is meant only to indicate a possible drop
+spot to the user.
+</para>
+
+@tree_view: A #GtkTreeView
+@column: The #GtkTreeViewColumn being dragged
+@prev_column: A #GtkTreeViewColumn on one side of @column
+@next_column: A #GtkTreeViewColumn on the other side of @column
+@data: user data
+@Returns: %TRUE, if #column can be dropped in this spot
+
+
+<!-- ##### USER_FUNCTION GtkTreeViewMappingFunc ##### -->
+<para>
+Function used for #gtk_tree_view_map_expanded_rows.
+</para>
+
+@tree_view: A #GtkTreeView
+@path: The path that's expanded
+@user_data: user data
+
+
+<!-- ##### USER_FUNCTION GtkTreeViewSearchEqualFunc ##### -->
+<para>
+A function used for checking whether a row in @model matches
+a search key string entered by the user. Note the return value
+is reversed from what you would normally expect, though it
+has some similarity to strcmp() returning 0 for equal strings.
+</para>
+
+@model: the #GtkTreeModel being searched
+@column: the search column set by gtk_tree_view_set_search_column()
+@key: the key string to compare with
+@iter: a #GtkTreeIter pointing the row of @model that should be compared
+  with @key.
+@search_data: user data from gtk_tree_view_set_search_equal_func()
+@Returns: %FALSE if the row matches, %TRUE otherwise.
+
 
 <!-- ##### FUNCTION gtk_tree_view_new ##### -->
 <para>
 
 </para>
 
+@void: 
 @Returns: 
 
 
+<!-- ##### FUNCTION gtk_tree_view_get_level_indentation ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_get_show_expanders ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_set_level_indentation ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@indentation: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_set_show_expanders ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@enabled: 
+
+
 <!-- ##### FUNCTION gtk_tree_view_new_with_model ##### -->
 <para>
 
@@ -130,8 +515,6 @@ GtkTreeView
 
 @tree_view: 
 @model: 
-<!-- # Unused Parameters # -->
-@tree_model: 
 
 
 <!-- ##### FUNCTION gtk_tree_view_get_selection ##### -->
@@ -150,8 +533,6 @@ GtkTreeView
 
 @tree_view: 
 @Returns: 
-<!-- # Unused Parameters # -->
-@layout: 
 
 
 <!-- ##### FUNCTION gtk_tree_view_set_hadjustment ##### -->
@@ -161,8 +542,6 @@ GtkTreeView
 
 @tree_view: 
 @adjustment: 
-<!-- # Unused Parameters # -->
-@layout: 
 
 
 <!-- ##### FUNCTION gtk_tree_view_get_vadjustment ##### -->
@@ -172,8 +551,6 @@ GtkTreeView
 
 @tree_view: 
 @Returns: 
-<!-- # Unused Parameters # -->
-@layout: 
 
 
 <!-- ##### FUNCTION gtk_tree_view_set_vadjustment ##### -->
@@ -183,8 +560,6 @@ GtkTreeView
 
 @tree_view: 
 @adjustment: 
-<!-- # Unused Parameters # -->
-@layout: 
 
 
 <!-- ##### FUNCTION gtk_tree_view_get_headers_visible ##### -->
@@ -213,6 +588,15 @@ GtkTreeView
 @tree_view: 
 
 
+<!-- ##### FUNCTION gtk_tree_view_get_headers_clickable ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@Returns: 
+
+
 <!-- ##### FUNCTION gtk_tree_view_set_headers_clickable ##### -->
 <para>
 
@@ -220,8 +604,6 @@ GtkTreeView
 
 @tree_view: 
 @setting: 
-<!-- # Unused Parameters # -->
-@active: 
 
 
 <!-- ##### FUNCTION gtk_tree_view_set_rules_hint ##### -->
@@ -339,37 +721,83 @@ GtkTreeView
 @column: 
 
 
-<!-- ##### FUNCTION gtk_tree_view_get_expander_column ##### -->
+<!-- ##### FUNCTION gtk_tree_view_get_expander_column ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_set_column_drag_function ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@func: 
+@user_data: 
+@destroy: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_scroll_to_point ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@tree_x: 
+@tree_y: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_scroll_to_cell ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@path: 
+@column: 
+@use_align: 
+@row_align: 
+@col_align: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_set_cursor ##### -->
 <para>
 
 </para>
 
 @tree_view: 
-@Returns: 
+@path: 
+@focus_column: 
+@start_editing: 
 
 
-<!-- ##### FUNCTION gtk_tree_view_set_column_drag_function ##### -->
+<!-- ##### FUNCTION gtk_tree_view_set_cursor_on_cell ##### -->
 <para>
 
 </para>
 
 @tree_view: 
-@func: 
-@user_data: 
-@destroy: 
+@path: 
+@focus_column: 
+@focus_cell: 
+@start_editing: 
 
 
-<!-- ##### FUNCTION gtk_tree_view_scroll_to_point ##### -->
+<!-- ##### FUNCTION gtk_tree_view_get_cursor ##### -->
 <para>
 
 </para>
 
 @tree_view: 
-@tree_x
-@tree_y
+@path
+@focus_column
 
 
-<!-- ##### FUNCTION gtk_tree_view_scroll_to_cell ##### -->
+<!-- ##### FUNCTION gtk_tree_view_row_activated ##### -->
 <para>
 
 </para>
@@ -377,22 +805,17 @@ GtkTreeView
 @tree_view: 
 @path: 
 @column: 
-@use_align: 
-@row_align: 
-@col_align: 
 
 
-<!-- ##### FUNCTION gtk_tree_view_row_activated ##### -->
+<!-- ##### FUNCTION gtk_tree_view_expand_all ##### -->
 <para>
 
 </para>
 
 @tree_view: 
-@path: 
-@column: 
 
 
-<!-- ##### FUNCTION gtk_tree_view_expand_all ##### -->
+<!-- ##### FUNCTION gtk_tree_view_collapse_all ##### -->
 <para>
 
 </para>
@@ -400,12 +823,13 @@ GtkTreeView
 @tree_view: 
 
 
-<!-- ##### FUNCTION gtk_tree_view_collapse_all ##### -->
+<!-- ##### FUNCTION gtk_tree_view_expand_to_path ##### -->
 <para>
 
 </para>
 
 @tree_view: 
+@path: 
 
 
 <!-- ##### FUNCTION gtk_tree_view_expand_row ##### -->
@@ -467,24 +891,12 @@ GtkTreeView
 @Returns: 
 
 
-<!-- ##### FUNCTION gtk_tree_view_set_cursor ##### -->
-<para>
-
-</para>
-
-@tree_view: 
-@path: 
-@focus_column: 
-@start_editing: 
-
-
 <!-- ##### FUNCTION gtk_tree_view_get_path_at_pos ##### -->
 <para>
 
 </para>
 
 @tree_view: 
-@window: 
 @x: 
 @y: 
 @path: 
@@ -525,19 +937,63 @@ GtkTreeView
 @visible_rect: 
 
 
-<!-- ##### FUNCTION gtk_tree_view_widget_to_tree_coords ##### -->
+<!-- ##### FUNCTION gtk_tree_view_get_visible_range ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@start_path: 
+@end_path: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_get_bin_window ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_convert_bin_window_to_tree_coords ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@bx: 
+@by: 
+@tx: 
+@ty: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_convert_bin_window_to_widget_coords ##### -->
 <para>
 
 </para>
 
 @tree_view: 
+@bx: 
+@by: 
 @wx: 
 @wy: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_convert_tree_to_bin_window_coords ##### -->
+<para>
+
+</para>
+
+@tree_view: 
 @tx: 
 @ty: 
+@bx: 
+@by: 
 
 
-<!-- ##### FUNCTION gtk_tree_view_tree_to_widget_coords ##### -->
+<!-- ##### FUNCTION gtk_tree_view_convert_tree_to_widget_coords ##### -->
 <para>
 
 </para>
@@ -549,31 +1005,51 @@ GtkTreeView
 @wy: 
 
 
-<!-- ##### FUNCTION gtk_tree_view_set_rows_drag_source ##### -->
+<!-- ##### FUNCTION gtk_tree_view_convert_widget_to_bin_window_coords ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@wx: 
+@wy: 
+@bx: 
+@by: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_convert_widget_to_tree_coords ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@wx: 
+@wy: 
+@tx: 
+@ty: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_enable_model_drag_dest ##### -->
 <para>
 
 </para>
 
 @tree_view: 
-@start_button_mask: 
 @targets: 
 @n_targets: 
 @actions: 
-@row_draggable_func: 
-@user_data: 
 
 
-<!-- ##### FUNCTION gtk_tree_view_set_rows_drag_dest ##### -->
+<!-- ##### FUNCTION gtk_tree_view_enable_model_drag_source ##### -->
 <para>
 
 </para>
 
 @tree_view: 
+@start_button_mask: 
 @targets: 
 @n_targets: 
 @actions: 
-@location_droppable_func: 
-@user_data: 
 
 
 <!-- ##### FUNCTION gtk_tree_view_unset_rows_drag_source ##### -->
@@ -642,8 +1118,6 @@ GtkTreeView
 
 @tree_view: 
 @enable_search: 
-<!-- # Unused Parameters # -->
-@use_search: 
 
 
 <!-- ##### FUNCTION gtk_tree_view_get_enable_search ##### -->
@@ -691,23 +1165,46 @@ GtkTreeView
 @search_equal_func: 
 @search_user_data: 
 @search_destroy: 
-<!-- # Unused Parameters # -->
-@search_compare_func: 
-@search_data: 
 
 
-<!-- ##### USER_FUNCTION GtkTreeDestroyCountFunc ##### -->
+<!-- ##### FUNCTION gtk_tree_view_get_search_entry ##### -->
 <para>
 
 </para>
 
 @tree_view: 
-@path: 
-@children: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_set_search_entry ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@entry: 
+
+
+<!-- ##### USER_FUNCTION GtkTreeViewSearchPositionFunc ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@search_dialog: 
 @user_data: 
 
 
-<!-- ##### FUNCTION gtk_tree_view_set_destroy_count_func ##### -->
+<!-- ##### FUNCTION gtk_tree_view_get_search_position_func ##### -->
+<para>
+
+</para>
+
+@tree_view: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_set_search_position_func ##### -->
 <para>
 
 </para>
@@ -718,171 +1215,241 @@ GtkTreeView
 @destroy: 
 
 
-<!-- ##### SIGNAL GtkTreeView::columns-changed ##### -->
+<!-- ##### FUNCTION gtk_tree_view_get_fixed_height_mode ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
+@tree_view: 
+@Returns: 
+
 
-<!-- ##### SIGNAL GtkTreeView::expand-collapse-cursor-row ##### -->
+<!-- ##### FUNCTION gtk_tree_view_set_fixed_height_mode ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
-@arg1: 
-@arg2: 
-@arg3: 
+@tree_view: 
+@enable: 
 
-<!-- ##### SIGNAL GtkTreeView::move-cursor ##### -->
+
+<!-- ##### FUNCTION gtk_tree_view_get_hover_selection ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
-@arg1: 
-@arg2: 
+@tree_view: 
+@Returns: 
 
-<!-- ##### SIGNAL GtkTreeView::row-activated ##### -->
+
+<!-- ##### FUNCTION gtk_tree_view_set_hover_selection ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
-@arg1: 
-@arg2: 
+@tree_view: 
+@hover: 
 
-<!-- ##### SIGNAL GtkTreeView::row-collapsed ##### -->
+
+<!-- ##### FUNCTION gtk_tree_view_get_hover_expand ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
-@arg1: 
-@arg2: 
+@tree_view: 
+@Returns: 
 
-<!-- ##### SIGNAL GtkTreeView::row-expanded ##### -->
+
+<!-- ##### FUNCTION gtk_tree_view_set_hover_expand ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
-@arg1: 
-@arg2: 
+@tree_view: 
+@expand: 
 
-<!-- ##### SIGNAL GtkTreeView::select-all ##### -->
+
+<!-- ##### USER_FUNCTION GtkTreeDestroyCountFunc ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
+@tree_view: 
+@path: 
+@children: 
+@user_data: 
 
-<!-- ##### SIGNAL GtkTreeView::select-cursor-parent ##### -->
+
+<!-- ##### FUNCTION gtk_tree_view_set_destroy_count_func ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
+@tree_view: 
+@func: 
+@data: 
+@destroy: 
+
 
-<!-- ##### SIGNAL GtkTreeView::select-cursor-row ##### -->
+<!-- ##### USER_FUNCTION GtkTreeViewRowSeparatorFunc ##### -->
 <para>
-
+Function type for determining whether the row pointed to by @iter should
+be rendered as a separator. A common way to implement this is to have a
+boolean column in the model, whose values the #GtkTreeViewRowSeparatorFunc
+returns.
 </para>
 
-@treeview: the object which received the signal.
-@arg1: 
+@model: the #GtkTreeModel
+@iter: a #GtkTreeIter pointing at a row in @model
+@data: user data
+@Returns: %TRUE if the row is a separator
 
-<!-- ##### SIGNAL GtkTreeView::set-scroll-adjustments ##### -->
+
+<!-- ##### FUNCTION gtk_tree_view_get_row_separator_func ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
-@arg1: 
-@arg2: 
+@tree_view: 
+@Returns: 
 
-<!-- ##### SIGNAL GtkTreeView::start-interactive-search ##### -->
+
+<!-- ##### FUNCTION gtk_tree_view_set_row_separator_func ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
+@tree_view: 
+@func: 
+@data: 
+@destroy: 
+
 
-<!-- ##### SIGNAL GtkTreeView::test-collapse-row ##### -->
+<!-- ##### FUNCTION gtk_tree_view_get_rubber_banding ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
-@arg1: 
-@arg2: 
+@tree_view: 
 @Returns: 
 
-<!-- ##### SIGNAL GtkTreeView::test-expand-row ##### -->
+
+<!-- ##### FUNCTION gtk_tree_view_set_rubber_banding ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
-@arg1: 
-@arg2: 
-@Returns: 
+@tree_view: 
+@enable: 
 
-<!-- ##### SIGNAL GtkTreeView::toggle-cursor-row ##### -->
+
+<!-- ##### FUNCTION gtk_tree_view_is_rubber_banding_active ##### -->
 <para>
 
 </para>
 
-@treeview: the object which received the signal.
+@tree_view: 
+@Returns: 
 
-<!-- ##### ARG GtkTreeView:model ##### -->
+
+<!-- ##### FUNCTION gtk_tree_view_get_enable_tree_lines ##### -->
 <para>
 
 </para>
 
-<!-- ##### ARG GtkTreeView:hadjustment ##### -->
+@tree_view: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_set_enable_tree_lines ##### -->
 <para>
 
 </para>
 
-<!-- ##### ARG GtkTreeView:vadjustment ##### -->
-<para>
+@tree_view: 
+@enabled: 
 
+
+<!-- ##### ENUM GtkTreeViewGridLines ##### -->
+<para>
+Used to indicate which grid lines to draw in a tree view.
 </para>
 
-<!-- ##### ARG GtkTreeView:headers-visible ##### -->
+@GTK_TREE_VIEW_GRID_LINES_NONE: No grid lines.
+@GTK_TREE_VIEW_GRID_LINES_HORIZONTAL: Horizontal grid lines.
+@GTK_TREE_VIEW_GRID_LINES_VERTICAL: Vertical grid lines.
+@GTK_TREE_VIEW_GRID_LINES_BOTH: Horizontal and vertical grid lines.
+
+<!-- ##### FUNCTION gtk_tree_view_get_grid_lines ##### -->
 <para>
 
 </para>
 
-<!-- ##### ARG GtkTreeView:headers-clickable ##### -->
+@tree_view: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_set_grid_lines ##### -->
 <para>
 
 </para>
 
-<!-- ##### ARG GtkTreeView:expander-column ##### -->
+@tree_view: 
+@grid_lines: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_set_tooltip_row ##### -->
 <para>
 
 </para>
 
-<!-- ##### ARG GtkTreeView:reorderable ##### -->
+@tree_view: 
+@tooltip: 
+@path: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_set_tooltip_cell ##### -->
 <para>
 
 </para>
 
-<!-- ##### ARG GtkTreeView:rules-hint ##### -->
+@tree_view: 
+@tooltip: 
+@path: 
+@column: 
+@cell: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_get_tooltip_context ##### -->
 <para>
 
 </para>
 
-<!-- ##### ARG GtkTreeView:enable-search ##### -->
+@tree_view: 
+@x: 
+@y: 
+@keyboard_tip: 
+@model: 
+@path: 
+@iter: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_get_tooltip_column ##### -->
 <para>
 
 </para>
 
-<!-- ##### ARG GtkTreeView:search-column ##### -->
+@tree_view: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_tree_view_set_tooltip_column ##### -->
 <para>
 
 </para>
 
+@tree_view: 
+@column: 
+
+