Introspection fixes.
[gnumeric.git] / src / sheet-private.h
blobc5461bc2494fbadbe8b9db73266dc60338e60640
1 /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 #ifndef _GNM_SHEET_PRIVATE_H_
3 # define _GNM_SHEET_PRIVATE_H_
5 G_BEGIN_DECLS
7 struct _SheetPrivate {
8 GnmRange unhidden_region;
10 /* State of menu items */
11 unsigned char enable_showhide_detail;
13 unsigned char recompute_visibility;
14 unsigned char recompute_spans;
15 unsigned char recompute_max_col_group;
16 unsigned char recompute_max_row_group;
17 unsigned char resize_scrollbar;
18 unsigned char resize;
19 GnmCellPos reposition_objects;
20 unsigned char filters_changed;
23 /* for internal use only */
24 void gnm_sheet_cell_init (void);
25 void gnm_sheet_cell_shutdown (void);
27 G_END_DECLS
29 #endif /* _GNM_SHEET_PRIVATE_H_ */