/usr/include/libspreadsheet-1.12/spreadsheet/complete-sheet.h is in gnumeric 1.12.18-2.
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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_COMPLETE_SHEET_H_
# define _GNM_COMPLETE_SHEET_H_
#include "gnumeric.h"
#include "complete.h"
G_BEGIN_DECLS
#define COMPLETE_SHEET_TYPE (complete_sheet_get_type ())
#define COMPLETE_SHEET(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), COMPLETE_SHEET_TYPE, CompleteSheet))
#define COMPLETE_SHEET_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), COMPLETE_SHEET_TYPE, CompleteSheetClass))
#define IS_COMPLETE_SHEET(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), COMPLETE_SHEET_TYPE))
#define IS_COMPLETE_SHEET_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), COMPLETE_SHEET_TYPE))
typedef struct {
Complete parent;
/* Cell being entered into. */
Sheet *sheet;
GnmCellPos entry;
/* Where we are searching. */
GnmCellPos current;
GnmCell *cell;
char *current_text;
} CompleteSheet;
typedef struct {
CompleteClass parent_class;
} CompleteSheetClass;
GType complete_sheet_get_type (void);
Complete *complete_sheet_new (Sheet *sheet, int col, int row,
CompleteMatchNotifyFn notify,
void *notify_closure);
G_END_DECLS
#endif /* _GNM_COMPLETE_SHEET_H_ */
|