blob: 2676860b21ecdbc1aa0c9fbbe473e062c6f03c56 (
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
36
37
38
|
#include <X11/copyright.h>
/* $XConsortium: SimpleP.h,v 1.7 88/09/06 16:42:24 jim Exp $ */
/* Copyright Massachusetts Institute of Technology 1987 */
#ifndef _SimpleP_h
#define _SimpleP_h
#include <X11/Simple.h>
#include <X11/CoreP.h>
typedef struct {
Boolean (*change_sensitive)(/* widget */);
} SimpleClassPart;
#define XtInheritChangeSensitive ((Boolean (*)())_XtInherit)
typedef struct _SimpleClassRec {
CoreClassPart core_class;
SimpleClassPart simple_class;
} SimpleClassRec;
extern SimpleClassRec simpleClassRec;
typedef struct {
/* resources */
Cursor cursor;
Pixmap insensitive_border;
/* private state */
} SimplePart;
typedef struct _SimpleRec {
CorePart core;
SimplePart simple;
} SimpleRec;
#endif /* _SimpleP_h */
|