aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-subset-variable.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-02-08 06:53:06 +0800
committernobody <nobody@localhost>2001-02-08 06:53:06 +0800
commita129d912fd0dff4829c8e877fe771be6705c15a9 (patch)
tree67c941166f37e99129f73ab28bd0d83bf566f06c /widgets/table/e-table-subset-variable.h
parent2132c038545393a9d81ddc87cb8e1bde13445b80 (diff)
downloadgsoc2013-evolution-GNOME_CORE_1_2_99_2.tar
gsoc2013-evolution-GNOME_CORE_1_2_99_2.tar.gz
gsoc2013-evolution-GNOME_CORE_1_2_99_2.tar.bz2
gsoc2013-evolution-GNOME_CORE_1_2_99_2.tar.lz
gsoc2013-evolution-GNOME_CORE_1_2_99_2.tar.xz
gsoc2013-evolution-GNOME_CORE_1_2_99_2.tar.zst
gsoc2013-evolution-GNOME_CORE_1_2_99_2.zip
This commit was manufactured by cvs2svn to create tagGNOME_CORE_1_2_99_2
'GNOME_CORE_1_2_99_2'. svn path=/tags/GNOME_CORE_1_2_99_2/; revision=8074
Diffstat (limited to 'widgets/table/e-table-subset-variable.h')
-rw-r--r--widgets/table/e-table-subset-variable.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/widgets/table/e-table-subset-variable.h b/widgets/table/e-table-subset-variable.h
deleted file mode 100644
index 73387d859c..0000000000
--- a/widgets/table/e-table-subset-variable.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-#ifndef _E_TABLE_SUBSET_VARIABLE_H_
-#define _E_TABLE_SUBSET_VARIABLE_H_
-
-#include <gtk/gtkobject.h>
-#include <gal/e-table/e-table-subset.h>
-
-#define E_TABLE_SUBSET_VARIABLE_TYPE (e_table_subset_variable_get_type ())
-#define E_TABLE_SUBSET_VARIABLE(o) (GTK_CHECK_CAST ((o), E_TABLE_SUBSET_VARIABLE_TYPE, ETableSubsetVariable))
-#define E_TABLE_SUBSET_VARIABLE_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TABLE_SUBSET_VARIABLE_TYPE, ETableSubsetVariableClass))
-#define E_IS_TABLE_SUBSET_VARIABLE(o) (GTK_CHECK_TYPE ((o), E_TABLE_SUBSET_VARIABLE_TYPE))
-#define E_IS_TABLE_SUBSET_VARIABLE_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_SUBSET_VARIABLE_TYPE))
-
-typedef struct {
- ETableSubset base;
-
- int n_vals_allocated;
-} ETableSubsetVariable;
-
-typedef struct {
- ETableSubsetClass parent_class;
-
- void (*add) (ETableSubsetVariable *ets,
- gint row);
- void (*add_all) (ETableSubsetVariable *ets);
- gboolean (*remove) (ETableSubsetVariable *ets,
- gint row);
-} ETableSubsetVariableClass;
-
-GtkType e_table_subset_variable_get_type (void);
-ETableModel *e_table_subset_variable_new (ETableModel *etm);
-ETableModel *e_table_subset_variable_construct (ETableSubsetVariable *etssv,
- ETableModel *source);
-void e_table_subset_variable_add (ETableSubsetVariable *ets,
- gint row);
-void e_table_subset_variable_add_all (ETableSubsetVariable *ets);
-gboolean e_table_subset_variable_remove (ETableSubsetVariable *ets,
- gint row);
-void e_table_subset_variable_increment (ETableSubsetVariable *ets,
- gint position,
- gint amount);
-void e_table_subset_variable_decrement (ETableSubsetVariable *ets,
- gint position,
- gint amount);
-void e_table_subset_variable_set_allocation (ETableSubsetVariable *ets,
- gint total);
-#endif /* _E_TABLE_SUBSET_VARIABLE_H_ */
-