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

#ifndef _GraphP_h
#define _GraphP_h

// #include <X11/CoreP.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