aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-sorted-variable.h
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/table/e-table-sorted-variable.h')
-rw-r--r--widgets/table/e-table-sorted-variable.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/widgets/table/e-table-sorted-variable.h b/widgets/table/e-table-sorted-variable.h
new file mode 100644
index 0000000000..cf188acd4a
--- /dev/null
+++ b/widgets/table/e-table-sorted-variable.h
@@ -0,0 +1,34 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+#ifndef _E_TABLE_SORTED_VARIABLE_H_
+#define _E_TABLE_SORTED_VARIABLE_H_
+
+#include <gtk/gtkobject.h>
+#include "e-table-model.h"
+#include "e-table-subset-variable.h"
+
+#define E_TABLE_SORTED_VARIABLE_TYPE (e_table_sorted_variable_get_type ())
+#define E_TABLE_SORTED_VARIABLE(o) (GTK_CHECK_CAST ((o), E_TABLE_SORTED_VARIABLE_TYPE, ETableSortedVariable))
+#define E_TABLE_SORTED_VARIABLE_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TABLE_SORTED_VARIABLE_TYPE, ETableSortedVariableClass))
+#define E_IS_TABLE_SORTED_VARIABLE(o) (GTK_CHECK_TYPE ((o), E_TABLE_SORTED_VARIABLE_TYPE))
+#define E_IS_TABLE_SORTED_VARIABLE_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_SORTED_VARIABLE_TYPE))
+
+typedef struct {
+ ETableSubsetVariable base;
+
+ short sort_col;
+ int ascending;
+ GCompareFunc compare;
+
+ int table_model_changed_id;
+ int table_model_row_changed_id;
+ int table_model_cell_changed_id;
+} ETableSortedVariable;
+
+typedef struct {
+ ETableSubsetVariableClass parent_class;
+} ETableSortedVariableClass;
+
+GtkType e_table_sorted_variable_get_type (void);
+ETableModel *e_table_sorted_variable_new (ETableModel *etm, int col, int ascending, GCompareFunc compare);
+
+#endif /* _E_TABLE_SORTED_VARIABLE_H_ */