Mercurial > pidgin.yaz
annotate finch/libgnt/gnttree.c @ 29220:88d889b54df4
Fix building finch & libgnt using older gcc or non-gcc compilers that do
not understand G_GNUC_NULL_TERMINATED
author | Stu Tomlinson <stu@nosnilmot.com> |
---|---|
date | Thu, 31 Dec 2009 17:33:35 +0000 |
parents | a18f421696dc |
children | 7b6933cd7fd3 |
rev | line source |
---|---|
17718
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
1 /** |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
2 * GNT - The GLib Ncurses Toolkit |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
3 * |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
4 * GNT is the legal property of its developers, whose names are too numerous |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
5 * to list here. Please refer to the COPYRIGHT file distributed with this |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
6 * source distribution. |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
7 * |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
8 * This library is free software; you can redistribute it and/or modify |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
9 * it under the terms of the GNU General Public License as published by |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
10 * the Free Software Foundation; either version 2 of the License, or |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
11 * (at your option) any later version. |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
12 * |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
13 * This program is distributed in the hope that it will be useful, |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
16 * GNU General Public License for more details. |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
17 * |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
18 * You should have received a copy of the GNU General Public License |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
19 * along with this program; if not, write to the Free Software |
19680
44b4e8bd759b
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
19371
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
17718
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
21 */ |
8410511f4dbb
applied changes from 016401bd409e6229fae0ab1e80d9fef9365511b3
Eric Polino <aluink@pidgin.im>
parents:
16585
diff
changeset
|
22 |
28984
a18f421696dc
Fix showing umlauts etc. on non-utf8 locales.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
28882
diff
changeset
|
23 #include "gntinternal.h" |
15818 | 24 #include "gntmarshal.h" |
25 #include "gntstyle.h" | |
26 #include "gnttree.h" | |
27 #include "gntutils.h" | |
28 | |
29 #include <string.h> | |
30 #include <ctype.h> | |
31 | |
26522
8df78c06d10e
Save the world.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
26521
diff
changeset
|
32 #define SEARCH_TIMEOUT_S 4 /* 4 secs */ |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
33 #define SEARCHING(tree) (tree->priv->search && tree->priv->search->len > 0) |
15818 | 34 |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
35 #define COLUMN_INVISIBLE(tree, index) (tree->columns[index].flags & GNT_TREE_COLUMN_INVISIBLE) |
18420
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
36 #define BINARY_DATA(tree, index) (tree->columns[index].flags & GNT_TREE_COLUMN_BINARY_DATA) |
18449
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
37 #define RIGHT_ALIGNED(tree, index) (tree->columns[index].flags & GNT_TREE_COLUMN_RIGHT_ALIGNED) |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
38 |
15818 | 39 enum |
40 { | |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
41 PROP_0, |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
42 PROP_COLUMNS, |
22189
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
43 PROP_EXPANDER, |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
44 }; |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
45 |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
46 enum |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
47 { |
15818 | 48 SIG_SELECTION_CHANGED, |
49 SIG_SCROLLED, | |
50 SIG_TOGGLED, | |
16105
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15972
diff
changeset
|
51 SIG_COLLAPSED, |
15818 | 52 SIGS, |
53 }; | |
54 | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
55 struct _GntTreePriv |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
56 { |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
57 GString *search; |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
58 int search_timeout; |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
59 int search_column; |
18563
dba4edbde4a7
Patch from Javeed Shaikh to make the search function non-braindamaged.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18557
diff
changeset
|
60 gboolean (*search_func)(GntTree *tree, gpointer key, const char *search, const char *current); |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
61 |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
62 GCompareFunc compare; |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
63 int lastvisible; |
22189
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
64 int expander_level; |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
65 }; |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
66 |
15818 | 67 #define TAB_SIZE 3 |
68 | |
69 /* XXX: Make this one into a GObject? | |
70 * ... Probably not */ | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
71 struct _GntTreeRow |
15818 | 72 { |
73 void *key; | |
74 void *data; /* XXX: unused */ | |
75 | |
76 gboolean collapsed; | |
77 gboolean choice; /* Is this a choice-box? | |
78 If choice is true, then child will be NULL */ | |
79 gboolean isselected; | |
80 GntTextFormatFlags flags; | |
21691
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
81 int color; |
15818 | 82 |
83 GntTreeRow *parent; | |
84 GntTreeRow *child; | |
85 GntTreeRow *next; | |
86 GntTreeRow *prev; | |
87 | |
88 GList *columns; | |
89 GntTree *tree; | |
90 }; | |
91 | |
15931
f00f2e283ffb
Some define changes. This helps in generating the python bindings.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15818
diff
changeset
|
92 struct _GntTreeCol |
15818 | 93 { |
94 char *text; | |
18420
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
95 gboolean isbinary; |
15818 | 96 int span; /* How many columns does it span? */ |
97 }; | |
98 | |
16203
4f6a6443a1e3
emit/handle gnttree signals appropriately
Richard Nelson <wabz@pidgin.im>
parents:
16123
diff
changeset
|
99 static void tree_selection_changed(GntTree *, GntTreeRow *, GntTreeRow *); |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
100 static void _gnt_tree_init_internals(GntTree *tree, int col); |
16203
4f6a6443a1e3
emit/handle gnttree signals appropriately
Richard Nelson <wabz@pidgin.im>
parents:
16123
diff
changeset
|
101 |
15818 | 102 static GntWidgetClass *parent_class = NULL; |
103 static guint signals[SIGS] = { 0 }; | |
104 | |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
105 static void |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
106 readjust_columns(GntTree *tree) |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
107 { |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
108 int i, col, total; |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
109 int width; |
18405
69cc1a4ef6ab
Parentheses helps.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
110 #define WIDTH(i) (tree->columns[i].width_ratio ? tree->columns[i].width_ratio : tree->columns[i].width) |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
111 gnt_widget_get_size(GNT_WIDGET(tree), &width, NULL); |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
112 if (!GNT_WIDGET_IS_FLAG_SET(GNT_WIDGET(tree), GNT_WIDGET_NO_BORDER)) |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
113 width -= 2; |
23344
6d4e4a5963f3
Fix an off-by-one bug in calculating column widths in trees.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22999
diff
changeset
|
114 width -= 1; /* Exclude the scrollbar from the calculation */ |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
115 for (i = 0, total = 0; i < tree->ncol ; i++) { |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
116 if (tree->columns[i].flags & GNT_TREE_COLUMN_INVISIBLE) |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
117 continue; |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
118 if (tree->columns[i].flags & GNT_TREE_COLUMN_FIXED_SIZE) |
23344
6d4e4a5963f3
Fix an off-by-one bug in calculating column widths in trees.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22999
diff
changeset
|
119 width -= WIDTH(i) + (tree->priv->lastvisible != i); |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
120 else |
23344
6d4e4a5963f3
Fix an off-by-one bug in calculating column widths in trees.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22999
diff
changeset
|
121 total += WIDTH(i) + (tree->priv->lastvisible != i); |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
122 } |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
123 |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
124 if (total == 0) |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
125 return; |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
126 |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
127 for (i = 0; i < tree->ncol; i++) { |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
128 if (tree->columns[i].flags & GNT_TREE_COLUMN_INVISIBLE) |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
129 continue; |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
130 if (tree->columns[i].flags & GNT_TREE_COLUMN_FIXED_SIZE) |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
131 col = WIDTH(i); |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
132 else |
18405
69cc1a4ef6ab
Parentheses helps.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18404
diff
changeset
|
133 col = (WIDTH(i) * width) / total; |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
134 gnt_tree_set_col_width(GNT_TREE(tree), i, col); |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
135 } |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
136 } |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
137 |
15818 | 138 /* Move the item at position old to position new */ |
139 static GList * | |
140 g_list_reposition_child(GList *list, int old, int new) | |
141 { | |
142 gpointer item = g_list_nth_data(list, old); | |
143 list = g_list_remove(list, item); | |
144 if (old < new) | |
145 new--; /* because the positions would have shifted after removing the item */ | |
146 list = g_list_insert(list, item, new); | |
147 return list; | |
148 } | |
149 | |
150 static GntTreeRow * | |
151 _get_next(GntTreeRow *row, gboolean godeep) | |
152 { | |
153 if (row == NULL) | |
154 return NULL; | |
155 if (godeep && row->child) | |
156 return row->child; | |
157 if (row->next) | |
158 return row->next; | |
159 return _get_next(row->parent, FALSE); | |
160 } | |
161 | |
162 static gboolean | |
163 row_matches_search(GntTreeRow *row) | |
164 { | |
165 GntTree *t = row->tree; | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
166 if (t->priv->search && t->priv->search->len > 0) { |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
167 GntTreeCol *col = (col = g_list_nth_data(row->columns, t->priv->search_column)) ? col : row->columns->data; |
18557
212c2bec5c97
Allow using custom search functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18556
diff
changeset
|
168 char *one, *two, *z; |
212c2bec5c97
Allow using custom search functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18556
diff
changeset
|
169 if (t->priv->search_func) |
18563
dba4edbde4a7
Patch from Javeed Shaikh to make the search function non-braindamaged.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18557
diff
changeset
|
170 return t->priv->search_func(t, row->key, t->priv->search->str, col->text); |
18557
212c2bec5c97
Allow using custom search functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18556
diff
changeset
|
171 one = g_utf8_casefold(col->text, -1); |
212c2bec5c97
Allow using custom search functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18556
diff
changeset
|
172 two = g_utf8_casefold(t->priv->search->str, -1); |
212c2bec5c97
Allow using custom search functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18556
diff
changeset
|
173 z = strstr(one, two); |
15818 | 174 g_free(one); |
175 g_free(two); | |
176 if (z == NULL) | |
177 return FALSE; | |
178 } | |
179 return TRUE; | |
180 } | |
181 | |
182 static GntTreeRow * | |
183 get_next(GntTreeRow *row) | |
184 { | |
185 if (row == NULL) | |
186 return NULL; | |
187 while ((row = _get_next(row, !row->collapsed)) != NULL) { | |
188 if (row_matches_search(row)) | |
189 break; | |
190 } | |
191 return row; | |
192 } | |
193 | |
194 /* Returns the n-th next row. If it doesn't exist, returns NULL */ | |
195 static GntTreeRow * | |
196 get_next_n(GntTreeRow *row, int n) | |
197 { | |
198 while (row && n--) | |
199 row = get_next(row); | |
200 return row; | |
201 } | |
202 | |
203 /* Returns the n-th next row. If it doesn't exist, then the last non-NULL node */ | |
204 static GntTreeRow * | |
205 get_next_n_opt(GntTreeRow *row, int n, int *pos) | |
206 { | |
207 GntTreeRow *next = row; | |
208 int r = 0; | |
209 | |
210 if (row == NULL) | |
211 return NULL; | |
212 | |
213 while (row && n--) | |
214 { | |
215 row = get_next(row); | |
216 if (row) | |
217 { | |
218 next = row; | |
219 r++; | |
220 } | |
221 } | |
222 | |
223 if (pos) | |
224 *pos = r; | |
225 | |
226 return next; | |
227 } | |
228 | |
229 static GntTreeRow * | |
230 get_last_child(GntTreeRow *row) | |
231 { | |
232 if (row == NULL) | |
233 return NULL; | |
234 if (!row->collapsed && row->child) | |
235 row = row->child; | |
236 else | |
237 return row; | |
238 | |
239 while(row->next) | |
240 row = row->next; | |
16585
467698ab6bf0
Fix an odd selection issue when moving up.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16283
diff
changeset
|
241 return get_last_child(row); |
15818 | 242 } |
243 | |
244 static GntTreeRow * | |
245 get_prev(GntTreeRow *row) | |
246 { | |
247 if (row == NULL) | |
248 return NULL; | |
249 while (row) { | |
250 if (row->prev) | |
251 row = get_last_child(row->prev); | |
252 else | |
253 row = row->parent; | |
254 if (!row || row_matches_search(row)) | |
255 break; | |
256 } | |
257 return row; | |
258 } | |
259 | |
260 static GntTreeRow * | |
261 get_prev_n(GntTreeRow *row, int n) | |
262 { | |
263 while (row && n--) | |
264 row = get_prev(row); | |
265 return row; | |
266 } | |
267 | |
268 /* Distance of row from the root */ | |
269 /* XXX: This is uber-inefficient */ | |
270 static int | |
271 get_root_distance(GntTreeRow *row) | |
272 { | |
273 if (row == NULL) | |
274 return -1; | |
275 return get_root_distance(get_prev(row)) + 1; | |
276 } | |
277 | |
278 /* Returns the distance between a and b. | |
279 * If a is 'above' b, then the distance is positive */ | |
280 static int | |
281 get_distance(GntTreeRow *a, GntTreeRow *b) | |
282 { | |
283 /* First get the distance from a to the root. | |
284 * Then the distance from b to the root. | |
285 * Subtract. | |
286 * It's not that good, but it works. */ | |
287 int ha = get_root_distance(a); | |
288 int hb = get_root_distance(b); | |
289 | |
290 return (hb - ha); | |
291 } | |
292 | |
293 static int | |
294 find_depth(GntTreeRow *row) | |
295 { | |
296 int dep = -1; | |
297 | |
298 while (row) | |
299 { | |
300 dep++; | |
301 row = row->parent; | |
302 } | |
303 | |
304 return dep; | |
305 } | |
306 | |
307 static char * | |
308 update_row_text(GntTree *tree, GntTreeRow *row) | |
309 { | |
310 GString *string = g_string_new(NULL); | |
311 GList *iter; | |
312 int i; | |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
313 gboolean notfirst = FALSE; |
15818 | 314 |
315 for (i = 0, iter = row->columns; i < tree->ncol && iter; i++, iter = iter->next) | |
316 { | |
317 GntTreeCol *col = iter->data; | |
318 const char *text; | |
18420
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
319 int len; |
15818 | 320 int fl = 0; |
321 gboolean cut = FALSE; | |
15971
05d347516fcd
Fine tune column hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15970
diff
changeset
|
322 int width; |
18420
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
323 const char *display; |
15818 | 324 |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
325 if (COLUMN_INVISIBLE(tree, i)) |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
326 continue; |
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
327 |
18420
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
328 if (BINARY_DATA(tree, i)) |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
329 display = ""; |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
330 else |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
331 display = col->text; |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
332 |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
333 len = gnt_util_onscreen_width(display, NULL); |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
334 |
18449
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
335 width = tree->columns[i].width; |
15971
05d347516fcd
Fine tune column hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15970
diff
changeset
|
336 |
15818 | 337 if (i == 0) |
338 { | |
339 if (row->choice) | |
340 { | |
341 g_string_append_printf(string, "[%c] ", | |
342 row->isselected ? 'X' : ' '); | |
343 fl = 4; | |
344 } | |
22189
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
345 else if (find_depth(row) < tree->priv->expander_level && row->child) |
15818 | 346 { |
347 if (row->collapsed) | |
348 { | |
349 string = g_string_append(string, "+ "); | |
350 } | |
351 else | |
352 { | |
353 string = g_string_append(string, "- "); | |
354 } | |
355 fl = 2; | |
356 } | |
357 else | |
358 { | |
359 fl = TAB_SIZE * find_depth(row); | |
360 g_string_append_printf(string, "%*s", fl, ""); | |
361 } | |
362 len += fl; | |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
363 } else if (notfirst && tree->show_separator) |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
364 g_string_append_c(string, '|'); |
15818 | 365 else |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
366 g_string_append_c(string, ' '); |
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
367 |
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
368 notfirst = TRUE; |
15818 | 369 |
18183
99969affedf5
I think this fixes the ellipsization in the trees.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18118
diff
changeset
|
370 if (len > width) { |
21273
6e666ae6f68e
Do not ellipsize in a column of size 1.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21272
diff
changeset
|
371 len = MAX(1, width - 1); |
15818 | 372 cut = TRUE; |
373 } | |
18449
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
374 |
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
375 if (RIGHT_ALIGNED(tree, i) && len < tree->columns[i].width) { |
21272
f869796bf505
Patch from Josh Davis to correct ellipsization for right-aligned columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21271
diff
changeset
|
376 g_string_append_printf(string, "%*s", width - len - cut, ""); |
18449
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
377 } |
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
378 |
18420
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
379 text = gnt_util_onscreen_width_to_pointer(display, len - fl, NULL); |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
380 string = g_string_append_len(string, display, text - display); |
21273
6e666ae6f68e
Do not ellipsize in a column of size 1.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21272
diff
changeset
|
381 if (cut && width > 1) { /* ellipsis */ |
15818 | 382 if (gnt_ascii_only()) |
383 g_string_append_c(string, '~'); | |
384 else | |
385 string = g_string_append(string, "\342\200\246"); | |
386 len++; | |
387 } | |
388 | |
18449
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
389 if (!RIGHT_ALIGNED(tree, i) && len < tree->columns[i].width && iter->next) |
15971
05d347516fcd
Fine tune column hiding.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15970
diff
changeset
|
390 g_string_append_printf(string, "%*s", width - len, ""); |
15818 | 391 } |
392 return g_string_free(string, FALSE); | |
393 } | |
394 | |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
395 #define NEXT_X x += tree->columns[i].width + (i > 0 ? 1 : 0) |
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
396 |
15818 | 397 static void |
398 tree_mark_columns(GntTree *tree, int pos, int y, chtype type) | |
399 { | |
400 GntWidget *widget = GNT_WIDGET(tree); | |
401 int i; | |
402 int x = pos; | |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
403 gboolean notfirst = FALSE; |
15818 | 404 |
405 for (i = 0; i < tree->ncol - 1; i++) | |
406 { | |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
407 if (!COLUMN_INVISIBLE(tree, i)) { |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
408 notfirst = TRUE; |
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
409 NEXT_X; |
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
410 } |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
411 if (!COLUMN_INVISIBLE(tree, i+1) && notfirst) |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
412 mvwaddch(widget->window, y, x, type); |
15818 | 413 } |
414 } | |
415 | |
416 static void | |
417 redraw_tree(GntTree *tree) | |
418 { | |
419 int start, i; | |
420 GntWidget *widget = GNT_WIDGET(tree); | |
421 GntTreeRow *row; | |
18541
2011554e1377
Fix compile warnings that only shows up with -O3. This may have caused
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18535
diff
changeset
|
422 int pos, up, down = 0; |
15818 | 423 int rows, scrcol; |
26521
c67d43408daa
Update hardware cursor correctly.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
24890
diff
changeset
|
424 int current = 0; |
15818 | 425 |
426 if (!GNT_WIDGET_IS_FLAG_SET(GNT_WIDGET(tree), GNT_WIDGET_MAPPED)) | |
427 return; | |
428 | |
429 if (GNT_WIDGET_IS_FLAG_SET(widget, GNT_WIDGET_NO_BORDER)) | |
430 pos = 0; | |
431 else | |
432 pos = 1; | |
433 | |
434 if (tree->top == NULL) | |
435 tree->top = tree->root; | |
26591
28795b39d745
- Don't bother changing/signalling the selected row from NULL to NULL
Richard Nelson <wabz@pidgin.im>
parents:
26522
diff
changeset
|
436 if (tree->current == NULL && tree->root != NULL) { |
15818 | 437 tree->current = tree->root; |
16203
4f6a6443a1e3
emit/handle gnttree signals appropriately
Richard Nelson <wabz@pidgin.im>
parents:
16123
diff
changeset
|
438 tree_selection_changed(tree, NULL, tree->current); |
4f6a6443a1e3
emit/handle gnttree signals appropriately
Richard Nelson <wabz@pidgin.im>
parents:
16123
diff
changeset
|
439 } |
15818 | 440 |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
441 wbkgd(widget->window, gnt_color_pair(GNT_COLOR_NORMAL)); |
15818 | 442 |
443 start = 0; | |
444 if (tree->show_title) | |
445 { | |
446 int i; | |
447 int x = pos; | |
448 | |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
449 mvwhline(widget->window, pos + 1, pos, ACS_HLINE | gnt_color_pair(GNT_COLOR_NORMAL), |
15818 | 450 widget->priv.width - pos - 1); |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
451 mvwhline(widget->window, pos, pos, ' ' | gnt_color_pair(GNT_COLOR_NORMAL), |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
452 widget->priv.width - pos - 1); |
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
453 |
15818 | 454 for (i = 0; i < tree->ncol; i++) |
455 { | |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
456 if (COLUMN_INVISIBLE(tree, i)) { |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
457 continue; |
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
458 } |
18726
68fec9f954dd
Make sure long titles remain within their own cell.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18720
diff
changeset
|
459 mvwaddnstr(widget->window, pos, x + (x != pos), tree->columns[i].title, tree->columns[i].width); |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
460 NEXT_X; |
15818 | 461 } |
462 if (pos) | |
463 { | |
21264
ad49d9dace9f
Draw the 'header' correctly when not showing borders.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21254
diff
changeset
|
464 tree_mark_columns(tree, pos, 0, |
ad49d9dace9f
Draw the 'header' correctly when not showing borders.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21254
diff
changeset
|
465 (tree->show_separator ? ACS_TTEE : ACS_HLINE) | gnt_color_pair(GNT_COLOR_NORMAL)); |
15818 | 466 tree_mark_columns(tree, pos, widget->priv.height - pos, |
21264
ad49d9dace9f
Draw the 'header' correctly when not showing borders.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21254
diff
changeset
|
467 (tree->show_separator ? ACS_BTEE : ACS_HLINE) | gnt_color_pair(GNT_COLOR_NORMAL)); |
15818 | 468 } |
469 tree_mark_columns(tree, pos, pos + 1, | |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
470 (tree->show_separator ? ACS_PLUS : ACS_HLINE) | gnt_color_pair(GNT_COLOR_NORMAL)); |
15818 | 471 tree_mark_columns(tree, pos, pos, |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
472 (tree->show_separator ? ACS_VLINE : ' ') | gnt_color_pair(GNT_COLOR_NORMAL)); |
15818 | 473 start = 2; |
474 } | |
475 | |
476 rows = widget->priv.height - pos * 2 - start - 1; | |
477 tree->bottom = get_next_n_opt(tree->top, rows, &down); | |
478 if (down < rows) | |
479 { | |
480 tree->top = get_prev_n(tree->bottom, rows); | |
481 if (tree->top == NULL) | |
482 tree->top = tree->root; | |
483 } | |
484 | |
485 up = get_distance(tree->top, tree->current); | |
486 if (up < 0) | |
487 tree->top = tree->current; | |
488 else if (up >= widget->priv.height - pos) | |
489 tree->top = get_prev_n(tree->current, rows); | |
490 | |
491 if (tree->top && !row_matches_search(tree->top)) | |
492 tree->top = get_next(tree->top); | |
493 row = tree->top; | |
494 scrcol = widget->priv.width - 1 - 2 * pos; /* exclude the borders and the scrollbar */ | |
26591
28795b39d745
- Don't bother changing/signalling the selected row from NULL to NULL
Richard Nelson <wabz@pidgin.im>
parents:
26522
diff
changeset
|
495 |
28795b39d745
- Don't bother changing/signalling the selected row from NULL to NULL
Richard Nelson <wabz@pidgin.im>
parents:
26522
diff
changeset
|
496 if (tree->current && !row_matches_search(tree->current)) { |
28795b39d745
- Don't bother changing/signalling the selected row from NULL to NULL
Richard Nelson <wabz@pidgin.im>
parents:
26522
diff
changeset
|
497 GntTreeRow *old = tree->current; |
28795b39d745
- Don't bother changing/signalling the selected row from NULL to NULL
Richard Nelson <wabz@pidgin.im>
parents:
26522
diff
changeset
|
498 tree->current = tree->top; |
28795b39d745
- Don't bother changing/signalling the selected row from NULL to NULL
Richard Nelson <wabz@pidgin.im>
parents:
26522
diff
changeset
|
499 tree_selection_changed(tree, old, tree->current); |
28795b39d745
- Don't bother changing/signalling the selected row from NULL to NULL
Richard Nelson <wabz@pidgin.im>
parents:
26522
diff
changeset
|
500 } |
28795b39d745
- Don't bother changing/signalling the selected row from NULL to NULL
Richard Nelson <wabz@pidgin.im>
parents:
26522
diff
changeset
|
501 |
15818 | 502 for (i = start + pos; row && i < widget->priv.height - pos; |
503 i++, row = get_next(row)) | |
504 { | |
505 char *str; | |
506 int wr; | |
507 | |
508 GntTextFormatFlags flags = row->flags; | |
509 int attr = 0; | |
510 | |
511 if (!row_matches_search(row)) | |
512 continue; | |
513 str = update_row_text(tree, row); | |
514 | |
515 if ((wr = gnt_util_onscreen_width(str, NULL)) > scrcol) | |
516 { | |
517 char *s = (char*)gnt_util_onscreen_width_to_pointer(str, scrcol, &wr); | |
518 *s = '\0'; | |
519 } | |
520 | |
521 if (flags & GNT_TEXT_FLAG_BOLD) | |
522 attr |= A_BOLD; | |
523 if (flags & GNT_TEXT_FLAG_UNDERLINE) | |
524 attr |= A_UNDERLINE; | |
525 if (flags & GNT_TEXT_FLAG_BLINK) | |
526 attr |= A_BLINK; | |
527 | |
528 if (row == tree->current) | |
529 { | |
26521
c67d43408daa
Update hardware cursor correctly.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
24890
diff
changeset
|
530 current = i; |
24890
55f4261e1358
Boldify the selected row in the tree. This is helpful when, for example,
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
23344
diff
changeset
|
531 attr |= A_BOLD; |
15818 | 532 if (gnt_widget_has_focus(widget)) |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
533 attr |= gnt_color_pair(GNT_COLOR_HIGHLIGHT); |
15818 | 534 else |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
535 attr |= gnt_color_pair(GNT_COLOR_HIGHLIGHT_D); |
15818 | 536 } |
537 else | |
538 { | |
539 if (flags & GNT_TEXT_FLAG_DIM) | |
21691
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
540 if (row->color) |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
541 attr |= (A_DIM | gnt_color_pair(row->color)); |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
542 else |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
543 attr |= (A_DIM | gnt_color_pair(GNT_COLOR_DISABLED)); |
15818 | 544 else if (flags & GNT_TEXT_FLAG_HIGHLIGHT) |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
545 attr |= (A_DIM | gnt_color_pair(GNT_COLOR_HIGHLIGHT)); |
21691
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
546 else if (row->color) |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
547 attr |= gnt_color_pair(row->color); |
15818 | 548 else |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
549 attr |= gnt_color_pair(GNT_COLOR_NORMAL); |
15818 | 550 } |
551 | |
552 wbkgdset(widget->window, '\0' | attr); | |
28984
a18f421696dc
Fix showing umlauts etc. on non-utf8 locales.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
28882
diff
changeset
|
553 mvwaddstr(widget->window, i, pos, C_(str)); |
15818 | 554 whline(widget->window, ' ', scrcol - wr); |
555 tree->bottom = row; | |
556 g_free(str); | |
557 tree_mark_columns(tree, pos, i, | |
558 (tree->show_separator ? ACS_VLINE : ' ') | attr); | |
559 } | |
560 | |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
561 wbkgdset(widget->window, '\0' | gnt_color_pair(GNT_COLOR_NORMAL)); |
15818 | 562 while (i < widget->priv.height - pos) |
563 { | |
564 mvwhline(widget->window, i, pos, ' ', | |
565 widget->priv.width - pos * 2 - 1); | |
566 tree_mark_columns(tree, pos, i, | |
567 (tree->show_separator ? ACS_VLINE : ' ')); | |
568 i++; | |
569 } | |
570 | |
571 scrcol = widget->priv.width - pos - 1; /* position of the scrollbar */ | |
572 rows--; | |
573 if (rows > 0) | |
574 { | |
18541
2011554e1377
Fix compile warnings that only shows up with -O3. This may have caused
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18535
diff
changeset
|
575 int total = 0; |
15818 | 576 int showing, position; |
577 | |
578 get_next_n_opt(tree->root, g_list_length(tree->list), &total); | |
579 showing = rows * rows / MAX(total, 1) + 1; | |
580 showing = MIN(rows, showing); | |
581 | |
582 total -= rows; | |
583 up = get_distance(tree->root, tree->top); | |
584 down = total - up; | |
585 | |
586 position = (rows - showing) * up / MAX(1, up + down); | |
587 position = MAX((tree->top != tree->root), position); | |
588 | |
589 if (showing + position > rows) | |
590 position = rows - showing; | |
591 | |
592 if (showing + position == rows && row) | |
593 position = MAX(0, rows - 1 - showing); | |
594 else if (showing + position < rows && !row) | |
595 position = rows - showing; | |
596 | |
597 position += pos + start + 1; | |
598 | |
599 mvwvline(widget->window, pos + start + 1, scrcol, | |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
600 ' ' | gnt_color_pair(GNT_COLOR_NORMAL), rows); |
15818 | 601 mvwvline(widget->window, position, scrcol, |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
602 ACS_CKBOARD | gnt_color_pair(GNT_COLOR_HIGHLIGHT_D), showing); |
15818 | 603 } |
604 | |
605 mvwaddch(widget->window, start + pos, scrcol, | |
606 ((tree->top != tree->root) ? ACS_UARROW : ' ') | | |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
607 gnt_color_pair(GNT_COLOR_HIGHLIGHT_D)); |
15818 | 608 |
609 mvwaddch(widget->window, widget->priv.height - pos - 1, scrcol, | |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
610 (row ? ACS_DARROW : ' ') | gnt_color_pair(GNT_COLOR_HIGHLIGHT_D)); |
15818 | 611 |
16249
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
612 /* If there's a search-text, show it in the bottom of the tree */ |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
613 if (tree->priv->search && tree->priv->search->len > 0) { |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
614 const char *str = gnt_util_onscreen_width_to_pointer(tree->priv->search->str, scrcol - 1, NULL); |
21250
9187d331aebe
Add gnt_color_pair, which will replace color codes with 'appropriate' text
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
20306
diff
changeset
|
615 wbkgdset(widget->window, '\0' | gnt_color_pair(GNT_COLOR_HIGHLIGHT_D)); |
16249
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
616 mvwaddnstr(widget->window, widget->priv.height - pos - 1, pos, |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
617 tree->priv->search->str, str - tree->priv->search->str); |
16249
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
618 } |
26521
c67d43408daa
Update hardware cursor correctly.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
24890
diff
changeset
|
619 wmove(widget->window, current, pos); |
16249
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
620 |
15818 | 621 gnt_widget_queue_update(widget); |
622 } | |
623 | |
624 static void | |
625 gnt_tree_draw(GntWidget *widget) | |
626 { | |
627 GntTree *tree = GNT_TREE(widget); | |
628 | |
629 redraw_tree(tree); | |
630 | |
631 GNTDEBUG; | |
632 } | |
633 | |
634 static void | |
635 gnt_tree_size_request(GntWidget *widget) | |
636 { | |
637 if (widget->priv.height == 0) | |
638 widget->priv.height = 10; /* XXX: Why?! */ | |
639 if (widget->priv.width == 0) | |
640 { | |
641 GntTree *tree = GNT_TREE(widget); | |
642 int i, width = 0; | |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
643 width = 1 + 2 * (!GNT_WIDGET_IS_FLAG_SET(GNT_WIDGET(tree), GNT_WIDGET_NO_BORDER)); |
15818 | 644 for (i = 0; i < tree->ncol; i++) |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
645 if (!COLUMN_INVISIBLE(tree, i)) { |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
646 width = width + tree->columns[i].width; |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
647 if (tree->priv->lastvisible != i) |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
648 width++; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
649 } |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
650 widget->priv.width = width; |
15818 | 651 } |
652 } | |
653 | |
654 static void | |
655 gnt_tree_map(GntWidget *widget) | |
656 { | |
657 GntTree *tree = GNT_TREE(widget); | |
658 if (widget->priv.width == 0 || widget->priv.height == 0) | |
659 { | |
660 gnt_widget_size_request(widget); | |
661 } | |
662 tree->top = tree->root; | |
663 tree->current = tree->root; | |
664 GNTDEBUG; | |
665 } | |
666 | |
667 static void | |
668 tree_selection_changed(GntTree *tree, GntTreeRow *old, GntTreeRow *current) | |
669 { | |
670 g_signal_emit(tree, signals[SIG_SELECTION_CHANGED], 0, old ? old->key : NULL, | |
671 current ? current->key : NULL); | |
672 } | |
673 | |
674 static gboolean | |
675 action_down(GntBindable *bind, GList *null) | |
676 { | |
677 int dist; | |
678 GntTree *tree = GNT_TREE(bind); | |
679 GntTreeRow *old = tree->current; | |
680 GntTreeRow *row = get_next(tree->current); | |
681 if (row == NULL) | |
682 return FALSE; | |
683 tree->current = row; | |
684 if ((dist = get_distance(tree->current, tree->bottom)) < 0) | |
685 gnt_tree_scroll(tree, -dist); | |
686 else | |
687 redraw_tree(tree); | |
688 if (old != tree->current) | |
689 tree_selection_changed(tree, old, tree->current); | |
690 return TRUE; | |
691 } | |
692 | |
693 static gboolean | |
15972
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
694 action_move_parent(GntBindable *bind, GList *null) |
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
695 { |
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
696 GntTree *tree = GNT_TREE(bind); |
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
697 GntTreeRow *row = tree->current; |
16249
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
698 int dist; |
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
699 |
22233
782df0fd9e5e
Fix a crash when pressing backspace at a menu
Richard Nelson <wabz@pidgin.im>
parents:
22189
diff
changeset
|
700 if (!row || !row->parent || SEARCHING(tree)) |
16249
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
701 return FALSE; |
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
702 |
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
703 tree->current = row->parent; |
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
704 if ((dist = get_distance(tree->current, tree->top)) > 0) |
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
705 gnt_tree_scroll(tree, -dist); |
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
706 else |
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
707 redraw_tree(tree); |
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
708 tree_selection_changed(tree, row, tree->current); |
15972
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
709 return TRUE; |
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
710 } |
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
711 |
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
712 static gboolean |
15818 | 713 action_up(GntBindable *bind, GList *list) |
714 { | |
715 int dist; | |
716 GntTree *tree = GNT_TREE(bind); | |
717 GntTreeRow *old = tree->current; | |
718 GntTreeRow *row = get_prev(tree->current); | |
719 if (!row) | |
720 return FALSE; | |
721 tree->current = row; | |
722 if ((dist = get_distance(tree->current, tree->top)) > 0) | |
723 gnt_tree_scroll(tree, -dist); | |
724 else | |
725 redraw_tree(tree); | |
726 if (old != tree->current) | |
727 tree_selection_changed(tree, old, tree->current); | |
728 | |
729 return TRUE; | |
730 } | |
731 | |
732 static gboolean | |
733 action_page_down(GntBindable *bind, GList *null) | |
734 { | |
735 GntTree *tree = GNT_TREE(bind); | |
736 GntTreeRow *old = tree->current; | |
737 GntTreeRow *row = get_next(tree->bottom); | |
738 if (row) | |
739 { | |
740 int dist = get_distance(tree->top, tree->current); | |
741 tree->top = tree->bottom; | |
742 tree->current = get_next_n_opt(tree->top, dist, NULL); | |
743 redraw_tree(tree); | |
744 } | |
745 else if (tree->current != tree->bottom) | |
746 { | |
747 tree->current = tree->bottom; | |
748 redraw_tree(tree); | |
749 } | |
750 | |
751 if (old != tree->current) | |
752 tree_selection_changed(tree, old, tree->current); | |
753 return TRUE; | |
754 } | |
755 | |
756 static gboolean | |
757 action_page_up(GntBindable *bind, GList *null) | |
758 { | |
759 GntWidget *widget = GNT_WIDGET(bind); | |
760 GntTree *tree = GNT_TREE(bind); | |
761 GntTreeRow *row; | |
762 GntTreeRow *old = tree->current; | |
763 | |
764 if (tree->top != tree->root) | |
765 { | |
766 int dist = get_distance(tree->top, tree->current); | |
767 row = get_prev_n(tree->top, widget->priv.height - 1 - | |
768 tree->show_title * 2 - 2 * (GNT_WIDGET_IS_FLAG_SET(widget, GNT_WIDGET_NO_BORDER) == 0)); | |
769 if (row == NULL) | |
770 row = tree->root; | |
771 tree->top = row; | |
772 tree->current = get_next_n_opt(tree->top, dist, NULL); | |
773 redraw_tree(tree); | |
774 } | |
775 else if (tree->current != tree->top) | |
776 { | |
777 tree->current = tree->top; | |
778 redraw_tree(tree); | |
779 } | |
780 if (old != tree->current) | |
781 tree_selection_changed(tree, old, tree->current); | |
782 return TRUE; | |
783 } | |
784 | |
785 static void | |
786 end_search(GntTree *tree) | |
787 { | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
788 if (tree->priv->search) { |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
789 g_source_remove(tree->priv->search_timeout); |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
790 g_string_free(tree->priv->search, TRUE); |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
791 tree->priv->search = NULL; |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
792 tree->priv->search_timeout = 0; |
18720
a69ab280147b
Fix a /-search bug.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18566
diff
changeset
|
793 GNT_WIDGET_UNSET_FLAGS(GNT_WIDGET(tree), GNT_WIDGET_DISABLE_ACTIONS); |
15818 | 794 } |
795 } | |
796 | |
797 static gboolean | |
798 search_timeout(gpointer data) | |
799 { | |
800 GntTree *tree = data; | |
801 | |
802 end_search(tree); | |
803 redraw_tree(tree); | |
804 | |
805 return FALSE; | |
806 } | |
807 | |
808 static gboolean | |
809 gnt_tree_key_pressed(GntWidget *widget, const char *text) | |
810 { | |
811 GntTree *tree = GNT_TREE(widget); | |
812 GntTreeRow *old = tree->current; | |
813 | |
22289
0ba0f2804299
'\n' (ctrl-j) should behave similar to '\r' (ctrl-m). Fixes #4833.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22233
diff
changeset
|
814 if (text[0] == '\r' || text[0] == '\n') { |
15818 | 815 end_search(tree); |
816 gnt_widget_activate(widget); | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
817 } else if (tree->priv->search) { |
16249
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
818 gboolean changed = TRUE; |
28882
f769367cccd0
Allow printable chars when searching the tree
Richard Nelson <wabz@pidgin.im>
parents:
26591
diff
changeset
|
819 if (g_unichar_isprint(*text)) { |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
820 tree->priv->search = g_string_append_c(tree->priv->search, *text); |
16249
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
821 } else if (g_utf8_collate(text, GNT_KEY_BACKSPACE) == 0) { |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
822 if (tree->priv->search->len) |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
823 tree->priv->search->str[--tree->priv->search->len] = '\0'; |
16249
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
824 } else |
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
825 changed = FALSE; |
f02e611bdb6b
Show the search string in the tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16203
diff
changeset
|
826 if (changed) { |
15818 | 827 redraw_tree(tree); |
18566
3c634117a7ef
Allow disabling the widget actions on specific widgets. This allows, for
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18564
diff
changeset
|
828 } else { |
3c634117a7ef
Allow disabling the widget actions on specific widgets. This allows, for
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18564
diff
changeset
|
829 gnt_bindable_perform_action_key(GNT_BINDABLE(tree), text); |
15818 | 830 } |
22999
6843c06f5c6a
Pressing arrow keys should reset the search timer.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22289
diff
changeset
|
831 g_source_remove(tree->priv->search_timeout); |
26522
8df78c06d10e
Save the world.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
26521
diff
changeset
|
832 tree->priv->search_timeout = g_timeout_add_seconds(SEARCH_TIMEOUT_S, search_timeout, tree); |
15818 | 833 return TRUE; |
834 } else if (text[0] == ' ' && text[1] == 0) { | |
835 /* Space pressed */ | |
836 GntTreeRow *row = tree->current; | |
837 if (row && row->child) | |
838 { | |
839 row->collapsed = !row->collapsed; | |
840 redraw_tree(tree); | |
16105
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15972
diff
changeset
|
841 g_signal_emit(tree, signals[SIG_COLLAPSED], 0, row->key, row->collapsed); |
15818 | 842 } |
843 else if (row && row->choice) | |
844 { | |
845 row->isselected = !row->isselected; | |
846 g_signal_emit(tree, signals[SIG_TOGGLED], 0, row->key); | |
847 redraw_tree(tree); | |
848 } | |
18098
1c8853f6bfc6
I am not sure why I made this change. But it looks good.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18069
diff
changeset
|
849 } else { |
1c8853f6bfc6
I am not sure why I made this change. But it looks good.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18069
diff
changeset
|
850 return FALSE; |
15818 | 851 } |
852 | |
853 if (old != tree->current) | |
854 { | |
855 tree_selection_changed(tree, old, tree->current); | |
856 } | |
857 | |
18098
1c8853f6bfc6
I am not sure why I made this change. But it looks good.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18069
diff
changeset
|
858 return TRUE; |
15818 | 859 } |
860 | |
861 static void | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
862 gnt_tree_free_columns(GntTree *tree) |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
863 { |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
864 int i; |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
865 for (i = 0; i < tree->ncol; i++) { |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
866 g_free(tree->columns[i].title); |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
867 } |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
868 g_free(tree->columns); |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
869 } |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
870 |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
871 static void |
15818 | 872 gnt_tree_destroy(GntWidget *widget) |
873 { | |
874 GntTree *tree = GNT_TREE(widget); | |
875 | |
876 end_search(tree); | |
877 if (tree->hash) | |
878 g_hash_table_destroy(tree->hash); | |
879 g_list_free(tree->list); | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
880 gnt_tree_free_columns(tree); |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
881 g_free(tree->priv); |
15818 | 882 } |
883 | |
884 static gboolean | |
885 gnt_tree_clicked(GntWidget *widget, GntMouseEvent event, int x, int y) | |
886 { | |
887 GntTree *tree = GNT_TREE(widget); | |
888 GntTreeRow *old = tree->current; | |
889 if (event == GNT_MOUSE_SCROLL_UP) { | |
890 action_up(GNT_BINDABLE(widget), NULL); | |
891 } else if (event == GNT_MOUSE_SCROLL_DOWN) { | |
892 action_down(GNT_BINDABLE(widget), NULL); | |
893 } else if (event == GNT_LEFT_MOUSE_DOWN) { | |
894 GntTreeRow *row; | |
895 GntTree *tree = GNT_TREE(widget); | |
896 int pos = 1; | |
897 if (GNT_WIDGET_IS_FLAG_SET(widget, GNT_WIDGET_NO_BORDER)) | |
898 pos = 0; | |
899 if (tree->show_title) | |
900 pos += 2; | |
901 pos = y - widget->priv.y - pos; | |
902 row = get_next_n(tree->top, pos); | |
903 if (row && tree->current != row) { | |
904 GntTreeRow *old = tree->current; | |
905 tree->current = row; | |
906 redraw_tree(tree); | |
907 tree_selection_changed(tree, old, tree->current); | |
908 } else if (row && row == tree->current) { | |
909 if (row->choice) { | |
910 row->isselected = !row->isselected; | |
911 g_signal_emit(tree, signals[SIG_TOGGLED], 0, row->key); | |
912 redraw_tree(tree); | |
913 } else { | |
914 gnt_widget_activate(widget); | |
915 } | |
916 } | |
917 } else { | |
918 return FALSE; | |
919 } | |
920 if (old != tree->current) { | |
921 tree_selection_changed(tree, old, tree->current); | |
922 } | |
923 return TRUE; | |
924 } | |
925 | |
926 static void | |
927 gnt_tree_size_changed(GntWidget *widget, int w, int h) | |
928 { | |
929 GntTree *tree = GNT_TREE(widget); | |
930 if (widget->priv.width <= 0) | |
931 return; | |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
932 |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
933 readjust_columns(tree); |
15818 | 934 } |
935 | |
936 static gboolean | |
937 start_search(GntBindable *bindable, GList *list) | |
938 { | |
939 GntTree *tree = GNT_TREE(bindable); | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
940 if (tree->priv->search) |
15818 | 941 return FALSE; |
18566
3c634117a7ef
Allow disabling the widget actions on specific widgets. This allows, for
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18564
diff
changeset
|
942 GNT_WIDGET_SET_FLAGS(GNT_WIDGET(tree), GNT_WIDGET_DISABLE_ACTIONS); |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
943 tree->priv->search = g_string_new(NULL); |
26522
8df78c06d10e
Save the world.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
26521
diff
changeset
|
944 tree->priv->search_timeout = g_timeout_add_seconds(SEARCH_TIMEOUT_S, search_timeout, tree); |
15818 | 945 return TRUE; |
946 } | |
947 | |
948 static gboolean | |
949 end_search_action(GntBindable *bindable, GList *list) | |
950 { | |
951 GntTree *tree = GNT_TREE(bindable); | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
952 if (tree->priv->search == NULL) |
15818 | 953 return FALSE; |
18566
3c634117a7ef
Allow disabling the widget actions on specific widgets. This allows, for
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18564
diff
changeset
|
954 GNT_WIDGET_UNSET_FLAGS(GNT_WIDGET(tree), GNT_WIDGET_DISABLE_ACTIONS); |
15818 | 955 end_search(tree); |
956 redraw_tree(tree); | |
957 return TRUE; | |
958 } | |
959 | |
960 static void | |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
961 gnt_tree_set_property(GObject *obj, guint prop_id, const GValue *value, |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
962 GParamSpec *spec) |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
963 { |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
964 GntTree *tree = GNT_TREE(obj); |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
965 switch (prop_id) { |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
966 case PROP_COLUMNS: |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
967 _gnt_tree_init_internals(tree, g_value_get_int(value)); |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
968 break; |
22189
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
969 case PROP_EXPANDER: |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
970 if (tree->priv->expander_level == g_value_get_int(value)) |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
971 break; |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
972 tree->priv->expander_level = g_value_get_int(value); |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
973 g_object_notify(obj, "expander-level"); |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
974 default: |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
975 break; |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
976 } |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
977 } |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
978 |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
979 static void |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
980 gnt_tree_get_property(GObject *obj, guint prop_id, GValue *value, |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
981 GParamSpec *spec) |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
982 { |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
983 GntTree *tree = GNT_TREE(obj); |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
984 switch (prop_id) { |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
985 case PROP_COLUMNS: |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
986 g_value_set_int(value, tree->ncol); |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
987 break; |
22189
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
988 case PROP_EXPANDER: |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
989 g_value_set_int(value, tree->priv->expander_level); |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
990 break; |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
991 default: |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
992 break; |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
993 } |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
994 } |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
995 |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
996 static void |
15818 | 997 gnt_tree_class_init(GntTreeClass *klass) |
998 { | |
999 GntBindableClass *bindable = GNT_BINDABLE_CLASS(klass); | |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1000 GObjectClass *gclass = G_OBJECT_CLASS(klass); |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1001 |
15818 | 1002 parent_class = GNT_WIDGET_CLASS(klass); |
1003 parent_class->destroy = gnt_tree_destroy; | |
1004 parent_class->draw = gnt_tree_draw; | |
1005 parent_class->map = gnt_tree_map; | |
1006 parent_class->size_request = gnt_tree_size_request; | |
1007 parent_class->key_pressed = gnt_tree_key_pressed; | |
1008 parent_class->clicked = gnt_tree_clicked; | |
1009 parent_class->size_changed = gnt_tree_size_changed; | |
1010 | |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1011 gclass->set_property = gnt_tree_set_property; |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1012 gclass->get_property = gnt_tree_get_property; |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1013 g_object_class_install_property(gclass, |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1014 PROP_COLUMNS, |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1015 g_param_spec_int("columns", "Columns", |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1016 "Number of columns in the tree.", |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1017 1, G_MAXINT, 1, |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1018 G_PARAM_READWRITE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1019 ) |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1020 ); |
22189
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
1021 g_object_class_install_property(gclass, |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
1022 PROP_EXPANDER, |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
1023 g_param_spec_int("expander-level", "Expander level", |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
1024 "Number of levels to show expander in the tree.", |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
1025 0, G_MAXINT, 1, |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
1026 G_PARAM_READWRITE|G_PARAM_STATIC_NAME|G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
1027 ) |
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
1028 ); |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1029 |
15818 | 1030 signals[SIG_SELECTION_CHANGED] = |
1031 g_signal_new("selection-changed", | |
1032 G_TYPE_FROM_CLASS(klass), | |
1033 G_SIGNAL_RUN_LAST, | |
1034 G_STRUCT_OFFSET(GntTreeClass, selection_changed), | |
1035 NULL, NULL, | |
1036 gnt_closure_marshal_VOID__POINTER_POINTER, | |
1037 G_TYPE_NONE, 2, G_TYPE_POINTER, G_TYPE_POINTER); | |
1038 signals[SIG_SCROLLED] = | |
1039 g_signal_new("scrolled", | |
1040 G_TYPE_FROM_CLASS(klass), | |
1041 G_SIGNAL_RUN_LAST, | |
1042 0, | |
1043 NULL, NULL, | |
1044 g_cclosure_marshal_VOID__INT, | |
1045 G_TYPE_NONE, 1, G_TYPE_INT); | |
1046 signals[SIG_TOGGLED] = | |
1047 g_signal_new("toggled", | |
1048 G_TYPE_FROM_CLASS(klass), | |
1049 G_SIGNAL_RUN_LAST, | |
1050 G_STRUCT_OFFSET(GntTreeClass, toggled), | |
1051 NULL, NULL, | |
1052 g_cclosure_marshal_VOID__POINTER, | |
1053 G_TYPE_NONE, 1, G_TYPE_POINTER); | |
16105
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15972
diff
changeset
|
1054 signals[SIG_COLLAPSED] = |
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15972
diff
changeset
|
1055 g_signal_new("collapse-toggled", |
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15972
diff
changeset
|
1056 G_TYPE_FROM_CLASS(klass), |
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15972
diff
changeset
|
1057 G_SIGNAL_RUN_LAST, |
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15972
diff
changeset
|
1058 0, |
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15972
diff
changeset
|
1059 NULL, NULL, |
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15972
diff
changeset
|
1060 gnt_closure_marshal_VOID__POINTER_BOOLEAN, |
1983ecd15174
Remember the collapsed state of groups in the blist
Richard Nelson <wabz@pidgin.im>
parents:
15972
diff
changeset
|
1061 G_TYPE_NONE, 2, G_TYPE_POINTER, G_TYPE_BOOLEAN); |
15818 | 1062 |
1063 gnt_bindable_class_register_action(bindable, "move-up", action_up, | |
1064 GNT_KEY_UP, NULL); | |
1065 gnt_bindable_register_binding(bindable, "move-up", GNT_KEY_CTRL_P, NULL); | |
1066 gnt_bindable_class_register_action(bindable, "move-down", action_down, | |
1067 GNT_KEY_DOWN, NULL); | |
1068 gnt_bindable_register_binding(bindable, "move-down", GNT_KEY_CTRL_N, NULL); | |
15972
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
1069 gnt_bindable_class_register_action(bindable, "move-parent", action_move_parent, |
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
1070 GNT_KEY_BACKSPACE, NULL); |
15818 | 1071 gnt_bindable_class_register_action(bindable, "page-up", action_page_up, |
1072 GNT_KEY_PGUP, NULL); | |
1073 gnt_bindable_class_register_action(bindable, "page-down", action_page_down, | |
1074 GNT_KEY_PGDOWN, NULL); | |
1075 gnt_bindable_class_register_action(bindable, "start-search", start_search, | |
1076 "/", NULL); | |
1077 gnt_bindable_class_register_action(bindable, "end-search", end_search_action, | |
1078 "\033", NULL); | |
1079 | |
1080 gnt_style_read_actions(G_OBJECT_CLASS_TYPE(klass), bindable); | |
1081 GNTDEBUG; | |
1082 } | |
1083 | |
1084 static void | |
1085 gnt_tree_init(GTypeInstance *instance, gpointer class) | |
1086 { | |
1087 GntWidget *widget = GNT_WIDGET(instance); | |
1088 GntTree *tree = GNT_TREE(widget); | |
1089 tree->show_separator = TRUE; | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1090 tree->priv = g_new0(GntTreePriv, 1); |
18720
a69ab280147b
Fix a /-search bug.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18566
diff
changeset
|
1091 GNT_WIDGET_SET_FLAGS(widget, GNT_WIDGET_GROW_X | GNT_WIDGET_GROW_Y | |
a69ab280147b
Fix a /-search bug.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18566
diff
changeset
|
1092 GNT_WIDGET_CAN_TAKE_FOCUS | GNT_WIDGET_NO_SHADOW); |
a69ab280147b
Fix a /-search bug.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18566
diff
changeset
|
1093 gnt_widget_set_take_focus(widget, TRUE); |
15818 | 1094 widget->priv.minw = 4; |
1095 widget->priv.minh = 1; | |
1096 GNTDEBUG; | |
1097 } | |
1098 | |
1099 /****************************************************************************** | |
1100 * GntTree API | |
1101 *****************************************************************************/ | |
1102 GType | |
1103 gnt_tree_get_gtype(void) | |
1104 { | |
1105 static GType type = 0; | |
1106 | |
1107 if(type == 0) | |
1108 { | |
1109 static const GTypeInfo info = { | |
1110 sizeof(GntTreeClass), | |
1111 NULL, /* base_init */ | |
1112 NULL, /* base_finalize */ | |
1113 (GClassInitFunc)gnt_tree_class_init, | |
1114 NULL, /* class_finalize */ | |
1115 NULL, /* class_data */ | |
1116 sizeof(GntTree), | |
1117 0, /* n_preallocs */ | |
1118 gnt_tree_init, /* instance_init */ | |
1119 NULL /* value_table */ | |
1120 }; | |
1121 | |
1122 type = g_type_register_static(GNT_TYPE_WIDGET, | |
1123 "GntTree", | |
1124 &info, 0); | |
1125 } | |
1126 | |
1127 return type; | |
1128 } | |
1129 | |
1130 static void | |
1131 free_tree_col(gpointer data) | |
1132 { | |
1133 GntTreeCol *col = data; | |
18811 | 1134 if (!col->isbinary) |
18420
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1135 g_free(col->text); |
15818 | 1136 g_free(col); |
1137 } | |
1138 | |
1139 static void | |
1140 free_tree_row(gpointer data) | |
1141 { | |
1142 GntTreeRow *row = data; | |
1143 | |
1144 if (!row) | |
1145 return; | |
1146 | |
1147 g_list_foreach(row->columns, (GFunc)free_tree_col, NULL); | |
1148 g_list_free(row->columns); | |
1149 g_free(row); | |
1150 } | |
1151 | |
1152 GntWidget *gnt_tree_new() | |
1153 { | |
1154 return gnt_tree_new_with_columns(1); | |
1155 } | |
1156 | |
1157 void gnt_tree_set_visible_rows(GntTree *tree, int rows) | |
1158 { | |
1159 GntWidget *widget = GNT_WIDGET(tree); | |
1160 widget->priv.height = rows; | |
1161 if (!GNT_WIDGET_IS_FLAG_SET(widget, GNT_WIDGET_NO_BORDER)) | |
1162 widget->priv.height += 2; | |
1163 } | |
1164 | |
1165 int gnt_tree_get_visible_rows(GntTree *tree) | |
1166 { | |
1167 GntWidget *widget = GNT_WIDGET(tree); | |
1168 int ret = widget->priv.height; | |
1169 if (!GNT_WIDGET_IS_FLAG_SET(widget, GNT_WIDGET_NO_BORDER)) | |
1170 ret -= 2; | |
1171 return ret; | |
1172 } | |
1173 | |
18118
ab6d2763b8d8
Re-fix the DBus list handling code by killing const GList* / const GSList*
Richard Laager <rlaager@wiktel.com>
parents:
18098
diff
changeset
|
1174 GList *gnt_tree_get_rows(GntTree *tree) |
15818 | 1175 { |
1176 return tree->list; | |
1177 } | |
1178 | |
1179 void gnt_tree_scroll(GntTree *tree, int count) | |
1180 { | |
1181 GntTreeRow *row; | |
1182 | |
1183 if (count < 0) | |
1184 { | |
1185 if (get_root_distance(tree->top) == 0) | |
1186 return; | |
1187 row = get_prev_n(tree->top, -count); | |
1188 if (row == NULL) | |
1189 row = tree->root; | |
1190 tree->top = row; | |
1191 } | |
1192 else | |
1193 { | |
1194 get_next_n_opt(tree->bottom, count, &count); | |
1195 tree->top = get_next_n(tree->top, count); | |
1196 } | |
1197 | |
1198 redraw_tree(tree); | |
1199 g_signal_emit(tree, signals[SIG_SCROLLED], 0, count); | |
1200 } | |
1201 | |
1202 static gpointer | |
1203 find_position(GntTree *tree, gpointer key, gpointer parent) | |
1204 { | |
1205 GntTreeRow *row; | |
1206 | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1207 if (tree->priv->compare == NULL) |
15818 | 1208 return NULL; |
1209 | |
1210 if (parent == NULL) | |
1211 row = tree->root; | |
1212 else | |
1213 row = g_hash_table_lookup(tree->hash, parent); | |
1214 | |
1215 if (!row) | |
1216 return NULL; | |
1217 | |
1218 if (parent) | |
1219 row = row->child; | |
1220 | |
1221 while (row) | |
1222 { | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1223 if (tree->priv->compare(key, row->key) < 0) |
15818 | 1224 return (row->prev ? row->prev->key : NULL); |
1225 if (row->next) | |
1226 row = row->next; | |
1227 else | |
1228 return row->key; | |
1229 } | |
1230 return NULL; | |
1231 } | |
1232 | |
1233 void gnt_tree_sort_row(GntTree *tree, gpointer key) | |
1234 { | |
1235 GntTreeRow *row, *q, *s; | |
1236 int current, newp; | |
1237 | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1238 if (!tree->priv->compare) |
15818 | 1239 return; |
1240 | |
1241 row = g_hash_table_lookup(tree->hash, key); | |
1242 g_return_if_fail(row != NULL); | |
1243 | |
1244 current = g_list_index(tree->list, key); | |
1245 | |
1246 if (row->parent) | |
1247 s = row->parent->child; | |
1248 else | |
1249 s = tree->root; | |
1250 | |
1251 q = NULL; | |
1252 while (s) { | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1253 if (tree->priv->compare(row->key, s->key) < 0) |
15818 | 1254 break; |
1255 q = s; | |
1256 s = s->next; | |
1257 } | |
1258 | |
1259 /* Move row between q and s */ | |
1260 if (row == q || row == s) | |
1261 return; | |
1262 | |
1263 if (q == NULL) { | |
1264 /* row becomes the first child of its parent */ | |
1265 row->prev->next = row->next; /* row->prev cannot be NULL at this point */ | |
1266 if (row->next) | |
1267 row->next->prev = row->prev; | |
1268 if (row->parent) | |
1269 row->parent->child = row; | |
1270 else | |
1271 tree->root = row; | |
1272 row->next = s; | |
1273 s->prev = row; /* s cannot be NULL */ | |
1274 row->prev = NULL; | |
1275 newp = g_list_index(tree->list, s) - 1; | |
1276 } else { | |
1277 if (row->prev) { | |
1278 row->prev->next = row->next; | |
1279 } else { | |
1280 /* row was the first child of its parent */ | |
1281 if (row->parent) | |
1282 row->parent->child = row->next; | |
1283 else | |
1284 tree->top = row->next; | |
1285 } | |
1286 | |
1287 if (row->next) | |
1288 row->next->prev = row->prev; | |
1289 | |
1290 q->next = row; | |
1291 row->prev = q; | |
1292 if (s) | |
1293 s->prev = row; | |
1294 row->next = s; | |
1295 newp = g_list_index(tree->list, q) + 1; | |
1296 } | |
1297 tree->list = g_list_reposition_child(tree->list, current, newp); | |
1298 | |
1299 redraw_tree(tree); | |
1300 } | |
1301 | |
1302 GntTreeRow *gnt_tree_add_row_after(GntTree *tree, void *key, GntTreeRow *row, void *parent, void *bigbro) | |
1303 { | |
1304 GntTreeRow *pr = NULL; | |
1305 | |
20306
665d6d7eea83
applied changes from 88f296b3653b5a7578a7581c1582d37390c9d212
Luke Schierer <lschiere@pidgin.im>
parents:
19680
diff
changeset
|
1306 row->tree = tree; |
665d6d7eea83
applied changes from 88f296b3653b5a7578a7581c1582d37390c9d212
Luke Schierer <lschiere@pidgin.im>
parents:
19680
diff
changeset
|
1307 row->key = key; |
665d6d7eea83
applied changes from 88f296b3653b5a7578a7581c1582d37390c9d212
Luke Schierer <lschiere@pidgin.im>
parents:
19680
diff
changeset
|
1308 row->data = NULL; |
15818 | 1309 g_hash_table_replace(tree->hash, key, row); |
1310 | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1311 if (bigbro == NULL && tree->priv->compare) |
15818 | 1312 { |
1313 bigbro = find_position(tree, key, parent); | |
1314 } | |
1315 | |
1316 if (tree->root == NULL) | |
1317 { | |
1318 tree->root = row; | |
1319 tree->list = g_list_prepend(tree->list, key); | |
1320 } | |
1321 else | |
1322 { | |
1323 int position = 0; | |
1324 | |
1325 if (bigbro) | |
1326 { | |
1327 pr = g_hash_table_lookup(tree->hash, bigbro); | |
1328 if (pr) | |
1329 { | |
1330 if (pr->next) pr->next->prev = row; | |
1331 row->next = pr->next; | |
1332 row->prev = pr; | |
1333 pr->next = row; | |
1334 row->parent = pr->parent; | |
1335 | |
1336 position = g_list_index(tree->list, bigbro); | |
1337 } | |
1338 } | |
1339 | |
1340 if (pr == NULL && parent) | |
1341 { | |
1342 pr = g_hash_table_lookup(tree->hash, parent); | |
1343 if (pr) | |
1344 { | |
1345 if (pr->child) pr->child->prev = row; | |
1346 row->next = pr->child; | |
1347 pr->child = row; | |
1348 row->parent = pr; | |
1349 | |
1350 position = g_list_index(tree->list, parent); | |
1351 } | |
1352 } | |
1353 | |
1354 if (pr == NULL) | |
1355 { | |
1356 GntTreeRow *r = tree->root; | |
1357 row->next = r; | |
1358 if (r) r->prev = row; | |
1359 if (tree->current == tree->root) | |
1360 tree->current = row; | |
1361 tree->root = row; | |
1362 tree->list = g_list_prepend(tree->list, key); | |
1363 } | |
1364 else | |
1365 { | |
1366 tree->list = g_list_insert(tree->list, key, position + 1); | |
1367 } | |
1368 } | |
1369 redraw_tree(tree); | |
1370 | |
1371 return row; | |
1372 } | |
1373 | |
1374 GntTreeRow *gnt_tree_add_row_last(GntTree *tree, void *key, GntTreeRow *row, void *parent) | |
1375 { | |
1376 GntTreeRow *pr = NULL, *br = NULL; | |
1377 | |
1378 if (parent) | |
1379 pr = g_hash_table_lookup(tree->hash, parent); | |
1380 | |
1381 if (pr) | |
1382 br = pr->child; | |
1383 else | |
1384 br = tree->root; | |
1385 | |
1386 if (br) | |
1387 { | |
1388 while (br->next) | |
1389 br = br->next; | |
1390 } | |
1391 | |
1392 return gnt_tree_add_row_after(tree, key, row, parent, br ? br->key : NULL); | |
1393 } | |
1394 | |
1395 gpointer gnt_tree_get_selection_data(GntTree *tree) | |
1396 { | |
1397 if (tree->current) | |
1398 return tree->current->key; /* XXX: perhaps we should just get rid of 'data' */ | |
1399 return NULL; | |
1400 } | |
1401 | |
1402 char *gnt_tree_get_selection_text(GntTree *tree) | |
1403 { | |
1404 if (tree->current) | |
1405 return update_row_text(tree, tree->current); | |
1406 return NULL; | |
1407 } | |
1408 | |
18564
36257cac2b11
Anoter patch from Javeed Shaikh to introduce a utility function for a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18563
diff
changeset
|
1409 GList *gnt_tree_get_row_text_list(GntTree *tree, gpointer key) |
15818 | 1410 { |
1411 GList *list = NULL, *iter; | |
18564
36257cac2b11
Anoter patch from Javeed Shaikh to introduce a utility function for a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18563
diff
changeset
|
1412 GntTreeRow *row = key ? g_hash_table_lookup(tree->hash, key) : tree->current; |
15818 | 1413 int i; |
1414 | |
18564
36257cac2b11
Anoter patch from Javeed Shaikh to introduce a utility function for a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18563
diff
changeset
|
1415 if (!row) |
15818 | 1416 return NULL; |
1417 | |
18564
36257cac2b11
Anoter patch from Javeed Shaikh to introduce a utility function for a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18563
diff
changeset
|
1418 for (i = 0, iter = row->columns; i < tree->ncol && iter; |
15818 | 1419 i++, iter = iter->next) |
1420 { | |
1421 GntTreeCol *col = iter->data; | |
18564
36257cac2b11
Anoter patch from Javeed Shaikh to introduce a utility function for a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18563
diff
changeset
|
1422 list = g_list_append(list, BINARY_DATA(tree, i) ? col->text : g_strdup(col->text)); |
15818 | 1423 } |
1424 | |
1425 return list; | |
1426 } | |
1427 | |
18564
36257cac2b11
Anoter patch from Javeed Shaikh to introduce a utility function for a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18563
diff
changeset
|
1428 GList *gnt_tree_get_selection_text_list(GntTree *tree) |
36257cac2b11
Anoter patch from Javeed Shaikh to introduce a utility function for a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18563
diff
changeset
|
1429 { |
36257cac2b11
Anoter patch from Javeed Shaikh to introduce a utility function for a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18563
diff
changeset
|
1430 return gnt_tree_get_row_text_list(tree, NULL); |
36257cac2b11
Anoter patch from Javeed Shaikh to introduce a utility function for a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18563
diff
changeset
|
1431 } |
36257cac2b11
Anoter patch from Javeed Shaikh to introduce a utility function for a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18563
diff
changeset
|
1432 |
15818 | 1433 void gnt_tree_remove(GntTree *tree, gpointer key) |
1434 { | |
1435 GntTreeRow *row = g_hash_table_lookup(tree->hash, key); | |
1436 static int depth = 0; /* Only redraw after all child nodes are removed */ | |
1437 if (row) | |
1438 { | |
1439 gboolean redraw = FALSE; | |
1440 | |
1441 if (row->child) { | |
1442 depth++; | |
1443 while (row->child) { | |
1444 gnt_tree_remove(tree, row->child->key); | |
1445 } | |
1446 depth--; | |
1447 } | |
1448 | |
1449 if (get_distance(tree->top, row) >= 0 && get_distance(row, tree->bottom) >= 0) | |
1450 redraw = TRUE; | |
1451 | |
1452 /* Update root/top/current/bottom if necessary */ | |
1453 if (tree->root == row) | |
1454 tree->root = get_next(row); | |
1455 if (tree->top == row) | |
1456 { | |
1457 if (tree->top != tree->root) | |
1458 tree->top = get_prev(row); | |
1459 else | |
1460 tree->top = get_next(row); | |
1461 } | |
1462 if (tree->current == row) | |
1463 { | |
1464 if (tree->current != tree->root) | |
1465 tree->current = get_prev(row); | |
1466 else | |
1467 tree->current = get_next(row); | |
1468 tree_selection_changed(tree, row, tree->current); | |
1469 } | |
1470 if (tree->bottom == row) | |
1471 { | |
1472 tree->bottom = get_prev(row); | |
1473 } | |
1474 | |
1475 /* Fix the links */ | |
1476 if (row->next) | |
1477 row->next->prev = row->prev; | |
1478 if (row->parent && row->parent->child == row) | |
1479 row->parent->child = row->next; | |
1480 if (row->prev) | |
1481 row->prev->next = row->next; | |
1482 | |
1483 g_hash_table_remove(tree->hash, key); | |
1484 tree->list = g_list_remove(tree->list, key); | |
1485 | |
1486 if (redraw && depth == 0) | |
1487 { | |
1488 redraw_tree(tree); | |
1489 } | |
1490 } | |
1491 } | |
1492 | |
1493 static gboolean | |
1494 return_true(gpointer key, gpointer data, gpointer null) | |
1495 { | |
1496 return TRUE; | |
1497 } | |
1498 | |
1499 void gnt_tree_remove_all(GntTree *tree) | |
1500 { | |
1501 tree->root = NULL; | |
1502 g_hash_table_foreach_remove(tree->hash, (GHRFunc)return_true, tree); | |
1503 g_list_free(tree->list); | |
1504 tree->list = NULL; | |
1505 tree->current = tree->top = tree->bottom = NULL; | |
1506 } | |
1507 | |
1508 int gnt_tree_get_selection_visible_line(GntTree *tree) | |
1509 { | |
1510 return get_distance(tree->top, tree->current) + | |
1511 !!(GNT_WIDGET_IS_FLAG_SET(GNT_WIDGET(tree), GNT_WIDGET_NO_BORDER)); | |
1512 } | |
1513 | |
1514 void gnt_tree_change_text(GntTree *tree, gpointer key, int colno, const char *text) | |
1515 { | |
1516 GntTreeRow *row; | |
1517 GntTreeCol *col; | |
1518 | |
1519 g_return_if_fail(colno < tree->ncol); | |
1520 | |
1521 row = g_hash_table_lookup(tree->hash, key); | |
1522 if (row) | |
1523 { | |
1524 col = g_list_nth_data(row->columns, colno); | |
18420
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1525 if (BINARY_DATA(tree, colno)) { |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1526 col->text = (gpointer)text; |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1527 } else { |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1528 g_free(col->text); |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1529 col->text = g_strdup(text ? text : ""); |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1530 } |
15818 | 1531 |
21271
ca16de222b76
Do not do unnecessary processing when updating text in a column.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21264
diff
changeset
|
1532 if (GNT_WIDGET_IS_FLAG_SET(GNT_WIDGET(tree), GNT_WIDGET_MAPPED) && |
ca16de222b76
Do not do unnecessary processing when updating text in a column.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21264
diff
changeset
|
1533 get_distance(tree->top, row) >= 0 && get_distance(row, tree->bottom) >= 0) |
15818 | 1534 redraw_tree(tree); |
1535 } | |
1536 } | |
1537 | |
1538 GntTreeRow *gnt_tree_add_choice(GntTree *tree, void *key, GntTreeRow *row, void *parent, void *bigbro) | |
1539 { | |
1540 GntTreeRow *r; | |
1541 r = g_hash_table_lookup(tree->hash, key); | |
1542 g_return_val_if_fail(!r || !r->choice, NULL); | |
1543 | |
1544 if (bigbro == NULL) { | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1545 if (tree->priv->compare) |
15818 | 1546 bigbro = find_position(tree, key, parent); |
1547 else { | |
1548 r = g_hash_table_lookup(tree->hash, parent); | |
1549 if (!r) | |
1550 r = tree->root; | |
1551 else | |
1552 r = r->child; | |
1553 if (r) { | |
1554 while (r->next) | |
1555 r = r->next; | |
1556 bigbro = r->key; | |
1557 } | |
1558 } | |
1559 } | |
1560 row = gnt_tree_add_row_after(tree, key, row, parent, bigbro); | |
1561 row->choice = TRUE; | |
1562 | |
1563 return row; | |
1564 } | |
1565 | |
1566 void gnt_tree_set_choice(GntTree *tree, void *key, gboolean set) | |
1567 { | |
1568 GntTreeRow *row = g_hash_table_lookup(tree->hash, key); | |
1569 | |
1570 if (!row) | |
1571 return; | |
1572 g_return_if_fail(row->choice); | |
1573 | |
1574 row->isselected = set; | |
1575 redraw_tree(tree); | |
1576 } | |
1577 | |
1578 gboolean gnt_tree_get_choice(GntTree *tree, void *key) | |
1579 { | |
1580 GntTreeRow *row = g_hash_table_lookup(tree->hash, key); | |
1581 | |
1582 if (!row) | |
1583 return FALSE; | |
1584 g_return_val_if_fail(row->choice, FALSE); | |
1585 | |
1586 return row->isselected; | |
1587 } | |
1588 | |
1589 void gnt_tree_set_row_flags(GntTree *tree, void *key, GntTextFormatFlags flags) | |
1590 { | |
1591 GntTreeRow *row = g_hash_table_lookup(tree->hash, key); | |
1592 if (!row || row->flags == flags) | |
1593 return; | |
1594 | |
1595 row->flags = flags; | |
1596 redraw_tree(tree); /* XXX: It shouldn't be necessary to redraw the whole darned tree */ | |
1597 } | |
1598 | |
21691
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
1599 void gnt_tree_set_row_color(GntTree *tree, void *key, int color) |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
1600 { |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
1601 GntTreeRow *row = g_hash_table_lookup(tree->hash, key); |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
1602 if (!row || row->color == color) |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
1603 return; |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
1604 |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
1605 row->color = color; |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
1606 redraw_tree(tree); |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
1607 } |
3ed9b027479d
Add support for colour in gnttreerows, and colourise the blist. Fixes #1490
Richard Nelson <wabz@pidgin.im>
parents:
21283
diff
changeset
|
1608 |
15818 | 1609 void gnt_tree_set_selected(GntTree *tree , void *key) |
1610 { | |
1611 int dist; | |
1612 GntTreeRow *row = g_hash_table_lookup(tree->hash, key); | |
16203
4f6a6443a1e3
emit/handle gnttree signals appropriately
Richard Nelson <wabz@pidgin.im>
parents:
16123
diff
changeset
|
1613 if (!row || row == tree->current) |
15818 | 1614 return; |
1615 | |
1616 if (tree->top == NULL) | |
1617 tree->top = row; | |
1618 if (tree->bottom == NULL) | |
1619 tree->bottom = row; | |
1620 | |
1621 tree->current = row; | |
1622 if ((dist = get_distance(tree->current, tree->bottom)) < 0) | |
1623 gnt_tree_scroll(tree, -dist); | |
1624 else if ((dist = get_distance(tree->current, tree->top)) > 0) | |
1625 gnt_tree_scroll(tree, -dist); | |
1626 else | |
1627 redraw_tree(tree); | |
16203
4f6a6443a1e3
emit/handle gnttree signals appropriately
Richard Nelson <wabz@pidgin.im>
parents:
16123
diff
changeset
|
1628 tree_selection_changed(tree, row, tree->current); |
15818 | 1629 } |
1630 | |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1631 static void _gnt_tree_init_internals(GntTree *tree, int col) |
15818 | 1632 { |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1633 gnt_tree_free_columns(tree); |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1634 |
15818 | 1635 tree->ncol = col; |
1636 tree->hash = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, free_tree_row); | |
1637 tree->columns = g_new0(struct _GntTreeColInfo, col); | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1638 tree->priv->lastvisible = col - 1; |
15818 | 1639 while (col--) |
1640 { | |
1641 tree->columns[col].width = 15; | |
1642 } | |
1643 tree->list = NULL; | |
1644 tree->show_title = FALSE; | |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1645 g_object_notify(G_OBJECT(tree), "columns"); |
15818 | 1646 } |
1647 | |
1648 GntWidget *gnt_tree_new_with_columns(int col) | |
1649 { | |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1650 GntWidget *widget = g_object_new(GNT_TYPE_TREE, |
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1651 "columns", col, |
22189
4165bcd57486
Allow customizing the expander in the tree. This is mostly a hack ;)
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22179
diff
changeset
|
1652 "expander-level", 1, |
18531
da550279d390
Use gobject properties instead of hacks when creating columns in a tree.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18449
diff
changeset
|
1653 NULL); |
15818 | 1654 |
1655 return widget; | |
1656 } | |
1657 | |
1658 GntTreeRow *gnt_tree_create_row_from_list(GntTree *tree, GList *list) | |
1659 { | |
1660 GList *iter; | |
1661 int i; | |
1662 GntTreeRow *row = g_new0(GntTreeRow, 1); | |
1663 | |
1664 for (i = 0, iter = list; i < tree->ncol && iter; iter = iter->next, i++) | |
1665 { | |
1666 GntTreeCol *col = g_new0(GntTreeCol, 1); | |
1667 col->span = 1; | |
18420
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1668 if (BINARY_DATA(tree, i)) { |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1669 col->text = iter->data; |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1670 col->isbinary = TRUE; |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1671 } else { |
18873
7066896f6628
disapproval of revision 'a4ce7b8adf2db74d531c35278fe83247d90ce4b1'
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18872
diff
changeset
|
1672 col->text = g_strdup(iter->data ? iter->data : ""); |
18420
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1673 col->isbinary = FALSE; |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1674 } |
15818 | 1675 |
1676 row->columns = g_list_append(row->columns, col); | |
1677 } | |
1678 | |
1679 return row; | |
1680 } | |
1681 | |
1682 GntTreeRow *gnt_tree_create_row(GntTree *tree, ...) | |
1683 { | |
1684 int i; | |
1685 va_list args; | |
1686 GList *list = NULL; | |
1687 GntTreeRow *row; | |
1688 | |
1689 va_start(args, tree); | |
1690 for (i = 0; i < tree->ncol; i++) | |
1691 { | |
1692 list = g_list_append(list, va_arg(args, char *)); | |
1693 } | |
1694 va_end(args); | |
1695 | |
1696 row = gnt_tree_create_row_from_list(tree, list); | |
1697 g_list_free(list); | |
1698 | |
1699 return row; | |
1700 } | |
1701 | |
1702 void gnt_tree_set_col_width(GntTree *tree, int col, int width) | |
1703 { | |
1704 g_return_if_fail(col < tree->ncol); | |
1705 | |
1706 tree->columns[col].width = width; | |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1707 if (tree->columns[col].width_ratio == 0) |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1708 tree->columns[col].width_ratio = width; |
15818 | 1709 } |
1710 | |
18348
1f9db757efc2
Oops. I missed this. This allows setting tree-column titles one by one.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18183
diff
changeset
|
1711 void gnt_tree_set_column_title(GntTree *tree, int index, const char *title) |
1f9db757efc2
Oops. I missed this. This allows setting tree-column titles one by one.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18183
diff
changeset
|
1712 { |
1f9db757efc2
Oops. I missed this. This allows setting tree-column titles one by one.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18183
diff
changeset
|
1713 g_free(tree->columns[index].title); |
1f9db757efc2
Oops. I missed this. This allows setting tree-column titles one by one.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18183
diff
changeset
|
1714 tree->columns[index].title = g_strdup(title); |
1f9db757efc2
Oops. I missed this. This allows setting tree-column titles one by one.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18183
diff
changeset
|
1715 } |
1f9db757efc2
Oops. I missed this. This allows setting tree-column titles one by one.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18183
diff
changeset
|
1716 |
15818 | 1717 void gnt_tree_set_column_titles(GntTree *tree, ...) |
1718 { | |
1719 int i; | |
1720 va_list args; | |
1721 | |
1722 va_start(args, tree); | |
1723 for (i = 0; i < tree->ncol; i++) | |
1724 { | |
1725 const char *title = va_arg(args, const char *); | |
1726 tree->columns[i].title = g_strdup(title); | |
1727 } | |
1728 va_end(args); | |
1729 } | |
1730 | |
1731 void gnt_tree_set_show_title(GntTree *tree, gboolean set) | |
1732 { | |
1733 tree->show_title = set; | |
1734 GNT_WIDGET(tree)->priv.minh = (set ? 6 : 4); | |
1735 } | |
1736 | |
1737 void gnt_tree_set_compare_func(GntTree *tree, GCompareFunc func) | |
1738 { | |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1739 tree->priv->compare = func; |
15818 | 1740 } |
1741 | |
1742 void gnt_tree_set_expanded(GntTree *tree, void *key, gboolean expanded) | |
1743 { | |
1744 GntTreeRow *row = g_hash_table_lookup(tree->hash, key); | |
1745 if (row) { | |
1746 row->collapsed = !expanded; | |
1747 if (GNT_WIDGET(tree)->window) | |
1748 gnt_widget_draw(GNT_WIDGET(tree)); | |
16203
4f6a6443a1e3
emit/handle gnttree signals appropriately
Richard Nelson <wabz@pidgin.im>
parents:
16123
diff
changeset
|
1749 g_signal_emit(tree, signals[SIG_COLLAPSED], 0, key, row->collapsed); |
15818 | 1750 } |
1751 } | |
1752 | |
1753 void gnt_tree_set_show_separator(GntTree *tree, gboolean set) | |
1754 { | |
1755 tree->show_separator = set; | |
1756 } | |
1757 | |
1758 void gnt_tree_adjust_columns(GntTree *tree) | |
1759 { | |
1760 GntTreeRow *row = tree->root; | |
16123
bc280c341679
We don't need to do anything about the heights here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16105
diff
changeset
|
1761 int *widths, i, twidth; |
15818 | 1762 |
1763 widths = g_new0(int, tree->ncol); | |
1764 while (row) { | |
1765 GList *iter; | |
1766 for (i = 0, iter = row->columns; iter; iter = iter->next, i++) { | |
1767 GntTreeCol *col = iter->data; | |
1768 int w = gnt_util_onscreen_width(col->text, NULL); | |
15968
0ab73bf1fef1
check-items are wider.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15931
diff
changeset
|
1769 if (i == 0 && row->choice) |
0ab73bf1fef1
check-items are wider.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15931
diff
changeset
|
1770 w += 4; |
15972
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
1771 if (i == 0) { |
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
1772 w += find_depth(row) * TAB_SIZE; |
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
1773 } |
15818 | 1774 if (widths[i] < w) |
1775 widths[i] = w; | |
1776 } | |
15972
5eb0621e0760
Backspace to jump to parent.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15971
diff
changeset
|
1777 row = get_next(row); |
15818 | 1778 } |
1779 | |
1780 twidth = 1 + 2 * (!GNT_WIDGET_IS_FLAG_SET(GNT_WIDGET(tree), GNT_WIDGET_NO_BORDER)); | |
1781 for (i = 0; i < tree->ncol; i++) { | |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
1782 if (tree->columns[i].flags & GNT_TREE_COLUMN_FIXED_SIZE) |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
1783 widths[i] = tree->columns[i].width; |
15818 | 1784 gnt_tree_set_col_width(tree, i, widths[i]); |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
1785 if (!COLUMN_INVISIBLE(tree, i)) { |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
1786 twidth = twidth + widths[i]; |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1787 if (tree->priv->lastvisible != i) |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
1788 twidth += 1; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
1789 } |
15818 | 1790 } |
1791 g_free(widths); | |
1792 | |
16123
bc280c341679
We don't need to do anything about the heights here.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16105
diff
changeset
|
1793 gnt_widget_set_size(GNT_WIDGET(tree), twidth, -1); |
15818 | 1794 } |
1795 | |
1796 void gnt_tree_set_hash_fns(GntTree *tree, gpointer hash, gpointer eq, gpointer kd) | |
1797 { | |
1798 g_hash_table_foreach_remove(tree->hash, return_true, NULL); | |
1799 g_hash_table_destroy(tree->hash); | |
1800 tree->hash = g_hash_table_new_full(hash, eq, kd, free_tree_row); | |
1801 } | |
1802 | |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1803 static void |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1804 set_column_flag(GntTree *tree, int col, GntTreeColumnFlag flag, gboolean set) |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1805 { |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1806 if (set) |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1807 tree->columns[col].flags |= flag; |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1808 else |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1809 tree->columns[col].flags &= ~flag; |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1810 } |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1811 |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
1812 void gnt_tree_set_column_visible(GntTree *tree, int col, gboolean vis) |
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
1813 { |
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
1814 g_return_if_fail(col < tree->ncol); |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1815 set_column_flag(tree, col, GNT_TREE_COLUMN_INVISIBLE, !vis); |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
1816 if (vis) { |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
1817 /* the column is visible */ |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1818 if (tree->priv->lastvisible < col) |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1819 tree->priv->lastvisible = col; |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
1820 } else { |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1821 if (tree->priv->lastvisible == col) |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1822 while (tree->priv->lastvisible) { |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1823 tree->priv->lastvisible--; |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1824 if (!COLUMN_INVISIBLE(tree, tree->priv->lastvisible)) |
18440
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
1825 break; |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
1826 } |
be10fc22d649
Allow trigger keys for menuitems.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18420
diff
changeset
|
1827 } |
21283
406aa3be6b32
Minor adjustments to prevent a crash, correct a data type and fix drawing.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21273
diff
changeset
|
1828 if (GNT_WIDGET_IS_FLAG_SET(GNT_WIDGET(tree), GNT_WIDGET_MAPPED)) |
406aa3be6b32
Minor adjustments to prevent a crash, correct a data type and fix drawing.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21273
diff
changeset
|
1829 readjust_columns(tree); |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1830 } |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1831 |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1832 void gnt_tree_set_column_resizable(GntTree *tree, int col, gboolean res) |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1833 { |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1834 g_return_if_fail(col < tree->ncol); |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1835 set_column_flag(tree, col, GNT_TREE_COLUMN_FIXED_SIZE, !res); |
15970
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
1836 } |
790d1d003825
Allow making some columns invisible.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15968
diff
changeset
|
1837 |
18420
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1838 void gnt_tree_set_column_is_binary(GntTree *tree, int col, gboolean bin) |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1839 { |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1840 g_return_if_fail(col < tree->ncol); |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1841 set_column_flag(tree, col, GNT_TREE_COLUMN_FIXED_SIZE, bin); |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1842 } |
e2b8b17fc62c
Allow storing non-string binary data in tree columns.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18405
diff
changeset
|
1843 |
18449
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
1844 void gnt_tree_set_column_is_right_aligned(GntTree *tree, int col, gboolean right) |
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
1845 { |
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
1846 g_return_if_fail(col < tree->ncol); |
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
1847 set_column_flag(tree, col, GNT_TREE_COLUMN_RIGHT_ALIGNED, right); |
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
1848 } |
ed17f5530300
Allow showing right-aligned text trees. Right-align the size in the file
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18440
diff
changeset
|
1849 |
18404
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1850 void gnt_tree_set_column_width_ratio(GntTree *tree, int cols[]) |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1851 { |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1852 int i; |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1853 for (i = 0; i < tree->ncol && cols[i]; i++) { |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1854 tree->columns[i].width_ratio = cols[i]; |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1855 } |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1856 } |
9a0f99ea664d
Resize tree-columns nicely when the tree is resized. We can tell it to
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18348
diff
changeset
|
1857 |
18534
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1858 void gnt_tree_set_search_column(GntTree *tree, int col) |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1859 { |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1860 g_return_if_fail(col < tree->ncol); |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1861 g_return_if_fail(!BINARY_DATA(tree, col)); |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1862 tree->priv->search_column = col; |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1863 } |
ffa46a399f3c
Allow setting the search column in a tree to use for typeahead searching.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18531
diff
changeset
|
1864 |
18535
fad459189cc5
New feature: successful compilation.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18534
diff
changeset
|
1865 gboolean gnt_tree_is_searching(GntTree *tree) |
fad459189cc5
New feature: successful compilation.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18534
diff
changeset
|
1866 { |
fad459189cc5
New feature: successful compilation.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18534
diff
changeset
|
1867 return (tree->priv->search != NULL); |
fad459189cc5
New feature: successful compilation.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18534
diff
changeset
|
1868 } |
fad459189cc5
New feature: successful compilation.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18534
diff
changeset
|
1869 |
18557
212c2bec5c97
Allow using custom search functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18556
diff
changeset
|
1870 void gnt_tree_set_search_function(GntTree *tree, |
18563
dba4edbde4a7
Patch from Javeed Shaikh to make the search function non-braindamaged.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18557
diff
changeset
|
1871 gboolean (*func)(GntTree *tree, gpointer key, const char *search, const char *current)) |
18557
212c2bec5c97
Allow using custom search functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18556
diff
changeset
|
1872 { |
212c2bec5c97
Allow using custom search functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18556
diff
changeset
|
1873 tree->priv->search_func = func; |
212c2bec5c97
Allow using custom search functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18556
diff
changeset
|
1874 } |
212c2bec5c97
Allow using custom search functions.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
18556
diff
changeset
|
1875 |
22170
364e67f1a429
Function to get the parent key.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21691
diff
changeset
|
1876 gpointer gnt_tree_get_parent_key(GntTree *tree, gpointer key) |
364e67f1a429
Function to get the parent key.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21691
diff
changeset
|
1877 { |
364e67f1a429
Function to get the parent key.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21691
diff
changeset
|
1878 GntTreeRow *row = g_hash_table_lookup(tree->hash, key); |
22179
e476e964650c
This is supposed to return the key, not the row itself.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
22170
diff
changeset
|
1879 return (row && row->parent) ? row->parent->key : NULL; |
22170
364e67f1a429
Function to get the parent key.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21691
diff
changeset
|
1880 } |
364e67f1a429
Function to get the parent key.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
21691
diff
changeset
|
1881 |