Include a Other Software section in Help file
[geeqie.git] / src / ui_tree_edit.h
index 72ca94b..bd21643 100644 (file)
@@ -43,7 +43,7 @@ struct _TreeEditData
 
 
 /**
- * \headerfile  tree_edit_by_path
+ * @headerfile  tree_edit_by_path
  * edit_func: return TRUE if rename successful, FALSE on failure.
  */
 gboolean tree_edit_by_path(GtkTreeView *tree, GtkTreePath *tpath, gint column, const gchar *text,
@@ -51,48 +51,48 @@ gboolean tree_edit_by_path(GtkTreeView *tree, GtkTreePath *tpath, gint column, c
 
 
 /**
- * \headerfile tree_view_get_cell_origin
+ * @headerfile tree_view_get_cell_origin
  * returns location of cell in screen coordinates
  */
 gboolean tree_view_get_cell_origin(GtkTreeView *widget, GtkTreePath *tpath, gint column, gboolean text_cell_only,
                                   gint *x, gint *y, gint *width, gint *height);
 
 /**
- * \headerfile tree_view_get_cell_clamped
+ * @headerfile tree_view_get_cell_clamped
  * similar to above, but limits the returned area to that of the tree window
  */
 void tree_view_get_cell_clamped(GtkTreeView *widget, GtkTreePath *tpath, gint column, gboolean text_cell_only,
                               gint *x, gint *y, gint *width, gint *height);
 
 /**
- * \headerfile tree_view_row_get_visibility
+ * @headerfile tree_view_row_get_visibility
  * return 0 = row visible, -1 = row is above, 1 = row is below visible region \n
  * if fully_visible is TRUE, the behavior changes to return -1/1 if _any_ part of the cell is out of view
  */
 gint tree_view_row_get_visibility(GtkTreeView *widget, GtkTreeIter *iter, gboolean fully_visible);
 
 /**
- * \headerfile tree_view_row_make_visible
+ * @headerfile tree_view_row_make_visible
  * scrolls to make row visible, if necessary
  * return is same as above (before the scroll)
  */
 gint tree_view_row_make_visible(GtkTreeView *widget, GtkTreeIter *iter, gboolean center);
 
 /**
- * \headerfile tree_view_move_cursor_away
+ * @headerfile tree_view_move_cursor_away
  * if iter is location of cursor, moves cursor to nearest row
  */
 gboolean tree_view_move_cursor_away(GtkTreeView *widget, GtkTreeIter *iter, gboolean only_selected);
 
 /**
- * \headerfile tree_path_to_row
+ * @headerfile tree_path_to_row
  * utility to return row position of given GtkTreePath
  */
 gint tree_path_to_row(GtkTreePath *tpath);
 
 
 /**
- * \headerfile shift_color
+ * @headerfile shift_color
  * shifts a GdkColor values lighter or darker \n
  * val is percent from 1 to 100, or -1 for default (usually 10%) \n
  * direction is -1 darker, 0 auto, 1 lighter
@@ -100,7 +100,7 @@ gint tree_path_to_row(GtkTreePath *tpath);
 void shift_color(GdkColor *src, gshort val, gint direction);
 
 /**
- * \headerfile style_shift_color
+ * @headerfile style_shift_color
  * Shifts a style's color for given state
  * Useful for alternating dark/light rows in lists. \n
  *
@@ -109,13 +109,13 @@ void shift_color(GdkColor *src, gshort val, gint direction);
 void style_shift_color(GtkStyle *style, GtkStateType type, gshort shift_value, gint direction);
 
 /**
- * \def STYLE_SHIFT_STANDARD
+ * @def STYLE_SHIFT_STANDARD
  * The standard shift percent for alternating list row colors
  */
 #define STYLE_SHIFT_STANDARD 10
 
 /**
- * \headerfile widget_auto_scroll_start
+ * @headerfile widget_auto_scroll_start
  * auto scroll, set scroll_speed or region_size to -1 to their respective the defaults
  * notify_func will be called before a scroll, return FALSE to turn off autoscroll
  */