aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table.h
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-05-27 04:38:49 +0800
committerChris Lahey <clahey@src.gnome.org>2000-05-27 04:38:49 +0800
commit628ca43584542f85ffc3b6a1617af489607a8dea (patch)
tree71039a6aca0bd45f0650b29120f55cc8eb522a8e /widgets/table/e-table.h
parent7434b2831bd5604c6ee939c604cec5a91205b4d2 (diff)
downloadgsoc2013-evolution-628ca43584542f85ffc3b6a1617af489607a8dea.tar
gsoc2013-evolution-628ca43584542f85ffc3b6a1617af489607a8dea.tar.gz
gsoc2013-evolution-628ca43584542f85ffc3b6a1617af489607a8dea.tar.bz2
gsoc2013-evolution-628ca43584542f85ffc3b6a1617af489607a8dea.tar.lz
gsoc2013-evolution-628ca43584542f85ffc3b6a1617af489607a8dea.tar.xz
gsoc2013-evolution-628ca43584542f85ffc3b6a1617af489607a8dea.tar.zst
gsoc2013-evolution-628ca43584542f85ffc3b6a1617af489607a8dea.zip
Made "drawgrid", "drawfocus", "spreadsheet", and "length_threshold"
2000-05-26 Christopher James Lahey <clahey@helixcode.com> * e-table-group-container.c, e-table-group-container.h, e-table-group-leaf.c, e-table-group-leaf.h, e-table.c, e-table.h: Made "drawgrid", "drawfocus", "spreadsheet", and "length_threshold" arguments set from the ETable effect all the end ETableItems. * e-table-header.c: Made column resize a bit less bumpy. svn path=/trunk/; revision=3223
Diffstat (limited to 'widgets/table/e-table.h')
-rw-r--r--widgets/table/e-table.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/widgets/table/e-table.h b/widgets/table/e-table.h
index ff03caf00d..053de782e5 100644
--- a/widgets/table/e-table.h
+++ b/widgets/table/e-table.h
@@ -41,15 +41,17 @@ typedef struct {
GnomeCanvasItem *header_item, *root;
- guint need_rebuild:1;
+ gint length_threshold;
+
gint rebuild_idle_id;
+ guint need_rebuild:1;
/*
* Configuration settings
*/
- guint draw_grid:1;
- guint draw_focus:1;
- guint spreadsheet:1;
+ guint draw_grid : 1;
+ guint draw_focus : 1;
+ guint spreadsheet : 1;
} ETable;
typedef struct {