/usr/include/ggobi/splot.h is in ggobi 2.1.11-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 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 | /*-- splot.h: the variables required for each single plot --*/
/*
* ggobi
* Copyright (C) AT&T, Duncan Temple Lang, Dianne Cook 1999-2005
*
* ggobi is free software; you may use, redistribute, and/or modify it
* under the terms of the Eclipse Public License, which is distributed
* with the source code and displayed on the ggobi web site,
* www.ggobi.org. For more information, contact the authors:
*
* Deborah F. Swayne dfs@research.att.com
* Di Cook dicook@iastate.edu
* Duncan Temple Lang duncan@wald.ucdavis.edu
* Andreas Buja andreas.buja@wharton.upenn.edu
*/
#ifndef SPLOT_H
#define SPLOT_H
#include "defines.h"
typedef struct _displayd displayd;
#define GGOBI_TYPE_SPLOT (ggobi_splot_get_type ())
#define GGOBI_SPLOT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GGOBI_TYPE_SPLOT, splotd))
#define GGOBI_SPLOT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GGOBI_TYPE_SPLOT, GGobiSPlotClass))
#define GGOBI_IS_SPLOT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GGOBI_TYPE_SPLOT))
#define GGOBI_IS_SPLOT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GGOBI_TYPE_SPLOT))
#define GGOBI_SPLOT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GGOBI_TYPE_SPLOT, GGobiSPlotClass))
GType ggobi_splot_get_type(void);
typedef struct
{
GtkDrawingAreaClass parent_class;
RedrawStyle redraw; /* used by barchart to indicate it needs to do a full redraw from set_color_id. */
} GGobiSPlotClass;
typedef struct
{
GtkDrawingArea canvas;
displayd *displayptr; /* a pointer to the enclosing display */
GtkWidget *da; /* drawing_area */
GdkPixmap *pixmap0, *pixmap1; /* 2-stage drawing */
GdkCursor *cursor;
gint jcursor;
RedrawStyle redraw_style;
/* Drawing area dimensions */
icoords max;
/*
* line segments in scatterplot and scatmat
*/
GdkSegment *arrowheads;
GdkSegment *edges;
/*
* line segments in parallel coordinates plot
*/
GdkSegment *whiskers;
gcoords *planar;
icoords *screen;
/*
* shift and scale
*/
fcoords scale, tour_scale;
gcoords iscale;
gcoords pmid; /*-- center of the screen in planar/world coords --*/
/*
* button and key event information
*/
gint motion_id, press_id, release_id, key_press_id, scroll_id;
icoords mousedownpos, mousepos, mousepos_o;
brush_coords brush_pos, brush_pos_o;
/*
* plot1d (used in parcoords as well as scatterplot)
*/
gint p1dvar;
struct _p1d {
vector_f spread_data; /* the spreading data */
lims lim; /* limits of the spreading data */
gfloat mean;
/*-- line segments in ASHes --*/
icoords ash_baseline; /*-- for drawing segments from point to baseline --*/
} p1d;
/*
* tour1d (variables used to record the state of the 1D tour for this plot)
*/
struct _tour1d {
gfloat mincnt;
gfloat maxcnt;
gfloat minscreenx;
gfloat maxscreenx;
gboolean initmax;
icoords ash_baseline; /*-- for drawing segments from point to baseline --*/
} tour1d;
/*
* tour2d: rescaling so that points don't go outside the planar space
*/
struct _tour2d {
greal maxscreen;
gboolean initmax;
} tour2d;
/*
* tour2d: rescaling so that points don't go outside the planar space
*/
struct _tourcorr {
greal maxscreen;
gboolean initmax;
} tourcorr;
/*
* xyplot
*/
icoords xyvars;
/*-- rotation implemented as a limited tour2d --*/
struct _tour2d3 {
greal maxscreen;
gboolean initmax;
} tour2d3;
#ifdef WIN32
struct _win32 {
gint npoints;
GdkPoint *points;
GdkSegment *segs;
GdkSegment *whisker_segs;
GdkSegment *ash_segs;
rectd *open_rects;
rectd *filled_rects;
arcd *open_arcs;
arcd *filled_arcs;
} win32;
#endif
} splotd;
#define GGOBI_TYPE_EXTENDED_SPLOT (ggobi_extended_splot_get_type())
#define GGOBI_EXTENDED_SPLOT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GGOBI_TYPE_EXTENDED_SPLOT, extendedSPlotd))
#define GGOBI_EXTENDED_SPLOT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GGOBI_TYPE_EXTENDED_SPLOT, GGobiExtendedSPlotClass))
#define GGOBI_IS_EXTENDED_SPLOT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GGOBI_TYPE_EXTENDED_SPLOT))
#define GGOBI_IS_EXTENDED_SPLOT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GGOBI_TYPE_EXTENDED_SPLOT))
#define GGOBI_EXTENDED_SPLOT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GGOBI_TYPE_EXTENDED_SPLOT, GGobiExtendedSPlotClass))
GType ggobi_extended_splot_get_type(void);
#include "ggobi-data.h"
typedef struct
{
GGobiSPlotClass splot;
gchar *(*tree_label)(splotd *sp, GGobiData *d, ggobid *gg);
gboolean (*identify_notify)(icoords, splotd *, GGobiData *, ggobid *);
void (*add_plot_labels)(splotd *, GdkDrawable *, ggobid *gg);
void (*add_markup_cues)(splotd *, GdkDrawable *, ggobid *);
void (*add_scaling_cues)(splotd *, GdkDrawable *, ggobid *);
void (*add_identify_cues)(gboolean, gint k, splotd *, GdkDrawable *, ggobid *);
void (*add_identify_edge_cues)(gint k, splotd *, GdkDrawable *, gboolean, ggobid *);
gboolean (*redraw)(splotd *, GGobiData *, ggobid *, gboolean binned);
void (*screen_to_tform)(cpaneld *, splotd *, icoords *, fcoords *, ggobid *);
void (*world_to_plane)(splotd *, GGobiData *, ggobid *);
/** Convenience to be called within the standard loop */
void (*sub_plane_to_screen)(splotd *sp, displayd *dpy, GGobiData *d, ggobid *gg);
/** Allows the class to take over the entire plane_to_screen.
Handling each row can be done using a method for sub_plane_to_screen. */
void (*plane_to_screen)(splotd *, GGobiData *, ggobid *);
gint (*active_paint_points)(splotd *, GGobiData *, ggobid *);
GdkSegment *(*alloc_whiskers)(GdkSegment *, splotd *sp, gint nrows, GGobiData *d);
/** called from splot_plot_edge */
gboolean (*draw_edge_p)(splotd *sp, gint m, GGobiData *d, GGobiData *e, ggobid *gg);
/** called from splot_plot_case. Should probably be the same as
draw_edge_p but doesn't take the edge argument! Could drop the
first datad in splot_plot_edge and just hand it the one dataset. */
gboolean (*draw_case_p)(splotd *sp, gint m, GGobiData *d, ggobid *gg);
void (*within_draw_to_binned)(splotd *sp, gint m, GdkDrawable *drawable, GdkGC *gc);
void (*within_draw_to_unbinned)(splotd *sp, gint m, GdkDrawable *drawable, GdkGC *gc);
void (*splot_assign_points_to_bins)(GGobiData *, splotd *, ggobid *);
gint (*plotted_vars_get)(splotd *sp, gint *vars, GGobiData *d);
splotd * (*createWithVars)(displayd *dpy, gint *vars, gint nvars, ggobid *gg);
} GGobiExtendedSPlotClass;
typedef struct
{
splotd splot;
} extendedSPlotd;
void splot_init(splotd *sp, displayd *display, struct _ggobid *gg);
/* shared by barchart and parcoords. */
gint splot1DVariablesGet(splotd *sp, gint *cols, GGobiData *d);
#endif
|