GUI: Disable history item if we have none.
[gnumeric.git] / src / gnm-cell-combo.h
blob3eceee96a1c2a80784fcf542cfb8911111a9b980
1 /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 #ifndef _GNM_CELL_COMBO_H_
3 # define _GNM_CELL_COMBO_H_
5 #include "sheet-object-impl.h"
7 G_BEGIN_DECLS
9 typedef struct {
10 SheetObject parent;
12 SheetView *sv;
13 } GnmCellCombo;
14 typedef SheetObjectClass GnmCellComboClass;
16 #define GNM_CELL_COMBO_TYPE (gnm_cell_combo_get_type ())
17 #define GNM_CELL_COMBO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNM_CELL_COMBO_TYPE, GnmCellCombo))
19 GType gnm_cell_combo_get_type (void);
21 G_END_DECLS
23 #endif /* _GNM_CELL_COMBO_H_ */