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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
/*
* bltGrElem.h --
*
* Copyright 1991-1998 Lucent Technologies, Inc.
*
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby
* granted, provided that the above copyright notice appear in all
* copies and that both that the copyright notice and warranty
* disclaimer appear in supporting documentation, and that the names
* of Lucent Technologies any of their entities not be used in
* advertising or publicity pertaining to distribution of the software
* without specific, written prior permission.
*
* Lucent Technologies disclaims all warranties with regard to this
* software, including all implied warranties of merchantability and
* fitness. In no event shall Lucent Technologies be liable for any
* special, indirect or consequential damages or any damages
* whatsoever resulting from loss of use, data or profits, whether in
* an action of contract, negligence or other tortuous action, arising
* out of or in connection with the use or performance of this
* software.
*/
#ifndef _BLT_GR_ELEM_H
#define _BLT_GR_ELEM_H
#define SEARCH_X 0
#define SEARCH_Y 1
#define SEARCH_BOTH 2
#define SHOW_NONE 0
#define SHOW_X 1
#define SHOW_Y 2
#define SHOW_BOTH 3
#define SEARCH_POINTS 0 /* Search for closest data point. */
#define SEARCH_TRACES 1 /* Search for closest point on trace.
* Interpolate the connecting line segments
* if necessary. */
#define SEARCH_AUTO 2 /* Automatically determine whether to search
* for data points or traces. Look for
* traces if the linewidth is > 0 and if
* there is more than one data point. */
#define ELEM_ACTIVE (1<<8) /* Non-zero indicates that the element
* should be drawn in its active
* foreground and background
* colors. */
#define ACTIVE_PENDING (1<<7)
#define LABEL_ACTIVE (1<<9) /* Non-zero indicates that the
* element's entry in the legend
* should be drawn in its active
* foreground and background
* colors. */
#define SCALE_SYMBOL (1<<10)
#define NumberOfPoints(e) MIN((e)->x.nValues, (e)->y.nValues)
/*
* -------------------------------------------------------------------
*
* Weight --
*
* Designates a range of values by a minimum and maximum limit.
*
* -------------------------------------------------------------------
*/
typedef struct {
double min, max, range;
} Weight;
#define SetRange(l) \
((l).range = ((l).max > (l).min) ? ((l).max - (l).min) : DBL_EPSILON)
#define SetScale(l) \
((l).scale = 1.0 / (l).range)
#define SetWeight(l, lo, hi) \
((l).min = (lo), (l).max = (hi), SetRange(l))
/*
* An element has one or more vectors plus several attributes, such as
* line style, thickness, color, and symbol type. It has an
* identifier which distinguishes it among the list of all elements.
*/
typedef struct {
Weight weight; /* Weight range where this pen is valid. */
Pen *penPtr; /* Pen to use. */
Segment2D *xErrorBars; /* Point to start of this pen's X-error bar
* segments in the element's array. */
Segment2D *yErrorBars; /* Point to start of this pen's Y-error bar
* segments in the element's array. */
int xErrorBarCnt; /* # of error bars for this pen. */
int yErrorBarCnt; /* # of error bars for this pen. */
int errorBarCapWidth; /* Length of the cap ends on each
* error bar. */
int symbolSize; /* Size of the pen's symbol scaled to
* the current graph size. */
} PenStyle;
typedef struct {
XColor *color; /* Color of error bar */
int lineWidth; /* Width of the error bar segments. */
GC gc;
int show; /* Flags for errorbars: none, x, y, or both */
} ErrorBarAttributes;
typedef struct {
int halo; /* Maximal distance a candidate point
* can be from the sample window
* coordinate */
int mode; /* Indicates whether to find the closest
* data point or the closest point on the
* trace by interpolating the line segments.
* Can also be SEARCH_AUTO, indicating to
* choose how to search.*/
int x, y; /* Screen coordinates of test point */
int along; /* Indicates to let search run along a
* particular axis: x, y, or both. */
/* Output */
Element *elemPtr; /* Name of the closest element */
Point2D point; /* Graph coordinates of closest point */
int index; /* Index of closest data point */
double dist; /* Distance in screen coordinates */
} ClosestSearch;
typedef void (ElementDrawProc) _ANSI_ARGS_((Graph *graphPtr, Drawable drawable,
Element *elemPtr));
typedef void (ElementToPostScriptProc) _ANSI_ARGS_((Graph *graphPtr,
PsToken psToken, Element *elemPtr));
typedef void (ElementDestroyProc) _ANSI_ARGS_((Graph *graphPtr,
Element *elemPtr));
typedef int (ElementConfigProc) _ANSI_ARGS_((Graph *graphPtr,
Element *elemPtr));
typedef void (ElementMapProc) _ANSI_ARGS_((Graph *graphPtr,
Element *elemPtr));
typedef void (ElementExtentsProc) _ANSI_ARGS_((Element *elemPtr,
Extents2D *extsPtr));
typedef void (ElementClosestProc) _ANSI_ARGS_((Graph *graphPtr,
Element *elemPtr, ClosestSearch *searchPtr));
typedef void (ElementDrawSymbolProc) _ANSI_ARGS_((Graph *graphPtr,
Drawable drawable, Element *elemPtr, int x, int y, int symbolSize));
typedef void (ElementSymbolToPostScriptProc) _ANSI_ARGS_((Graph *graphPtr,
PsToken psToken, Element *elemPtr, double x, double y, int symSize));
typedef struct {
ElementClosestProc *closestProc;
ElementConfigProc *configProc;
ElementDestroyProc *destroyProc;
ElementDrawProc *drawActiveProc;
ElementDrawProc *drawNormalProc;
ElementDrawSymbolProc *drawSymbolProc;
ElementExtentsProc *extentsProc;
ElementToPostScriptProc *printActiveProc;
ElementToPostScriptProc *printNormalProc;
ElementSymbolToPostScriptProc *printSymbolProc;
ElementMapProc *mapProc;
} ElementProcs;
/*
* The data structure below contains information pertaining to a line
* vector. It consists of an array of floating point data values and
* for convenience, the number and minimum/maximum values.
*/
typedef struct {
Blt_Vector *vecPtr;
double *valueArr;
int nValues;
int arraySize;
double min, max;
Blt_VectorId clientId; /* If non-NULL, a client token identifying the
* external vector. */
Element *elemPtr; /* Element associated with vector. */
} ElemVector;
struct ElementStruct {
char *name; /* Identifier to refer the element.
* Used in the "insert", "delete", or
* "show", commands. */
Blt_Uid classUid; /* Type of element */
Graph *graphPtr; /* Graph widget of element*/
unsigned int flags; /* Indicates if the entire element is
* active, or if coordinates need to
* be calculated */
char **tags;
int hidden; /* If non-zero, don't display the element. */
Blt_HashEntry *hashPtr;
char *label; /* Label displayed in legend */
int labelRelief; /* Relief of label in legend. */
Axis2D axes; /* X-axis and Y-axis mapping the element */
ElemVector x, y, w; /* Contains array of floating point
* graph coordinate values. Also holds
* min/max and the number of
* coordinates */
ElemVector xError; /* Relative/symmetric X error values. */
ElemVector yError; /* Relative/symmetric Y error values. */
ElemVector xHigh, xLow; /* Absolute/asymmetric X-coordinate high/low
error values. */
ElemVector yHigh, yLow; /* Absolute/asymmetric Y-coordinate high/low
error values. */
int *activeIndices; /* Array of indices (malloc-ed) which
* indicate which data points are
* active (drawn with "active"
* colors). */
int nActiveIndices; /* Number of active data points.
* Special case: if nActiveIndices < 0
* and the active bit is set in
* "flags", then all data points are
* drawn active. */
ElementProcs *procsPtr;
Tk_ConfigSpec *specsPtr; /* Configuration specifications. */
Segment2D *xErrorBars; /* Point to start of this pen's X-error bar
* segments in the element's array. */
Segment2D *yErrorBars; /* Point to start of this pen's Y-error bar
* segments in the element's array. */
int xErrorBarCnt; /* # of error bars for this pen. */
int yErrorBarCnt; /* # of error bars for this pen. */
int *xErrorToData; /* Maps error bar segments back to the data
* point. */
int *yErrorToData; /* Maps error bar segments back to the data
* point. */
int errorBarCapWidth; /* Length of cap on error bars */
Pen *activePenPtr; /* Standard Pens */
Pen *normalPenPtr;
Blt_Chain *palette; /* Palette of pens. */
/* Symbol scaling */
int scaleSymbols; /* If non-zero, the symbols will scale
* in size as the graph is zoomed
* in/out. */
double xRange, yRange; /* Initial X-axis and Y-axis ranges:
* used to scale the size of element's
* symbol. */
int state;
};
extern double Blt_FindElemVectorMinimum _ANSI_ARGS_((ElemVector *vecPtr,
double minLimit));
extern void Blt_ResizeStatusArray _ANSI_ARGS_((Element *elemPtr, int nPoints));
extern int Blt_GetPenStyle _ANSI_ARGS_((Graph *graphPtr, char *name,
Blt_Uid classUid, PenStyle *stylePtr));
extern void Blt_FreePalette _ANSI_ARGS_((Graph *graphPtr, Blt_Chain *palette));
extern PenStyle **Blt_StyleMap _ANSI_ARGS_((Element *elemPtr));
extern void Blt_MapErrorBars _ANSI_ARGS_((Graph *graphPtr, Element *elemPtr,
PenStyle **dataToStyle));
#endif /* _BLT_GR_ELEM_H */
|