Initial commit.
[gnt.git] / gnttree.h
blob9be004d052bafc34dc47d83044dc8707b97587b1
1 /**
2 * @file gnttree.h Tree API
3 * @ingroup gnt
4 */
5 /*
6 * GNT - The GLib Ncurses Toolkit
8 * GNT is the legal property of its developers, whose names are too numerous
9 * to list here. Please refer to the COPYRIGHT file distributed with this
10 * source distribution.
12 * This library is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
27 #ifndef GNT_TREE_H
28 #define GNT_TREE_H
30 #include "gntwidget.h"
31 #include "gnt.h"
32 #include "gntcolors.h"
33 #include "gntkeys.h"
34 #include "gnttextview.h"
36 #define GNT_TYPE_TREE (gnt_tree_get_gtype())
37 #define GNT_TREE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNT_TYPE_TREE, GntTree))
38 #define GNT_TREE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GNT_TYPE_TREE, GntTreeClass))
39 #define GNT_IS_TREE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNT_TYPE_TREE))
40 #define GNT_IS_TREE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GNT_TYPE_TREE))
41 #define GNT_TREE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GNT_TYPE_TREE, GntTreeClass))
43 typedef struct _GntTree GntTree;
44 typedef struct _GntTreePriv GntTreePriv;
45 typedef struct _GntTreeClass GntTreeClass;
47 typedef struct _GntTreeRow GntTreeRow;
48 typedef struct _GntTreeCol GntTreeCol;
50 typedef enum _GntTreeColumnFlag {
51 GNT_TREE_COLUMN_INVISIBLE = 1 << 0,
52 GNT_TREE_COLUMN_FIXED_SIZE = 1 << 1,
53 GNT_TREE_COLUMN_BINARY_DATA = 1 << 2,
54 GNT_TREE_COLUMN_RIGHT_ALIGNED = 1 << 3,
55 } GntTreeColumnFlag;
57 struct _GntTree
59 GntWidget parent;
61 GntTreeRow *current; /* current selection */
63 GntTreeRow *top; /* The topmost visible item */
64 GntTreeRow *bottom; /* The bottommost visible item */
66 GntTreeRow *root; /* The root of all evil */
68 GList *list; /* List of GntTreeRow s */
69 GHashTable *hash; /* We need this for quickly referencing the rows */
70 guint (*hash_func)(gconstpointer);
71 gboolean (*hash_eq_func)(gconstpointer, gconstpointer);
72 GDestroyNotify key_destroy;
73 GDestroyNotify value_destroy;
75 int ncol; /* No. of columns */
76 struct _GntTreeColInfo
78 int width;
79 char *title;
80 int width_ratio;
81 GntTreeColumnFlag flags;
82 } *columns; /* Would a GList be better? */
83 gboolean show_title;
84 gboolean show_separator; /* Whether to show column separators */
86 GntTreePriv *priv;
89 struct _GntTreeClass
91 GntWidgetClass parent;
93 void (*selection_changed)(GntTreeRow *old, GntTreeRow * current);
94 void (*toggled)(GntTree *tree, gpointer key);
96 void (*gnt_reserved1)(void);
97 void (*gnt_reserved2)(void);
98 void (*gnt_reserved3)(void);
99 void (*gnt_reserved4)(void);
102 G_BEGIN_DECLS
105 * @return The GType for GntTree
107 GType gnt_tree_get_gtype(void);
110 * Create a tree with one column.
112 * @return The newly created tree
114 * @see gnt_tree_new_with_columns
116 GntWidget * gnt_tree_new(void);
119 * Create a tree with a specified number of columns.
121 * @param columns Number of columns
123 * @return The newly created tree
125 * @see gnt_tree_new
127 GntWidget * gnt_tree_new_with_columns(int columns);
130 * The number of rows the tree should display at a time.
132 * @param tree The tree
133 * @param rows The number of rows
135 void gnt_tree_set_visible_rows(GntTree *tree, int rows);
138 * Get the number visible rows.
140 * @param tree The tree
142 * @return The number of visible rows
144 int gnt_tree_get_visible_rows(GntTree *tree);
147 * Scroll the contents of the tree.
149 * @param tree The tree
150 * @param count If positive, the tree will be scrolled down by count rows,
151 * otherwise, it will be scrolled up by count rows.
153 void gnt_tree_scroll(GntTree *tree, int count);
156 * Insert a row in the tree.
158 * @param tree The tree
159 * @param key The key for the row
160 * @param row The row to insert
161 * @param parent The key for the parent row
162 * @param bigbro The key for the row to insert the new row after.
164 * @return The inserted row
166 * @see gnt_tree_create_row
167 * @see gnt_tree_add_row_last
168 * @see gnt_tree_add_choice
170 GntTreeRow * gnt_tree_add_row_after(GntTree *tree, void *key, GntTreeRow *row, void *parent, void *bigbro);
173 * Insert a row at the end of the tree.
175 * @param tree The tree
176 * @param key The key for the row
177 * @param row The row to insert
178 * @param parent The key for the parent row
180 * @return The inserted row
182 * @see gnt_tree_create_row
183 * @see gnt_tree_add_row_after
184 * @see gnt_tree_add_choice
186 GntTreeRow * gnt_tree_add_row_last(GntTree *tree, void *key, GntTreeRow *row, void *parent);
189 * Get the key for the selected row.
191 * @param tree The tree
193 * @return The key for the selected row
195 gpointer gnt_tree_get_selection_data(GntTree *tree);
198 * Get the text displayed for the selected row.
200 * @param tree The tree
202 * @return The text, which needs to be freed by the caller
203 * @see gnt_tree_get_row_text_list
204 * @see gnt_tree_get_selection_text_list
206 char * gnt_tree_get_selection_text(GntTree *tree);
209 * Get a list of text for a row.
211 * @param tree The tree
212 * @param key A key corresponding to the row in question. If key
213 * is @c NULL, the text list for the selected row will
214 * be returned.
216 * @return A list of texts of a row. The list and its data should be
217 * freed by the caller. The caller should make sure that if
218 * any column of the tree contains binary data, it's not freed.
219 * @see gnt_tree_get_selection_text_list
220 * @see gnt_tree_get_selection_text
222 GList * gnt_tree_get_row_text_list(GntTree *tree, gpointer key);
225 * Get a list of text of the current row.
227 * @param tree The tree
229 * @return A list of texts of the currently selected row. The list
230 * and its data should be freed by the caller. The caller
231 * should make sure that if any column of the tree contains
232 * binary data, it's not freed.
233 * @see gnt_tree_get_row_text_list
234 * @see gnt_tree_get_selection_text
236 GList * gnt_tree_get_selection_text_list(GntTree *tree);
239 * Returns the list of rows in the tree.
241 * @param tree The tree
243 * @return The list of the rows. The list should not be modified by the caller.
245 GList *gnt_tree_get_rows(GntTree *tree);
248 * Remove a row from the tree.
250 * @param tree The tree
251 * @param key The key for the row to remove
253 void gnt_tree_remove(GntTree *tree, gpointer key);
256 * Remove all the item from the tree.
258 * @param tree The tree
260 void gnt_tree_remove_all(GntTree *tree);
263 * Get the visible line number of the selected row.
265 * @param tree The tree
267 * @return The line number of the currently selected row
269 int gnt_tree_get_selection_visible_line(GntTree *tree);
272 * Change the text of a column in a row.
274 * @param tree The tree
275 * @param key The key for the row
276 * @param colno The index of the column
277 * @param text The new text
279 void gnt_tree_change_text(GntTree *tree, gpointer key, int colno, const char *text);
282 * Add a checkable item in the tree.
284 * @param tree The tree
285 * @param key The key for the row
286 * @param row The row to add
287 * @param parent The parent of the row, or @c NULL
288 * @param bigbro The row to insert after, or @c NULL
290 * @return The row inserted.
292 * @see gnt_tree_create_row
293 * @see gnt_tree_create_row_from_list
294 * @see gnt_tree_add_row_last
295 * @see gnt_tree_add_row_after
297 GntTreeRow * gnt_tree_add_choice(GntTree *tree, void *key, GntTreeRow *row, void *parent, void *bigbro);
300 * Set whether a checkable item is checked or not.
302 * @param tree The tree
303 * @param key The key for the row
304 * @param set @c TRUE if the item should be checked, @c FALSE if not
306 void gnt_tree_set_choice(GntTree *tree, void *key, gboolean set);
309 * Return whether a row is selected or not, where the row is a checkable item.
311 * @param tree The tree
312 * @param key The key for the row
314 * @return @c TRUE if the row is checked, @c FALSE otherwise.
316 gboolean gnt_tree_get_choice(GntTree *tree, void *key);
319 * Set flags for the text in a row in the tree.
321 * @param tree The tree
322 * @param key The key for the row
323 * @param flags The flags to set
325 void gnt_tree_set_row_flags(GntTree *tree, void *key, GntTextFormatFlags flags);
328 * Select a row.
330 * @param tree The tree
331 * @param key The key of the row to select
333 void gnt_tree_set_selected(GntTree *tree , void *key);
336 * Create a row to insert in the tree.
338 * @param tree The tree
339 * @param ... A string for each column in the tree
341 * @return The row
343 * @see gnt_tree_create_row_from_list
344 * @see gnt_tree_add_row_after
345 * @see gnt_tree_add_row_last
346 * @see gnt_tree_add_choice
348 GntTreeRow * gnt_tree_create_row(GntTree *tree, ...);
351 * Create a row from a list of text.
353 * @param tree The tree
354 * @param list The list containing the text for each column
356 * @return The row
358 * @see gnt_tree_create_row
359 * @see gnt_tree_add_row_after
360 * @see gnt_tree_add_row_last
361 * @see gnt_tree_add_choice
363 GntTreeRow * gnt_tree_create_row_from_list(GntTree *tree, GList *list);
366 * Set the width of a column in the tree.
368 * @param tree The tree
369 * @param col The index of the column
370 * @param width The width for the column
372 * @see gnt_tree_set_column_width_ratio
373 * @see gnt_tree_set_column_resizable
375 void gnt_tree_set_col_width(GntTree *tree, int col, int width);
378 * Set the title for a column.
380 * @param tree The tree
381 * @param index The index of the column
382 * @param title The title for the column
384 * @see gnt_tree_set_column_titles
385 * @see gnt_tree_set_show_title
387 * @since 2.0.0 (gnt), 2.1.0 (pidgin)
389 void gnt_tree_set_column_title(GntTree *tree, int index, const char *title);
392 * Set the titles of the columns
394 * @param tree The tree
395 * @param ... One title for each column in the tree
397 * @see gnt_tree_set_column_title
398 * @see gnt_tree_set_show_title
400 void gnt_tree_set_column_titles(GntTree *tree, ...);
403 * Set whether to display the title of the columns.
405 * @param tree The tree
406 * @param set If @c TRUE, the column titles are displayed
408 * @see gnt_tree_set_column_title
409 * @see gnt_tree_set_column_titles
411 void gnt_tree_set_show_title(GntTree *tree, gboolean set);
414 * Set the compare function for sorting the data.
416 * @param tree The tree
417 * @param func The comparison function, which is used to compare
418 * the keys
420 * @see gnt_tree_sort_row
422 void gnt_tree_set_compare_func(GntTree *tree, GCompareFunc func);
425 * Set whether a row, which has child rows, should be expanded.
427 * @param tree The tree
428 * @param key The key of the row
429 * @param expanded Whether to expand the child rows
431 void gnt_tree_set_expanded(GntTree *tree, void *key, gboolean expanded);
434 * Set whether to show column separators.
436 * @param tree The tree
437 * @param set If @c TRUE, the column separators are displayed
439 void gnt_tree_set_show_separator(GntTree *tree, gboolean set);
442 * Sort a row in the tree.
444 * @param tree The tree
445 * @param row The row to sort
447 * @see gnt_tree_set_compare_func
449 void gnt_tree_sort_row(GntTree *tree, void *row);
452 * Automatically adjust the width of the columns in the tree.
454 * @param tree The tree
456 void gnt_tree_adjust_columns(GntTree *tree);
459 * Set the hash functions to use to hash, compare and free the keys.
461 * @param tree The tree
462 * @param hash The hashing function
463 * @param eq The function to compare keys
464 * @param kd The function to use to free the keys when a row is removed
465 * from the tree
467 void gnt_tree_set_hash_fns(GntTree *tree, gpointer hash, gpointer eq, gpointer kd);
470 * Set whether a column is visible or not.
471 * This can be useful when, for example, we want to store some data
472 * which we don't want/need to display.
474 * @param tree The tree
475 * @param col The index of the column
476 * @param vis If @c FALSE, the column will not be displayed
478 void gnt_tree_set_column_visible(GntTree *tree, int col, gboolean vis);
481 * Set whether a column can be resized to keep the same ratio when the
482 * tree is resized.
484 * @param tree The tree
485 * @param col The index of the column
486 * @param res If @c FALSE, the column will not be resized when the
487 * tree is resized
489 * @see gnt_tree_set_col_width
490 * @see gnt_tree_set_column_width_ratio
492 * @since 2.0.0 (gnt), 2.1.0 (pidgin)
494 void gnt_tree_set_column_resizable(GntTree *tree, int col, gboolean res);
497 * Set whether data in a column should be considered as binary data, and
498 * not as strings. A column containing binary data will be display empty text.
500 * @param tree The tree
501 * @param col The index of the column
502 * @param bin @c TRUE if the data for the column is binary
504 void gnt_tree_set_column_is_binary(GntTree *tree, int col, gboolean bin);
507 * Set whether text in a column should be right-aligned.
509 * @param tree The tree
510 * @param col The index of the column
511 * @param right @c TRUE if the text in the column should be right aligned
513 * @since 2.0.0 (gnt), 2.1.0 (pidgin)
515 void gnt_tree_set_column_is_right_aligned(GntTree *tree, int col, gboolean right);
518 * Set column widths to use when calculating column widths after a tree
519 * is resized.
521 * @param tree The tree
522 * @param cols Array of widths. The width must have the same number
523 * of entries as the number of columns in the tree, or
524 * end with a negative value for a column-width.
526 * @see gnt_tree_set_col_width
527 * @see gnt_tree_set_column_resizable
529 * @since 2.0.0 (gnt), 2.1.0 (pidgin)
531 void gnt_tree_set_column_width_ratio(GntTree *tree, int cols[]);
534 * Set the column to use for typeahead searching.
536 * @param tree The tree
537 * @param col The index of the column
539 * @since 2.0.0 (gnt), 2.1.0 (pidgin)
541 void gnt_tree_set_search_column(GntTree *tree, int col);
544 * Check whether the user is currently in the middle of a search.
546 * @param tree The tree
547 * @return @c TRUE if the user is searching, @c FALSE otherwise.
549 * @since 2.0.0 (gnt), 2.1.0 (pidgin)
551 gboolean gnt_tree_is_searching(GntTree *tree);
554 * Set a custom search function.
556 * @param tree The tree
557 * @param func The custom search function. The search function is
558 * sent the tree itself, the key of a row, the search
559 * string and the content of row in the search column.
560 * If the function returns @c TRUE, the row is dislayed,
561 * otherwise it's not.
563 * @since 2.0.0 (gnt), 2.1.0 (pidgin)
565 void gnt_tree_set_search_function(GntTree *tree,
566 gboolean (*func)(GntTree *tree, gpointer key, const char *search, const char *current));
568 G_END_DECLS
570 #endif /* GNT_TREE_H */