aboutsummaryrefslogtreecommitdiff
path: root/GraphP.h
blob: 56fc316e982099367887a0889a40456a6959abad (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
#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