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