/usr/include/libspreadsheet-1.12/spreadsheet/sheet-control-gui-priv.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 80 81 82 83 84 85 86 87 88 89 90 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
#ifndef _GNM_SHEET_CONTROL_GUI_PRIV_H_
# define _GNM_SHEET_CONTROL_GUI_PRIV_H_
#include "sheet-control-gui.h"
#include "sheet-control-priv.h"
#include "sheet-object.h"
#include <gtk/gtk.h>
G_BEGIN_DECLS
#define SCG_NUM_PANES 4
struct _SheetControlGUI {
SheetControl sheet_control;
/* Cached SheetControl attribute to reduce casting. */
WBCGtk *wbcg;
GtkGrid *grid;
GtkWidget *select_all_btn;
GtkWidget *label;
struct {
GPtrArray *buttons;
GtkWidget *button_box;
} col_group, row_group;
GnmPane *pane [SCG_NUM_PANES];
int active_panes;
int grab_stack; /* utility to keep track of grabs in the various canvases */
/* Scrolling information */
GtkPaned *vpane, *hpane; /* drag panes for freezing */
GtkWidget *vs, *hs; /* Scrollbars */
GtkAdjustment *va, *ha; /* Adjustments */
int vpos, hpos; /* Handle positions */
guint pane_drag_handler;
int screen_width, screen_height;
/* SheetObject support */
GHashTable *selected_objects;
/* Keep track of a rangeselector state */
struct {
gboolean active;
GnmCellPos base_corner; /* Corner remains static when rubber banding */
GnmCellPos move_corner; /* Corner to move when extending */
GnmRange displayed; /* The range to display */
} rangesel;
/* Comments */
struct {
GnmComment *selected;
GtkWidget *item; /* TODO : make this a canvas item with an arrow */
int timer;
int x, y;
} comment;
/* im */
struct {
GtkWidget *item;
int timer;
} im;
struct {
int timer, counter, n;
gboolean jump, horiz;
SCGUIMoveFunc handler;
} delayedMovement;
};
typedef SheetControlClass SheetControlGUIClass;
/* SCG virtual methods called directly from the GUI layer*/
void scg_adjust_preferences (SheetControlGUI *scg);
void scg_mode_edit (SheetControlGUI *scg);
#define SCG_FOREACH_PANE(scg, pane, code) \
do { \
int i; \
for (i = scg->active_panes; i-- > 0 ; ) { \
GnmPane *pane = scg->pane[i]; \
if (pane) { \
code \
} \
} \
} while (0)
G_END_DECLS
#endif /* _GNM_SHEET_CONTROL_GUI_PRIV_H_ */
|