/usr/include/SciPlotP.h is in sciplot-dev 1.36-16.
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 262 263 264 265 266 267 268 269 270 271 272 | /*----------------------------------------------------------------------------
* SciPlot A generalized plotting widget
*
* Copyright (c) 1996 Robert W. McMullen
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*
* Author: Rob McMullen <rwmcm@mail.ae.utexas.edu>
* http://www.ae.utexas.edu/~rwmcm
*/
#ifndef _SCIPLOTP_H
#define _SCIPLOTP_H
#ifdef __cplusplus
extern "C" {
#endif
#include <X11/CoreP.h>
#ifdef MOTIF
#if XmVersion == 1001
#include <Xm/XmP.h>
#else
#include <Xm/PrimitiveP.h>
#endif
#endif
#ifdef __sgi
#include <sys/types.h>
#include <malloc.h>
#endif /* __sgi */
#include "SciPlot.h"
#include <X11/Xcms.h>
#define powi(a,i) (real)pow(a,(double)((int)i))
#define NUMPLOTLINEALLOC 5
#define NUMPLOTDATAEXTRA 25
#define NUMPLOTITEMALLOC 256
#define NUMPLOTITEMEXTRA 64
#define DEG2RAD (3.1415926535897931160E0/180.0)
typedef struct {
int dummy; /* keep compiler happy with dummy field */
} SciPlotClassPart;
typedef struct _SciPlotClassRec {
CoreClassPart core_class;
#ifdef MOTIF
XmPrimitiveClassPart primitive_class;
#endif
SciPlotClassPart plot_class;
} SciPlotClassRec;
extern SciPlotClassRec sciplotClassRec;
typedef enum {
SciPlotFALSE,
SciPlotPoint,
SciPlotLine,
SciPlotRect,
SciPlotFRect,
SciPlotCircle,
SciPlotFCircle,
SciPlotStartTextTypes,
SciPlotText,
SciPlotVText,
SciPlotEndTextTypes,
SciPlotPoly,
SciPlotFPoly,
SciPlotClipRegion,
SciPlotClipClear,
SciPlotENDOFLIST
} SciPlotTypeEnum;
typedef enum {
SciPlotDrawingAny,
SciPlotDrawingAxis,
SciPlotDrawingLegend,
SciPlotDrawingLine
} SciPlotDrawingEnum;
typedef struct _SciPlotItem {
SciPlotTypeEnum type;
SciPlotDrawingEnum drawing_class;
union {
struct {
short color;
short style;
real x, y;
} pt;
struct {
short color;
short style;
real x1, y1, x2, y2;
} line;
struct {
short color;
short style;
real x, y, w, h;
} rect;
struct {
short color;
short style;
real x, y, r;
} circ;
struct {
short color;
short style;
short count;
real x[4], y[4];
} poly;
struct {
short color;
short style;
short font;
short length;
real x, y;
char *text;
} text;
struct {
short color;
short style;
} any;
} kind;
short individually_allocated;
struct _SciPlotItem *next;
} SciPlotItem;
typedef struct {
int LineStyle;
int LineColor;
int PointStyle;
int PointColor;
int number;
int allocated;
realpair *data;
char *legend;
real markersize;
realpair min, max;
Boolean draw, used;
} SciPlotList;
typedef struct {
real Origin;
real Size;
real Center;
real TitlePos;
real AxisPos;
real LabelPos;
real LegendPos;
real LegendSize;
real DrawOrigin;
real DrawSize;
real DrawMax;
real MajorInc;
int MajorNum;
int MinorNum;
int Precision;
} SciPlotAxis;
typedef struct {
int id;
XFontStruct *font;
} SciPlotFont;
typedef struct {
int flag;
char *PostScript;
char *X11;
Boolean PSUsesOblique;
Boolean PSUsesRoman;
} SciPlotFontDesc;
typedef struct {
/* Public stuff ... */
char *TransientPlotTitle;
char *TransientXLabel;
char *TransientYLabel;
int Margin;
int TitleMargin;
int LegendMargin;
int LegendLineSize;
int MajorTicSize;
int DefaultMarkerSize;
int ChartType;
Boolean ScaleToFit;
Boolean Degrees;
Boolean XLog;
Boolean YLog;
Boolean XAutoScale;
Boolean YAutoScale;
Boolean XAxisNumbers;
Boolean YAxisNumbers;
Boolean XOrigin;
Boolean YOrigin;
Boolean DrawMajor;
Boolean DrawMinor;
Boolean DrawMajorTics;
Boolean DrawMinorTics;
Boolean ShowLegend;
Boolean ShowTitle;
Boolean ShowXLabel;
Boolean ShowYLabel;
Boolean YNumHorz;
Boolean LegendThroughPlot;
Boolean Monochrome;
Font TitleFID;
int TitleFont;
int LabelFont;
int AxisFont;
int BackgroundColor;
int ForegroundColor;
/* Private stuff ... */
char *plotTitle;
char *xlabel;
char *ylabel;
realpair Min, Max;
realpair UserMin, UserMax;
real PolarScale;
SciPlotAxis x, y;
int titleFont;
int labelFont;
int axisFont;
GC defaultGC;
GC dashGC;
Colormap cmap;
Pixel *colors;
int num_colors;
SciPlotFont *fonts;
int num_fonts;
int alloc_plotlist;
int num_plotlist;
SciPlotList *plotlist;
int alloc_drawlist;
int num_drawlist;
SciPlotItem *drawlist;
SciPlotDrawingEnum current_id; /* id of current item. Used for erasing */
Boolean update;
} SciPlotPart;
typedef struct _SciPlotRec {
CorePart core;
#ifdef MOTIF
XmPrimitivePart primitive;
#endif
SciPlotPart plot;
} SciPlotRec;
#ifdef __cplusplus
};
#endif
#endif /* _SCIPLOTP_H */
|