/usr/include/libspreadsheet-1.12/spreadsheet/selection.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 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_SELECTION_H_
# define _GNM_SELECTION_H_
#include "gnumeric.h"
#include <goffice/goffice.h>
G_BEGIN_DECLS
typedef enum {
COL_ROW_NO_SELECTION,
COL_ROW_PARTIAL_SELECTION,
COL_ROW_FULL_SELECTION
} ColRowSelectionType;
typedef enum {
GNM_SELECTION_MODE_ADD = 0,
GNM_SELECTION_MODE_REMOVE,
GNM_SELECTION_MODE_TOGGLE
} GnmSelectionMode;
/* Selection information */
GnmCellPos const *sv_is_singleton_selected (SheetView const *sv);
gboolean sv_is_pos_selected (SheetView const *sv, int col, int row);
gboolean sv_is_range_selected (SheetView const *sv, GnmRange const *r);
gboolean sv_is_full_range_selected (SheetView const *sv, GnmRange const *r);
gboolean sv_is_colrow_selected (SheetView const *sv,
int colrow, gboolean is_col);
gboolean sv_is_full_colrow_selected (SheetView const *sv,
gboolean is_cols, int index);
ColRowSelectionType sv_selection_col_type (SheetView const *sv, int col);
ColRowSelectionType sv_selection_row_type (SheetView const *sv, int row);
char *selection_to_string (SheetView *sv,
gboolean include_sheet_name_prefix);
GnmRange const *selection_first_range (SheetView const *sv,
GOCmdContext *cc, char const *cmd_name);
GSList *selection_get_ranges (SheetView const *sv,
gboolean allow_intersection);
void sv_selection_to_plot (SheetView *sv, GogPlot *plot);
/* Selection management */
void sv_selection_reset (SheetView *sv);
void sv_selection_add_pos (SheetView *sv, int col, int row, GnmSelectionMode mode);
void sv_selection_add_range (SheetView *sv, GnmRange const *range);
void sv_selection_add_full (SheetView *sv,
int edit_col, int edit_row,
int base_col, int base_row,
int move_col, int move_row,
GnmSelectionMode mode);
void sv_selection_set (SheetView *sv, GnmCellPos const *edit,
int base_col, int base_row,
int move_col, int move_row);
void sv_selection_extend_to (SheetView *sv, int col, int row);
void sv_selection_free (SheetView *sv);
void sv_selection_simplified_free (SheetView *sv);
void sv_selection_simplify (SheetView *sv);
void sv_selection_walk_step (SheetView *sv,
gboolean forward,
gboolean horizontal);
/* Utilities for operating on a selection */
typedef void (*SelectionApplyFunc) (SheetView *sv, GnmRange const *r,
gpointer user_data);
typedef gboolean (*GnmSelectionFunc) (SheetView *sv, GnmRange const *r,
gpointer user_data);
void sv_selection_apply (SheetView *sv, SelectionApplyFunc const func,
gboolean allow_intersection,
gpointer user_data);
gboolean sv_selection_foreach (SheetView *sv,
GnmSelectionFunc handler,
gpointer user_data);
G_END_DECLS
#endif /* _GNM_SELECTION_H_ */
|