aboutsummaryrefslogtreecommitdiff
path: root/GraphP.h
blob: b4f5be6b47a9a8dfe6b6dd29bd6a0b76fbd921b8 (plain)
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
/* $Id$ */

#ifndef _GraphP_h
#define _GraphP_h

#include "Graph.h"

typedef struct {
	int num_entries;
	String *labels;
	int *values;
	int max_value;
	int scale;
} GraphPart;

typedef struct _GraphRec {
	CorePart core;
	CompositePart composite;
	GraphPart graph;
} GraphRec;

typedef struct {
	XtPointer extension;
} GraphClassPart;

typedef struct _GraphClassRec {
	CoreClassPart core_class;
	CompositeClassPart composite_class;
	GraphClassPart graph_class;
} GraphClassRec;

extern GraphClassRec graphClassRec;

#endif