xenocara/app/xeyes/EyesP.h

56 lines
1.3 KiB
C
Raw Normal View History

2006-11-25 13:07:29 -07:00
#ifndef _EyesP_h
#define _EyesP_h
#include "Eyes.h"
#include <X11/CoreP.h>
2010-03-28 03:38:08 -06:00
#ifdef XRENDER
#include <X11/extensions/Xrender.h>
#endif
2006-11-25 13:07:29 -07:00
#include "transform.h"
#define SEG_BUFF_SIZE 128
/* New fields for the eyes widget instance record */
typedef struct {
2010-03-28 03:38:08 -06:00
Pixel pixel[PART_SHAPE];
GC gc[PART_MAX];
2006-11-25 13:07:29 -07:00
/* start of graph stuff */
int backing_store; /* backing store variety */
Boolean reverse_video; /* swap fg and bg pixels */
Boolean shape_window; /* use SetWindowShapeMask */
int update; /* current timeout index */
TPoint mouse; /* old mouse position */
TPoint pupil[2]; /* pupil position */
Transform t;
Transform maskt;
XtIntervalId interval_id;
Pixmap shape_mask; /* window shape */
2010-03-28 03:38:08 -06:00
#ifdef XRENDER
Boolean render;
Picture picture;
Picture fill[PART_SHAPE];
#endif
Boolean distance;
2006-11-25 13:07:29 -07:00
} EyesPart;
/* Full instance record declaration */
typedef struct _EyesRec {
CorePart core;
EyesPart eyes;
} EyesRec;
/* New fields for the Eyes widget class record */
typedef struct {int dummy;} EyesClassPart;
/* Full class record declaration. */
typedef struct _EyesClassRec {
CoreClassPart core_class;
EyesClassPart eyes_class;
} EyesClassRec;
/* Class pointer. */
extern EyesClassRec eyesClassRec;
#endif /* _EyesP_h */