{
gint i;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
g_return_if_fail (tree_store->columns_dirty == 0);
foo_tree_store_set_n_columns (tree_store, n_columns);
gint column,
GValue *value)
{
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
g_return_if_fail (VALID_ITER (iter, tree_store));
g_return_if_fail (column >= 0 && column < tree_store->n_columns);
g_return_if_fail (G_IS_VALUE (value));
gboolean emit_signal = FALSE;
gboolean maybe_need_sort = FALSE;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
g_return_if_fail (VALID_ITER (iter, tree_store));
foo_tree_store_set_vector_internal (tree_store, iter,
gboolean emit_signal = FALSE;
gboolean maybe_need_sort = FALSE;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
g_return_if_fail (VALID_ITER (iter, tree_store));
foo_tree_store_set_valist_internal (tree_store, iter,
GNode *parent;
GNode *next_node;
- g_return_val_if_fail (GTK_IS_TREE_STORE (tree_store), FALSE);
+ g_return_val_if_fail (FOO_IS_TREE_STORE (tree_store), FALSE);
g_return_val_if_fail (VALID_ITER (iter, tree_store), FALSE);
parent = G_NODE (iter->user_data)->parent;
GNode *parent_node;
GNode *new_node;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
g_return_if_fail (iter != NULL);
if (parent)
g_return_if_fail (VALID_ITER (parent, tree_store));
GNode *parent_node = NULL;
GNode *new_node;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
g_return_if_fail (iter != NULL);
if (parent != NULL)
g_return_if_fail (VALID_ITER (parent, tree_store));
GNode *parent_node;
GNode *new_node;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
g_return_if_fail (iter != NULL);
if (parent != NULL)
g_return_if_fail (VALID_ITER (parent, tree_store));
gboolean changed = FALSE;
gboolean maybe_need_sort = FALSE;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
if (!iter)
iter = &tmp_iter;
gboolean changed = FALSE;
gboolean maybe_need_sort = FALSE;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
if (!iter)
iter = &tmp_iter;
{
GNode *parent_node;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
g_return_if_fail (iter != NULL);
if (parent != NULL)
g_return_if_fail (VALID_ITER (parent, tree_store));
{
GNode *parent_node;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
g_return_if_fail (iter != NULL);
if (parent != NULL)
g_return_if_fail (VALID_ITER (parent, tree_store));
GtkTreeIter *iter,
GtkTreeIter *descendant)
{
- g_return_val_if_fail (GTK_IS_TREE_STORE (tree_store), FALSE);
+ g_return_val_if_fail (FOO_IS_TREE_STORE (tree_store), FALSE);
g_return_val_if_fail (VALID_ITER (iter, tree_store), FALSE);
g_return_val_if_fail (VALID_ITER (descendant, tree_store), FALSE);
foo_tree_store_iter_depth (FooTreeStore *tree_store,
GtkTreeIter *iter)
{
- g_return_val_if_fail (GTK_IS_TREE_STORE (tree_store), 0);
+ g_return_val_if_fail (FOO_IS_TREE_STORE (tree_store), 0);
g_return_val_if_fail (VALID_ITER (iter, tree_store), 0);
return g_node_depth (G_NODE (iter->user_data)) - 2;
void
foo_tree_store_clear (FooTreeStore *tree_store)
{
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
foo_tree_store_clear_traverse (tree_store->root, tree_store);
foo_tree_store_increment_stamp (tree_store);
foo_tree_store_iter_is_valid (FooTreeStore *tree_store,
GtkTreeIter *iter)
{
- g_return_val_if_fail (GTK_IS_TREE_STORE (tree_store), FALSE);
+ g_return_val_if_fail (FOO_IS_TREE_STORE (tree_store), FALSE);
g_return_val_if_fail (iter != NULL, FALSE);
if (!VALID_ITER (iter, tree_store))
GtkTreePath *path;
SortTuple *sort_array;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
g_return_if_fail (!FOO_TREE_STORE_IS_SORTED (tree_store));
g_return_if_fail (parent == NULL || VALID_ITER (parent, tree_store));
g_return_if_fail (new_order != NULL);
GtkTreePath *path_a, *path_b;
GtkTreeIter parent;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
g_return_if_fail (VALID_ITER (a, tree_store));
g_return_if_fail (VALID_ITER (b, tree_store));
gint depth = 0;
gboolean handle_b = TRUE;
- g_return_if_fail (GTK_IS_TREE_STORE (tree_store));
+ g_return_if_fail (FOO_IS_TREE_STORE (tree_store));
g_return_if_fail (!FOO_TREE_STORE_IS_SORTED (tree_store));
g_return_if_fail (VALID_ITER (iter, tree_store));
if (position)