aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-tree-model.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@HelixCode.com>2000-10-04 23:51:35 +0800
committerMichael Zucci <zucchi@src.gnome.org>2000-10-04 23:51:35 +0800
commit58eba683f83f3b6e2ca023c34e6eae647d929409 (patch)
treeb3f8feb446ef991df4a39fda25959d6b1b256294 /widgets/table/e-tree-model.c
parentdcb9840881ea727701ccc12b5c96545825881064 (diff)
downloadgsoc2013-evolution-58eba683f83f3b6e2ca023c34e6eae647d929409.tar
gsoc2013-evolution-58eba683f83f3b6e2ca023c34e6eae647d929409.tar.gz
gsoc2013-evolution-58eba683f83f3b6e2ca023c34e6eae647d929409.tar.bz2
gsoc2013-evolution-58eba683f83f3b6e2ca023c34e6eae647d929409.tar.lz
gsoc2013-evolution-58eba683f83f3b6e2ca023c34e6eae647d929409.tar.xz
gsoc2013-evolution-58eba683f83f3b6e2ca023c34e6eae647d929409.tar.zst
gsoc2013-evolution-58eba683f83f3b6e2ca023c34e6eae647d929409.zip
Changed to take into account the sort group, if the table has one.x
2000-10-04 Not Zed <NotZed@HelixCode.com> * e-table-sorted-variable.c (etsv_add): Changed to take into account the sort group, if the table has one.x (etsv_insert_idle): Clear the insert count if we hit an idle loop. (etsv_sort_idle): Reset the insert count if we perform a sort. (etsv_add): If we are adding a lot (>ETSV_INSERT_MAX) items, without hitting an idle loop, assume we're better off performing a sort instead. Use another idle handler to reset the count. 2000-10-03 Not Zed <NotZed@HelixCode.com> * e-table-sorted-variable.c (etsv_sort_by_group): Sort based on the sort_group stuff. * e-tree-model.c (e_tree_init): Setup the group sort info string. (etree_destroy): And free it. (build_sort_group): Build a string for this node. 2000-09-29 Not Zed <NotZed@HelixCode.com> * e-cell-tree.c (e_cell_tree_get_node): Changed to take the source model, not the tree model. The source model may be a subset, and it needs to remap the rows for us. (ect_draw): (ect_event): (ect_max_width): (ect_print): Changed callers. * e-table-sorted-variable.c (etsv_sort_subset): (etsv_sort_build_subset): (etsv_sort_free_subset): Functions to perfom grouping of sorts for sorts that have row_sort_group returning useful info. (etsv_sort): Use the complex sort routines if we need to. * e-table-model.c (e_table_model_row_sort_group): Return a sort-id for a given row. (e_table_model_has_sort_group): Return if the sort-id provides any useful information. svn path=/trunk/; revision=5705
Diffstat (limited to 'widgets/table/e-tree-model.c')
-rw-r--r--widgets/table/e-tree-model.c46
1 files changed, 45 insertions, 1 deletions
diff --git a/widgets/table/e-tree-model.c b/widgets/table/e-tree-model.c
index d5b69656d5..7687b5b185 100644
--- a/widgets/table/e-tree-model.c
+++ b/widgets/table/e-tree-model.c
@@ -72,6 +72,7 @@ etree_destroy (GtkObject *object)
g_hash_table_foreach_remove (etree->expanded_state,
expanded_remove_func, NULL);
+ g_string_free(etree->sort_group, TRUE);
GTK_OBJECT_CLASS (e_tree_model_parent_class)->destroy (object);
}
@@ -347,6 +348,38 @@ etable_is_cell_editable (ETableModel *etm, int col, int row)
return et_class->is_editable (etree, node, col);
}
+static void
+build_sort_group(GString *out, ETreePath *node)
+{
+ if (node->parent) {
+ build_sort_group(out, node->parent);
+ }
+ g_string_sprintfa(out, "/%p", node);
+}
+
+static const char *
+etable_row_sort_group(ETableModel *etm, int row)
+{
+ ETreeModel *etree = E_TREE_MODEL(etm);
+ ETreeModelClass *et_class = ETM_CLASS(etm);
+ ETreePath* node = e_tree_model_node_at_row (etree, row);
+
+ g_return_val_if_fail (node, "");
+
+ g_string_truncate(etree->sort_group, 0);
+ if (node)
+ build_sort_group(etree->sort_group, node);
+
+ return etree->sort_group->str;
+}
+
+static gboolean
+etable_has_sort_group(ETableModel *etm)
+{
+ /* could optimise for the flat &/or unexpanded tree case */
+ return TRUE;
+}
+
static void
e_tree_model_class_init (GtkObjectClass *klass)
@@ -414,6 +447,9 @@ e_tree_model_class_init (GtkObjectClass *klass)
table_class->thaw = etable_thaw;
#endif
+ table_class->row_sort_group = etable_row_sort_group;
+ table_class->has_sort_group = etable_has_sort_group;
+
tree_class->get_root = etree_get_root;
tree_class->get_prev = etree_get_prev;
tree_class->get_next = etree_get_next;
@@ -432,7 +468,15 @@ e_tree_model_class_init (GtkObjectClass *klass)
tree_class->node_at_row = etree_node_at_row;
}
-E_MAKE_TYPE(e_tree_model, "ETreeModel", ETreeModel, e_tree_model_class_init, NULL, PARENT_TYPE)
+static void
+e_tree_init (GtkObject *object)
+{
+ ETreeModel *etree = (ETreeModel *)object;
+
+ etree->sort_group = g_string_new("");
+}
+
+E_MAKE_TYPE(e_tree_model, "ETreeModel", ETreeModel, e_tree_model_class_init, e_tree_init, PARENT_TYPE)
/* signals */