Mercurial > emacs
annotate oldXMenu/X10.h @ 54736:b94de166de9d
(ethio-sera-being-called-by-w3): New
variable.
(ethio-sera-to-fidel-ethio): Check ethio-sera-being-called-by-w3
instead of sera-being-called-by-w3.
(ethio-fidel-to-sera-buffer): Likewise.
(ethio-find-file): Bind ethio-sera-being-called-by-w3 to t
instead of sera-being-called-by-w3.
(ethio-write-file): Likewise.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Mon, 05 Apr 2004 23:27:37 +0000 |
| parents | 695cf19ef79e |
| children | f0eb34e60705 e8824c4f5f7e 375f2633d815 |
| rev | line source |
|---|---|
| 52401 | 1 /* $Header: /cvsroot/emacs/emacs/oldXMenu/X10.h,v 1.2 2003/02/04 14:19:01 lektu Exp $ */ |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
2 /* |
| 25858 | 3 * Copyright 1985, 1986, 1987 by the Massachusetts Institute of Technology |
| 4 * | |
| 5 * Permission to use, copy, modify, and distribute this software and its | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
6 * documentation for any purpose and without fee is hereby granted, provided |
|
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
7 * that the above copyright notice appear in all copies and that both that |
|
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
8 * copyright notice and this permission notice appear in supporting |
| 25858 | 9 * documentation, and that the name of M.I.T. not be used in advertising |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
10 * or publicity pertaining to distribution of the software without specific, |
|
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
11 * written prior permission. M.I.T. makes no representations about the |
| 25858 | 12 * suitability of this software for any purpose. It is provided "as is" |
| 13 * without express or implied warranty. | |
| 14 * | |
| 15 * The X Window System is a Trademark of MIT. | |
| 16 * | |
| 17 */ | |
| 18 | |
| 19 | |
| 20 /* | |
| 21 * X10.h - Header definition and support file for the C subroutine | |
| 22 * interface library for V10 support routines. | |
| 23 */ | |
| 24 #ifndef _X10_H_ | |
| 25 #define _X10_H_ | |
| 26 | |
| 27 /* Used in XDraw and XDrawFilled */ | |
| 28 | |
| 29 typedef struct { | |
| 30 short x, y; | |
| 31 unsigned short flags; | |
| 32 } Vertex; | |
| 33 | |
| 34 /* The meanings of the flag bits. If the bit is 1 the predicate is true */ | |
| 35 | |
| 36 #define VertexRelative 0x0001 /* else absolute */ | |
| 37 #define VertexDontDraw 0x0002 /* else draw */ | |
| 38 #define VertexCurved 0x0004 /* else straight */ | |
| 39 #define VertexStartClosed 0x0008 /* else not */ | |
| 40 #define VertexEndClosed 0x0010 /* else not */ | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
41 /*#define VertexDrawLastPoint 0x0020 */ /* else don't */ |
| 25858 | 42 |
| 43 /* | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
44 The VertexDrawLastPoint option has not been implemented in XDraw and |
|
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
45 XDrawFilled so it shouldn't be defined. |
| 25858 | 46 */ |
| 47 | |
| 48 /* | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
49 * XAssoc - Associations used in the XAssocTable data structure. The |
| 25858 | 50 * associations are used as circular queue entries in the association table |
| 51 * which is contains an array of circular queues (buckets). | |
| 52 */ | |
| 53 typedef struct _XAssoc { | |
| 54 struct _XAssoc *next; /* Next object in this bucket. */ | |
| 55 struct _XAssoc *prev; /* Previous obejct in this bucket. */ | |
| 56 Display *display; /* Display which owns the id. */ | |
| 57 XID x_id; /* X Window System id. */ | |
| 58 char *data; /* Pointer to untyped memory. */ | |
| 59 } XAssoc; | |
| 60 | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
61 /* |
| 25858 | 62 * XAssocTable - X Window System id to data structure pointer association |
| 63 * table. An XAssocTable is a hash table whose buckets are circular | |
| 64 * queues of XAssoc's. The XAssocTable is constructed from an array of | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
25858
diff
changeset
|
65 * XAssoc's which are the circular queue headers (bucket headers). |
| 25858 | 66 * An XAssocTable consists an XAssoc pointer that points to the first |
| 67 * bucket in the bucket array and an integer that indicates the number | |
| 68 * of buckets in the array. | |
| 69 */ | |
| 70 typedef struct { | |
| 71 XAssoc *buckets; /* Pointer to first bucket in bucket array.*/ | |
| 72 int size; /* Table size (number of buckets). */ | |
| 73 } XAssocTable; | |
| 74 | |
| 75 XAssocTable *XCreateAssocTable(); | |
| 76 char *XLookUpAssoc(); | |
| 77 | |
| 78 #endif /* _X10_H_ */ | |
| 52401 | 79 |
| 80 /* arch-tag: b0b749fb-757b-470b-b405-af7d033a5aad | |
| 81 (do not change this comment) */ |
