/usr/include/libspreadsheet-1.12/spreadsheet/validation-combo.h is in gnumeric 1.12.32-1+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_VALIDATION_COMBO_H_
# define _GNM_VALIDATION_COMBO_H_
#include "gnm-cell-combo.h"
G_BEGIN_DECLS
typedef struct {
GnmCellCombo parent;
GnmValidation const *validation;
} GnmValidationCombo;
#define GNM_VALIDATION_COMBO_TYPE (gnm_validation_combo_get_type ())
#define GNM_IS_VALIDATION_COMBO(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNM_VALIDATION_COMBO_TYPE))
#define GNM_VALIDATION_COMBO(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GNM_VALIDATION_COMBO_TYPE, GnmValidationCombo))
GType gnm_validation_combo_get_type (void);
SheetObject *gnm_validation_combo_new (GnmValidation const *v, SheetView *sv);
G_END_DECLS
#endif /* _GNM_VALIDATION_COMBO_H_ */
|