/usr/include/libgoffice-0.8/goffice/graph/goffice-graph.h is in libgoffice-0.8-dev 0.8.17-3.
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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* goffice-graph.h:
*
* Copyright (C) 2003-2004 Jody Goldberg (jody@gnome.org)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#ifndef GOFFICE_GRAPH_H
#define GOFFICE_GRAPH_H
#include <glib.h>
G_BEGIN_DECLS
typedef struct _GogObject GogObject;
typedef struct _GogObjectRole GogObjectRole;
typedef struct _GogView GogView; /* view of an Object */
typedef struct _GogGraphView GogGraphView; /* view of chart */
typedef struct _GogGraph GogGraph; /* collection of charts */
typedef struct _GogChart GogChart; /* collection of plots */
typedef struct _GogPlot GogPlot; /* abstract base for plots */
typedef struct _GogPlotType GogPlotType; /* visible characterization */
typedef struct _GogPlotFamily GogPlotFamily; /* a group of plot types */
typedef struct _GogPlotDesc GogPlotDesc; /* data/axis requirements */
typedef struct _GogPlotView GogPlotView;
typedef struct _GogSeries GogSeries; /* single plotable entity */
typedef struct _GogSeriesDesc GogSeriesDesc; /* data requirements */
typedef struct _GogSeriesDimDesc GogSeriesDimDesc; /* dimension of a series */
/* Useful objects */
typedef struct _GogLegend GogLegend;
typedef struct _GogLabel GogLabel;
typedef struct _GogStyledObject GogStyledObject;
typedef struct _GogAxisBase GogAxisBase;
typedef struct _GogAxis GogAxis;
typedef struct _GogAxisLine GogAxisLine;
typedef struct _GogGrid GogGrid;
typedef struct _GogGridLine GogGridLine;
typedef struct _GogErrorBar GogErrorBar;
typedef struct _GogEquation GogEquation;
typedef struct _GogRegCurve GogRegCurve;
typedef struct _GogRegEqn GogRegEqn;
typedef struct _GogTrendLineType GogTrendLineType;
typedef struct _GogSeriesLines GogSeriesLines;
typedef struct _GogSmoothedCurve GogSmoothedCurve;
typedef struct _Gog3DBox Gog3DBox;
/* formating */
typedef struct _GogTheme GogTheme;
typedef GSList GogSeriesElementStyleList;
/* Data */
typedef struct _GogDataEditor GogDataEditor;
typedef struct _GogDataAllocator GogDataAllocator;
typedef struct _GogDataset GogDataset;
/* Rendering */
typedef struct _GogRenderer GogRenderer;
typedef struct {
double w, h;
} GogViewRequisition;
typedef struct _GogViewAllocation {
double w, h;
double x, y;
} GogViewAllocation;
typedef struct {
double wr, hb;
double wl, ht;
} GogViewPadding;
typedef void (*GogEnumFunc) (unsigned i, gpointer style,
char const *name, gpointer data);
typedef enum {
GOG_AXIS_UNKNOWN = -1,
GOG_AXIS_X = 0,
GOG_AXIS_Y,
GOG_AXIS_Z,
GOG_AXIS_CIRCULAR,
GOG_AXIS_RADIAL,
GOG_AXIS_VIRTUAL,
GOG_AXIS_PSEUDO_3D = GOG_AXIS_VIRTUAL,
GOG_AXIS_COLOR,
GOG_AXIS_BUBBLE,
GOG_AXIS_TYPES
} GogAxisType;
typedef enum {
GOG_AXIS_SET_UNKNOWN = -1,
GOG_AXIS_SET_NONE = 0,
GOG_AXIS_SET_X = (1 << GOG_AXIS_X),
GOG_AXIS_SET_XY = (1 << GOG_AXIS_X) | (1 << GOG_AXIS_Y),
GOG_AXIS_SET_XY_pseudo_3d = (1 << GOG_AXIS_X) | (1 << GOG_AXIS_Y) | (1 << GOG_AXIS_PSEUDO_3D),
GOG_AXIS_SET_XY_COLOR = (1 << GOG_AXIS_X) | (1 << GOG_AXIS_Y) | (1 << GOG_AXIS_COLOR),
GOG_AXIS_SET_XY_BUBBLE = (1 << GOG_AXIS_X) | (1 << GOG_AXIS_Y) | (1 << GOG_AXIS_BUBBLE),
GOG_AXIS_SET_XYZ = (1 << GOG_AXIS_X) | (1 << GOG_AXIS_Y) | (1 << GOG_AXIS_Z),
GOG_AXIS_SET_RADAR = (1 << GOG_AXIS_CIRCULAR) | (1 << GOG_AXIS_RADIAL),
GOG_AXIS_SET_FUNDAMENTAL = ((1 << GOG_AXIS_VIRTUAL) - 1),
GOG_AXIS_SET_ALL = ((1 << GOG_AXIS_TYPES) -1)
} GogAxisSet;
typedef enum {
GOG_DIM_INVALID = -1,
GOG_DIM_LABEL = 0,
GOG_DIM_INDEX,
GOG_DIM_VALUE,
GOG_DIM_MATRIX,
GOG_DIM_TYPES
} GogDimType;
typedef enum {
GOG_DATA_SCALAR,
GOG_DATA_VECTOR,
GOG_DATA_MATRIX
} GogDataType;
/* A helper enum to simplify import/export from MS Excel (tm) which uses the
* same logical dim names for all plot types. Do _NOT_ reorder, or change the
* enumeration without checking the xls code */
typedef enum {
GOG_MS_DIM_LABELS = 0,
GOG_MS_DIM_VALUES = 1,
GOG_MS_DIM_CATEGORIES = 2,
GOG_MS_DIM_BUBBLES = 3, /* undocumented */
GOG_MS_DIM_TYPES,
GOG_MS_DIM_ERR_plus1, /* we made it up */
GOG_MS_DIM_ERR_minus1, /* we made it up */
GOG_MS_DIM_ERR_plus2, /* we made it up */
GOG_MS_DIM_ERR_minus2, /* we made it up */
GOG_MS_DIM_START, /* we made it up for dropbars*/
GOG_MS_DIM_END, /* we made it up for dropbars */
GOG_MS_DIM_LOW, /* we made it up for hi-lo*/
GOG_MS_DIM_HIGH, /* we made it up for hi-lo */
GOG_MS_DIM_EXTRA1, /* we made it up for other uses */
GOG_MS_DIM_EXTRA2 /* we made it up for other uses */
} GogMSDimType;
typedef enum {
GOG_POSITION_AUTO = 0,
GOG_POSITION_N = 1 << 0, /* can be used with E or W */
GOG_POSITION_S = 1 << 1, /* can be used with E or W */
GOG_POSITION_E = 1 << 2,
GOG_POSITION_W = 1 << 3,
GOG_POSITION_COMPASS = 0x0f,
/* modifiers for compass */
GOG_POSITION_ALIGN_FILL = 0 << 4,
GOG_POSITION_ALIGN_START = 1 << 4,
GOG_POSITION_ALIGN_END = 2 << 4,
GOG_POSITION_ALIGN_CENTER = 3 << 4,
GOG_POSITION_ALIGNMENT = 0x30,
GOG_POSITION_SPECIAL = 1 << 6,
GOG_POSITION_MANUAL = 1 << 7,
GOG_POSITION_MANUAL_X_ABS = 1 << 8, /* abs vs relative pos */
GOG_POSITION_MANUAL_Y_ABS = 1 << 9,
GOG_POSITION_MANUAL_X_END = 1 << 10, /* pos relative to start or end */
GOG_POSITION_MANUAL_Y_END = 1 << 11,
/* modifiers for manual */
GOG_POSITION_ANCHOR_NW = 0 << 12,
GOG_POSITION_ANCHOR_N = 1 << 12,
GOG_POSITION_ANCHOR_NE = 2 << 12,
GOG_POSITION_ANCHOR_E = 3 << 12,
GOG_POSITION_ANCHOR_SE = 4 << 12,
GOG_POSITION_ANCHOR_S = 5 << 12,
GOG_POSITION_ANCHOR_SW = 6 << 12,
GOG_POSITION_ANCHOR_W = 7 << 12,
GOG_POSITION_ANCHOR_CENTER = 8 << 12,
GOG_POSITION_ANCHOR = 0xf000,
GOG_POSITION_ANY_MANUAL = 0xff80,
GOG_POSITION_PADDING = 1 << 16
} GogObjectPosition;
typedef enum {
GOG_PLOT_RENDERING_LAST,
GOG_PLOT_RENDERING_BEFORE_AXIS,
GOG_PLOT_RENDERING_BEFORE_GRID
} GogPlotRenderingOrder;
#define GOG_POSITION_IS_SPECIAL(pos) (((pos) & GOG_POSITION_SPECIAL)&&(!((pos) & GOG_POSITION_MANUAL)))
#define GOG_POSITION_IS_PADDING(pos) (((pos) & GOG_POSITION_PADDING)&&(!((pos) & GOG_POSITION_MANUAL)))
/* #define NO_DEBUG_CHARTS */
#ifndef NO_DEBUG_CHARTS
#define gog_debug(level, code) do { if (goffice_graph_debug_level > level) { code } } while (0)
#else
#define gog_debug(level, code)
#endif
extern int goffice_graph_debug_level;
G_END_DECLS
#include <goffice/goffice.h>
#include <goffice/graph/gog-object.h>
#include <goffice/graph/gog-styled-object.h>
#include <goffice/graph/gog-trend-line.h>
#include <goffice/graph/gog-view.h>
#include <goffice/graph/gog-outlined-object.h>
#include <goffice/graph/gog-data-set.h>
#include <goffice/graph/gog-series.h>
#include <goffice/graph/gog-series-impl.h>
#include <goffice/graph/gog-3d-box.h>
#include <goffice/graph/gog-axis-line.h>
#include <goffice/graph/gog-axis-line-impl.h>
#include <goffice/graph/gog-axis.h>
#include <goffice/graph/gog-chart.h>
#include <goffice/graph/gog-chart-impl.h>
#include <goffice/graph/gog-chart-map.h>
#include <goffice/graph/gog-chart-map-3d.h>
#ifdef GOFFICE_WITH_GTK
#include <goffice/graph/gog-child-button.h>
#include <goffice/graph/gog-data-allocator.h>
#endif
#ifdef GOFFICE_WITH_LASEM
#include <goffice/graph/gog-equation.h>
#endif
#include <goffice/graph/gog-error-bar.h>
#include <goffice/graph/gog-graph.h>
#include <goffice/graph/gog-graph-impl.h>
#include <goffice/graph/gog-grid.h>
#include <goffice/graph/gog-grid-line.h>
#ifdef GOFFICE_WITH_GTK
#include <goffice/graph/gog-guru.h>
#endif
#include <goffice/graph/gog-label.h>
#include <goffice/graph/gog-legend.h>
#include <goffice/graph/gog-object-xml.h>
#include <goffice/graph/gog-plot-engine.h>
#include <goffice/graph/gog-plot.h>
#include <goffice/graph/gog-plot-impl.h>
#include <goffice/graph/gog-reg-curve.h>
#include <goffice/graph/gog-renderer.h>
#include <goffice/graph/gog-series-lines.h>
#include <goffice/graph/gog-smoothed-curve.h>
#include <goffice/graph/gog-theme.h>
#endif /* GOFFICE_GRAPH_H */
|