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
|
/*
* This file is Copyright (c) 2010 by the GPSD project
* BSD terms apply: see the file COPYING in the distribution root for details.
*/
#ifndef _GPSD_TACHOMETERP_H_
#define _GPSD_TACHOMETERP_H_
/* TachometerP.h -- Tachometer widget private data */
#include <Tachometer.h>
#include <X11/Xaw/SimpleP.h>
/* New fields for the Tachometer widget class record */
typedef struct {int foo;} TachometerClassPart;
/* Full class record declaration */
typedef struct _TachometerClassRec {
CoreClassPart core_class;
SimpleClassPart simple_class;
TachometerClassPart label_class;
} TachometerClassRec;
extern TachometerClassRec tachometerClassRec;
/* New fields for the Tachometer widget record */
typedef struct {
/* resources */
Pixel needle, scale, circle;
int value, speed;
/* private state */
GC needle_GC, scale_GC, circle_GC, background_GC;
/* We need to store the width and height separately, because when */
/* we get a resize request, we need to know if the window has */
/* gotten bigger. */
Dimension width, height, internal_border;
} TachometerPart;
/* Full instance record declaration */
typedef struct _TachometerRec {
CorePart core;
SimplePart simple;
TachometerPart tachometer;
} TachometerRec;
#endif /* _GPSD_TACHOMETERP_H_ */
|