/usr/include/libspreadsheet-1.12/spreadsheet/item-cursor.h is in gnumeric 1.12.28-1.
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 | #ifndef _GNM_ITEM_CURSOR_H_
#define _GNM_ITEM_CURSOR_H_
#include "gnumeric-fwd.h"
#include <glib-object.h>
G_BEGIN_DECLS
#define GNM_ITEM_CURSOR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), gnm_item_cursor_get_type (), GnmItemCursor))
#define GNM_IS_ITEM_CURSOR(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), gnm_item_cursor_get_type ()))
typedef enum {
GNM_ITEM_CURSOR_SELECTION,
GNM_ITEM_CURSOR_ANTED,
GNM_ITEM_CURSOR_AUTOFILL,
GNM_ITEM_CURSOR_DRAG,
GNM_ITEM_CURSOR_EXPR_RANGE
} GnmItemCursorStyle;
GType gnm_item_cursor_get_type (void);
gboolean gnm_item_cursor_bound_set (GnmItemCursor *ic, GnmRange const *bound);
void gnm_item_cursor_set_visibility (GnmItemCursor *ic, gboolean visible);
void gnm_item_cursor_reposition (GnmItemCursor *ic);
G_END_DECLS
#endif /* _GNM_ITEM_CURSOR_H_ */
|