author | yan |
Mon, 06 Oct 2008 16:45:00 +0400 | |
changeset 1966 | 12a51fb0db0d |
parent 1962 | 6c293d33645b |
child 2473 | 3f4bbd3be2f1 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
439
3488710b02f8
6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents:
2
diff
changeset
|
2 |
* Copyright 2003-2008 Sun Microsystems, Inc. All Rights Reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Sun designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Sun in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
22 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
23 |
* have any questions. |
|
24 |
*/ |
|
25 |
||
26 |
package sun.awt.X11; |
|
27 |
||
439
3488710b02f8
6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents:
2
diff
changeset
|
28 |
final public class XConstants { |
3488710b02f8
6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents:
2
diff
changeset
|
29 |
|
3488710b02f8
6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents:
2
diff
changeset
|
30 |
private XConstants(){} |
3488710b02f8
6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents:
2
diff
changeset
|
31 |
|
2 | 32 |
public static final int X_PROTOCOL = 11 ; /* current protocol version */ |
33 |
public static final int X_PROTOCOL_REVISION = 0 ; /* current minor version */ |
|
34 |
||
35 |
/* Resources */ |
|
36 |
||
37 |
/* |
|
38 |
* _XSERVER64 must ONLY be defined when compiling X server sources on |
|
39 |
* systems where unsigned long is not 32 bits, must NOT be used in |
|
40 |
* client or library code. |
|
41 |
*/ |
|
42 |
||
43 |
/* |
|
44 |
#ifndef _XSERVER64 |
|
45 |
typedef unsigned long XID; |
|
46 |
typedef unsigned long Mask; |
|
47 |
typedef unsigned long Atom; |
|
48 |
typedef unsigned long VisualID; |
|
49 |
typedef unsigned long Time; |
|
50 |
#else |
|
51 |
typedef CARD32 XID; |
|
52 |
typedef CARD32 Mask; |
|
53 |
typedef CARD32 Atom; |
|
54 |
typedef CARD32 VisualID; |
|
55 |
typedef CARD32 Time; |
|
56 |
#endif |
|
57 |
||
58 |
typedef XID Window; |
|
59 |
typedef XID Drawable; |
|
60 |
typedef XID Font; |
|
61 |
typedef XID Pixmap; |
|
62 |
typedef XID Cursor; |
|
63 |
typedef XID Colormap; |
|
64 |
typedef XID GContext; |
|
65 |
typedef XID KeySym; |
|
66 |
||
67 |
typedef unsigned char KeyCode; |
|
68 |
*/ |
|
69 |
/***************************************************************** |
|
70 |
* RESERVED RESOURCE AND CONSTANT DEFINITIONS |
|
71 |
*****************************************************************/ |
|
72 |
||
73 |
public static final long None = 0L ; /* universal null resource or null atom */ |
|
74 |
||
75 |
/* background pixmap in CreateWindow and ChangeWindowAttributes */ |
|
76 |
public static final long ParentRelative = 1L ; |
|
77 |
||
78 |
/* border pixmap in CreateWindow and ChangeWindowAttributes special |
|
79 |
* VisualID and special window class passed to CreateWindow */ |
|
80 |
public static final long CopyFromParent = 0L ; |
|
81 |
||
82 |
public static final long PointerWindow = 0L ; /* destination window in SendEvent */ |
|
83 |
public static final long InputFocus = 1L ; /* destination window in SendEvent */ |
|
84 |
||
85 |
public static final long PointerRoot = 1L ; /* focus window in SetInputFocus */ |
|
86 |
||
87 |
public static final long AnyPropertyType = 0L ; /* special Atom, passed to GetProperty */ |
|
88 |
||
89 |
public static final long AnyKey = 0L ; /* special Key Code, passed to GrabKey */ |
|
90 |
||
91 |
public static final long AnyButton = 0L ; /* special Button Code, passed to GrabButton */ |
|
92 |
||
93 |
public static final long AllTemporary = 0L ; /* special Resource ID passed to KillClient */ |
|
94 |
||
95 |
public static final long CurrentTime = 0L ; /* special Time */ |
|
96 |
||
97 |
public static final long NoSymbol = 0L ; /* special KeySym */ |
|
98 |
||
99 |
/***************************************************************** |
|
100 |
* EVENT DEFINITIONS |
|
101 |
*****************************************************************/ |
|
102 |
||
103 |
/* Input Event Masks. Used as event-mask window attribute and as arguments |
|
104 |
to Grab requests. Not to be confused with event names. */ |
|
105 |
||
106 |
public static final long NoEventMask = 0L ; |
|
107 |
public static final long KeyPressMask = (1L<<0) ; |
|
108 |
public static final long KeyReleaseMask = (1L<<1) ; |
|
109 |
public static final long ButtonPressMask = (1L<<2) ; |
|
110 |
public static final long ButtonReleaseMask = (1L<<3) ; |
|
111 |
public static final long EnterWindowMask = (1L<<4) ; |
|
112 |
public static final long LeaveWindowMask = (1L<<5) ; |
|
113 |
public static final long PointerMotionMask = (1L<<6) ; |
|
114 |
public static final long PointerMotionHintMask = (1L<<7) ; |
|
115 |
public static final long Button1MotionMask = (1L<<8) ; |
|
116 |
public static final long Button2MotionMask = (1L<<9) ; |
|
117 |
public static final long Button3MotionMask = (1L<<10) ; |
|
118 |
public static final long Button4MotionMask = (1L<<11) ; |
|
119 |
public static final long Button5MotionMask = (1L<<12) ; |
|
120 |
public static final long ButtonMotionMask = (1L<<13) ; |
|
121 |
public static final long KeymapStateMask = (1L<<14) ; |
|
122 |
public static final long ExposureMask = (1L<<15) ; |
|
123 |
public static final long VisibilityChangeMask = (1L<<16) ; |
|
124 |
public static final long StructureNotifyMask = (1L<<17) ; |
|
125 |
public static final long ResizeRedirectMask = (1L<<18) ; |
|
126 |
public static final long SubstructureNotifyMask = (1L<<19) ; |
|
127 |
public static final long SubstructureRedirectMask = (1L<<20) ; |
|
128 |
public static final long FocusChangeMask = (1L<<21) ; |
|
129 |
public static final long PropertyChangeMask = (1L<<22) ; |
|
130 |
public static final long ColormapChangeMask = (1L<<23) ; |
|
131 |
public static final long OwnerGrabButtonMask = (1L<<24) ; |
|
132 |
||
133 |
/* Event names. Used in "type" field in XEvent structures. Not to be |
|
134 |
confused with event masks above. They start from 2 because 0 and 1 |
|
135 |
are reserved in the protocol for errors and replies. */ |
|
136 |
||
137 |
public static final int KeyPress = 2 ; |
|
138 |
public static final int KeyRelease = 3 ; |
|
139 |
public static final int ButtonPress = 4 ; |
|
140 |
public static final int ButtonRelease = 5 ; |
|
141 |
public static final int MotionNotify = 6 ; |
|
142 |
public static final int EnterNotify = 7 ; |
|
143 |
public static final int LeaveNotify = 8 ; |
|
144 |
public static final int FocusIn = 9 ; |
|
145 |
public static final int FocusOut = 10 ; |
|
146 |
public static final int KeymapNotify = 11 ; |
|
147 |
public static final int Expose = 12 ; |
|
148 |
public static final int GraphicsExpose = 13 ; |
|
149 |
public static final int NoExpose = 14 ; |
|
150 |
public static final int VisibilityNotify = 15 ; |
|
151 |
public static final int CreateNotify = 16 ; |
|
152 |
public static final int DestroyNotify = 17 ; |
|
153 |
public static final int UnmapNotify = 18 ; |
|
154 |
public static final int MapNotify = 19 ; |
|
155 |
public static final int MapRequest = 20 ; |
|
156 |
public static final int ReparentNotify = 21 ; |
|
157 |
public static final int ConfigureNotify = 22 ; |
|
158 |
public static final int ConfigureRequest = 23 ; |
|
159 |
public static final int GravityNotify = 24 ; |
|
160 |
public static final int ResizeRequest = 25 ; |
|
161 |
public static final int CirculateNotify = 26 ; |
|
162 |
public static final int CirculateRequest = 27 ; |
|
163 |
public static final int PropertyNotify = 28 ; |
|
164 |
public static final int SelectionClear = 29 ; |
|
165 |
public static final int SelectionRequest = 30 ; |
|
166 |
public static final int SelectionNotify = 31 ; |
|
167 |
public static final int ColormapNotify = 32 ; |
|
168 |
public static final int ClientMessage = 33 ; |
|
169 |
public static final int MappingNotify = 34 ; |
|
170 |
public static final int LASTEvent = 35 ; /* must be bigger than any event # */ |
|
171 |
||
172 |
||
173 |
/* Key masks. Used as modifiers to GrabButton and GrabKey, results of QueryPointer, |
|
174 |
state in various key-, mouse-, and button-related events. */ |
|
175 |
||
176 |
public static final int ShiftMask = (1<<0) ; |
|
177 |
public static final int LockMask = (1<<1) ; |
|
178 |
public static final int ControlMask = (1<<2) ; |
|
179 |
public static final int Mod1Mask = (1<<3) ; |
|
180 |
public static final int Mod2Mask = (1<<4) ; |
|
181 |
public static final int Mod3Mask = (1<<5) ; |
|
182 |
public static final int Mod4Mask = (1<<6) ; |
|
183 |
public static final int Mod5Mask = (1<<7) ; |
|
184 |
||
185 |
/* modifier names. Used to build a SetModifierMapping request or |
|
186 |
to read a GetModifierMapping request. These correspond to the |
|
187 |
masks defined above. */ |
|
188 |
public static final int ShiftMapIndex = 0 ; |
|
189 |
public static final int LockMapIndex = 1 ; |
|
190 |
public static final int ControlMapIndex = 2 ; |
|
191 |
public static final int Mod1MapIndex = 3 ; |
|
192 |
public static final int Mod2MapIndex = 4 ; |
|
193 |
public static final int Mod3MapIndex = 5 ; |
|
194 |
public static final int Mod4MapIndex = 6 ; |
|
195 |
public static final int Mod5MapIndex = 7 ; |
|
196 |
||
197 |
||
198 |
/* button masks. Used in same manner as Key masks above. Not to be confused |
|
199 |
with button names below. */ |
|
1962
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
200 |
public static final int [] buttonsMask = new int []{ 1<<8, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
201 |
1<<9, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
202 |
1<<10, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
203 |
1<<11, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
204 |
1<<12, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
205 |
1<<13, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
206 |
1<<14, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
207 |
1<<15, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
208 |
1<<16, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
209 |
1<<17, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
210 |
1<<18, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
211 |
1<<19, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
212 |
1<<20, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
213 |
1<<21, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
214 |
1<<22, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
215 |
1<<23, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
216 |
1<<24, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
217 |
1<<25, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
218 |
1<<26, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
219 |
1<<27, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
220 |
1<<28, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
221 |
1<<29, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
222 |
1<<30, |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
223 |
1<<31 }; |
2 | 224 |
|
225 |
public static final int AnyModifier = (1<<15) ; /* used in GrabButton, GrabKey */ |
|
226 |
||
227 |
||
228 |
/* button names. Used as arguments to GrabButton and as detail in ButtonPress |
|
229 |
and ButtonRelease events. Not to be confused with button masks above. |
|
230 |
Note that 0 is already defined above as "AnyButton". */ |
|
231 |
||
1962
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
439
diff
changeset
|
232 |
public static final int buttons [] = new int [] {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24}; |
2 | 233 |
|
234 |
/* Notify modes */ |
|
235 |
||
236 |
public static final int NotifyNormal = 0 ; |
|
237 |
public static final int NotifyGrab = 1 ; |
|
238 |
public static final int NotifyUngrab = 2 ; |
|
239 |
public static final int NotifyWhileGrabbed = 3 ; |
|
240 |
||
241 |
public static final int NotifyHint = 1 ; /* for MotionNotify events */ |
|
242 |
||
243 |
/* Notify detail */ |
|
244 |
||
245 |
public static final int NotifyAncestor = 0 ; |
|
246 |
public static final int NotifyVirtual = 1 ; |
|
247 |
public static final int NotifyInferior = 2 ; |
|
248 |
public static final int NotifyNonlinear = 3 ; |
|
249 |
public static final int NotifyNonlinearVirtual = 4 ; |
|
250 |
public static final int NotifyPointer = 5 ; |
|
251 |
public static final int NotifyPointerRoot = 6 ; |
|
252 |
public static final int NotifyDetailNone = 7 ; |
|
253 |
||
254 |
/* Visibility notify */ |
|
255 |
||
256 |
public static final int VisibilityUnobscured = 0 ; |
|
257 |
public static final int VisibilityPartiallyObscured = 1 ; |
|
258 |
public static final int VisibilityFullyObscured = 2 ; |
|
259 |
||
260 |
/* Circulation request */ |
|
261 |
||
262 |
public static final int PlaceOnTop = 0 ; |
|
263 |
public static final int PlaceOnBottom = 1 ; |
|
264 |
||
265 |
/* protocol families */ |
|
266 |
||
267 |
public static final int FamilyInternet = 0 ; |
|
268 |
public static final int FamilyDECnet = 1 ; |
|
269 |
public static final int FamilyChaos = 2 ; |
|
270 |
||
271 |
/* Property notification */ |
|
272 |
||
273 |
public static final int PropertyNewValue = 0 ; |
|
274 |
public static final int PropertyDelete = 1 ; |
|
275 |
||
276 |
/* Color Map notification */ |
|
277 |
||
278 |
public static final int ColormapUninstalled = 0 ; |
|
279 |
public static final int ColormapInstalled = 1 ; |
|
280 |
||
281 |
/* GrabPointer, GrabButton, GrabKeyboard, GrabKey Modes */ |
|
282 |
||
283 |
public static final int GrabModeSync = 0 ; |
|
284 |
public static final int GrabModeAsync = 1 ; |
|
285 |
||
286 |
/* GrabPointer, GrabKeyboard reply status */ |
|
287 |
||
288 |
public static final int GrabSuccess = 0 ; |
|
289 |
public static final int AlreadyGrabbed = 1 ; |
|
290 |
public static final int GrabInvalidTime = 2 ; |
|
291 |
public static final int GrabNotViewable = 3 ; |
|
292 |
public static final int GrabFrozen = 4 ; |
|
293 |
||
294 |
/* AllowEvents modes */ |
|
295 |
||
296 |
public static final int AsyncPointer = 0 ; |
|
297 |
public static final int SyncPointer = 1 ; |
|
298 |
public static final int ReplayPointer = 2 ; |
|
299 |
public static final int AsyncKeyboard = 3 ; |
|
300 |
public static final int SyncKeyboard = 4 ; |
|
301 |
public static final int ReplayKeyboard = 5 ; |
|
302 |
public static final int AsyncBoth = 6 ; |
|
303 |
public static final int SyncBoth = 7 ; |
|
304 |
||
305 |
/* Used in SetInputFocus, GetInputFocus */ |
|
306 |
||
307 |
public static final int RevertToNone = (int)None ; |
|
308 |
public static final int RevertToPointerRoot = (int)PointerRoot ; |
|
309 |
public static final int RevertToParent = 2 ; |
|
310 |
||
311 |
/* Used in XEventsQueued */ |
|
439
3488710b02f8
6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents:
2
diff
changeset
|
312 |
public static final int QueuedAlready = 0; |
3488710b02f8
6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents:
2
diff
changeset
|
313 |
public static final int QueuedAfterReading = 1; |
3488710b02f8
6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents:
2
diff
changeset
|
314 |
public static final int QueuedAfterFlush = 2; |
2 | 315 |
|
316 |
||
317 |
/***************************************************************** |
|
318 |
* ERROR CODES |
|
319 |
*****************************************************************/ |
|
320 |
||
321 |
public static final int Success = 0 ; /* everything's okay */ |
|
322 |
public static final int BadRequest = 1 ; /* bad request code */ |
|
323 |
public static final int BadValue = 2 ; /* int parameter out of range */ |
|
324 |
public static final int BadWindow = 3 ; /* parameter not a Window */ |
|
325 |
public static final int BadPixmap = 4 ; /* parameter not a Pixmap */ |
|
326 |
public static final int BadAtom = 5 ; /* parameter not an Atom */ |
|
327 |
public static final int BadCursor = 6 ; /* parameter not a Cursor */ |
|
328 |
public static final int BadFont = 7 ; /* parameter not a Font */ |
|
329 |
public static final int BadMatch = 8 ; /* parameter mismatch */ |
|
330 |
public static final int BadDrawable = 9 ; /* parameter not a Pixmap or Window */ |
|
331 |
public static final int BadAccess = 10 ; /* depending on context: |
|
332 |
- key/button already grabbed |
|
333 |
- attempt to free an illegal |
|
334 |
cmap entry |
|
335 |
- attempt to store into a read-only |
|
336 |
color map entry. |
|
337 |
- attempt to modify the access control |
|
338 |
list from other than the local host. |
|
339 |
*/ |
|
340 |
public static final int BadAlloc = 11 ; /* insufficient resources */ |
|
341 |
public static final int BadColor = 12 ; /* no such colormap */ |
|
342 |
public static final int BadGC = 13 ; /* parameter not a GC */ |
|
343 |
public static final int BadIDChoice = 14 ; /* choice not in range or already used */ |
|
344 |
public static final int BadName = 15 ; /* font or color name doesn't exist */ |
|
345 |
public static final int BadLength = 16 ; /* Request length incorrect */ |
|
346 |
public static final int BadImplementation = 17 ; /* server is defective */ |
|
347 |
||
348 |
public static final int FirstExtensionError = 128 ; |
|
349 |
public static final int LastExtensionError = 255 ; |
|
350 |
||
351 |
/***************************************************************** |
|
352 |
* WINDOW DEFINITIONS |
|
353 |
*****************************************************************/ |
|
354 |
||
355 |
/* Window classes used by CreateWindow */ |
|
356 |
/* Note that CopyFromParent is already defined as 0 above */ |
|
357 |
||
358 |
public static final int InputOutput = 1 ; |
|
359 |
public static final int InputOnly = 2 ; |
|
360 |
||
361 |
/* Window attributes for CreateWindow and ChangeWindowAttributes */ |
|
362 |
||
363 |
public static final long CWBackPixmap = (1L<<0) ; |
|
364 |
public static final long CWBackPixel = (1L<<1) ; |
|
365 |
public static final long CWBorderPixmap = (1L<<2) ; |
|
366 |
public static final long CWBorderPixel = (1L<<3) ; |
|
367 |
public static final long CWBitGravity = (1L<<4) ; |
|
368 |
public static final long CWWinGravity = (1L<<5) ; |
|
369 |
public static final long CWBackingStore = (1L<<6) ; |
|
370 |
public static final long CWBackingPlanes = (1L<<7) ; |
|
371 |
public static final long CWBackingPixel = (1L<<8) ; |
|
372 |
public static final long CWOverrideRedirect = (1L<<9) ; |
|
373 |
public static final long CWSaveUnder = (1L<<10) ; |
|
374 |
public static final long CWEventMask = (1L<<11) ; |
|
375 |
public static final long CWDontPropagate = (1L<<12) ; |
|
376 |
public static final long CWColormap = (1L<<13) ; |
|
377 |
public static final long CWCursor = (1L<<14) ; |
|
378 |
||
379 |
/* ConfigureWindow structure */ |
|
380 |
||
381 |
public static final int CWX = (1<<0) ; |
|
382 |
public static final int CWY = (1<<1) ; |
|
383 |
public static final int CWWidth = (1<<2) ; |
|
384 |
public static final int CWHeight = (1<<3) ; |
|
385 |
public static final int CWBorderWidth = (1<<4) ; |
|
386 |
public static final int CWSibling = (1<<5) ; |
|
387 |
public static final int CWStackMode = (1<<6) ; |
|
388 |
||
389 |
||
390 |
/* Bit Gravity */ |
|
391 |
||
392 |
public static final int ForgetGravity = 0 ; |
|
393 |
public static final int NorthWestGravity = 1 ; |
|
394 |
public static final int NorthGravity = 2 ; |
|
395 |
public static final int NorthEastGravity = 3 ; |
|
396 |
public static final int WestGravity = 4 ; |
|
397 |
public static final int CenterGravity = 5 ; |
|
398 |
public static final int EastGravity = 6 ; |
|
399 |
public static final int SouthWestGravity = 7 ; |
|
400 |
public static final int SouthGravity = 8 ; |
|
401 |
public static final int SouthEastGravity = 9 ; |
|
402 |
public static final int StaticGravity = 10 ; |
|
403 |
||
404 |
/* Window gravity + bit gravity above */ |
|
405 |
||
406 |
public static final int UnmapGravity = 0 ; |
|
407 |
||
408 |
/* Used in CreateWindow for backing-store hint */ |
|
409 |
||
410 |
public static final int NotUseful = 0 ; |
|
411 |
public static final int WhenMapped = 1 ; |
|
412 |
public static final int Always = 2 ; |
|
413 |
||
414 |
/* Used in GetWindowAttributes reply */ |
|
415 |
||
416 |
public static final int IsUnmapped = 0 ; |
|
417 |
public static final int IsUnviewable = 1 ; |
|
418 |
public static final int IsViewable = 2 ; |
|
419 |
||
420 |
/* Used in ChangeSaveSet */ |
|
421 |
||
422 |
public static final int SetModeInsert = 0 ; |
|
423 |
public static final int SetModeDelete = 1 ; |
|
424 |
||
425 |
/* Used in ChangeCloseDownMode */ |
|
426 |
||
427 |
public static final int DestroyAll = 0 ; |
|
428 |
public static final int RetainPermanent = 1 ; |
|
429 |
public static final int RetainTemporary = 2 ; |
|
430 |
||
431 |
/* Window stacking method (in configureWindow) */ |
|
432 |
||
433 |
public static final int Above = 0 ; |
|
434 |
public static final int Below = 1 ; |
|
435 |
public static final int TopIf = 2 ; |
|
436 |
public static final int BottomIf = 3 ; |
|
437 |
public static final int Opposite = 4 ; |
|
438 |
||
439 |
/* Circulation direction */ |
|
440 |
||
441 |
public static final int RaiseLowest = 0 ; |
|
442 |
public static final int LowerHighest = 1 ; |
|
443 |
||
444 |
/* Property modes */ |
|
445 |
||
446 |
public static final int PropModeReplace = 0 ; |
|
447 |
public static final int PropModePrepend = 1 ; |
|
448 |
public static final int PropModeAppend = 2 ; |
|
449 |
||
450 |
/***************************************************************** |
|
451 |
* GRAPHICS DEFINITIONS |
|
452 |
*****************************************************************/ |
|
453 |
||
454 |
/* graphics functions, as in GC.alu */ |
|
455 |
||
456 |
public static final int GXclear = 0x0 ; /* 0 */ |
|
457 |
public static final int GXand = 0x1 ; /* src AND dst */ |
|
458 |
public static final int GXandReverse = 0x2 ; /* src AND NOT dst */ |
|
459 |
public static final int GXcopy = 0x3 ; /* src */ |
|
460 |
public static final int GXandInverted = 0x4 ; /* NOT src AND dst */ |
|
461 |
public static final int GXnoop = 0x5 ; /* dst */ |
|
462 |
public static final int GXxor = 0x6 ; /* src XOR dst */ |
|
463 |
public static final int GXor = 0x7 ; /* src OR dst */ |
|
464 |
public static final int GXnor = 0x8 ; /* NOT src AND NOT dst */ |
|
465 |
public static final int GXequiv = 0x9 ; /* NOT src XOR dst */ |
|
466 |
public static final int GXinvert = 0xa ; /* NOT dst */ |
|
467 |
public static final int GXorReverse = 0xb ; /* src OR NOT dst */ |
|
468 |
public static final int GXcopyInverted = 0xc ; /* NOT src */ |
|
469 |
public static final int GXorInverted = 0xd ; /* NOT src OR dst */ |
|
470 |
public static final int GXnand = 0xe ; /* NOT src OR NOT dst */ |
|
471 |
public static final int GXset = 0xf ; /* 1 */ |
|
472 |
||
473 |
/* LineStyle */ |
|
474 |
||
475 |
public static final int LineSolid = 0 ; |
|
476 |
public static final int LineOnOffDash = 1 ; |
|
477 |
public static final int LineDoubleDash = 2 ; |
|
478 |
||
479 |
/* capStyle */ |
|
480 |
||
481 |
public static final int CapNotLast = 0 ; |
|
482 |
public static final int CapButt = 1 ; |
|
483 |
public static final int CapRound = 2 ; |
|
484 |
public static final int CapProjecting = 3 ; |
|
485 |
||
486 |
/* joinStyle */ |
|
487 |
||
488 |
public static final int JoinMiter = 0 ; |
|
489 |
public static final int JoinRound = 1 ; |
|
490 |
public static final int JoinBevel = 2 ; |
|
491 |
||
492 |
/* fillStyle */ |
|
493 |
||
494 |
public static final int FillSolid = 0 ; |
|
495 |
public static final int FillTiled = 1 ; |
|
496 |
public static final int FillStippled = 2 ; |
|
497 |
public static final int FillOpaqueStippled = 3 ; |
|
498 |
||
499 |
/* fillRule */ |
|
500 |
||
501 |
public static final int EvenOddRule = 0 ; |
|
502 |
public static final int WindingRule = 1 ; |
|
503 |
||
504 |
/* subwindow mode */ |
|
505 |
||
506 |
public static final int ClipByChildren = 0 ; |
|
507 |
public static final int IncludeInferiors = 1 ; |
|
508 |
||
509 |
/* SetClipRectangles ordering */ |
|
510 |
||
511 |
public static final int Unsorted = 0 ; |
|
512 |
public static final int YSorted = 1 ; |
|
513 |
public static final int YXSorted = 2 ; |
|
514 |
public static final int YXBanded = 3 ; |
|
515 |
||
516 |
/* CoordinateMode for drawing routines */ |
|
517 |
||
518 |
public static final int CoordModeOrigin = 0 ; /* relative to the origin */ |
|
519 |
public static final int CoordModePrevious = 1 ; /* relative to previous point */ |
|
520 |
||
521 |
/* Polygon shapes */ |
|
522 |
||
523 |
public static final int Complex = 0 ; /* paths may intersect */ |
|
524 |
public static final int Nonconvex = 1 ; /* no paths intersect, but not convex */ |
|
525 |
public static final int Convex = 2 ; /* wholly convex */ |
|
526 |
||
527 |
/* Arc modes for PolyFillArc */ |
|
528 |
||
529 |
public static final int ArcChord = 0 ; /* join endpoints of arc */ |
|
530 |
public static final int ArcPieSlice = 1 ; /* join endpoints to center of arc */ |
|
531 |
||
532 |
/* GC components: masks used in CreateGC, CopyGC, ChangeGC, OR'ed into |
|
533 |
GC.stateChanges */ |
|
534 |
||
535 |
public static final long GCFunction = (1L<<0) ; |
|
536 |
public static final long GCPlaneMask = (1L<<1) ; |
|
537 |
public static final long GCForeground = (1L<<2) ; |
|
538 |
public static final long GCBackground = (1L<<3) ; |
|
539 |
public static final long GCLineWidth = (1L<<4) ; |
|
540 |
public static final long GCLineStyle = (1L<<5) ; |
|
541 |
public static final long GCCapStyle = (1L<<6) ; |
|
542 |
public static final long GCJoinStyle = (1L<<7) ; |
|
543 |
public static final long GCFillStyle = (1L<<8) ; |
|
544 |
public static final long GCFillRule = (1L<<9) ; |
|
545 |
public static final long GCTile = (1L<<10) ; |
|
546 |
public static final long GCStipple = (1L<<11) ; |
|
547 |
public static final long GCTileStipXOrigin = (1L<<12) ; |
|
548 |
public static final long GCTileStipYOrigin = (1L<<13) ; |
|
549 |
public static final long GCFont = (1L<<14) ; |
|
550 |
public static final long GCSubwindowMode = (1L<<15) ; |
|
551 |
public static final long GCGraphicsExposures = (1L<<16) ; |
|
552 |
public static final long GCClipXOrigin = (1L<<17) ; |
|
553 |
public static final long GCClipYOrigin = (1L<<18) ; |
|
554 |
public static final long GCClipMask = (1L<<19) ; |
|
555 |
public static final long GCDashOffset = (1L<<20) ; |
|
556 |
public static final long GCDashList = (1L<<21) ; |
|
557 |
public static final long GCArcMode = (1L<<22) ; |
|
558 |
||
559 |
public static final int GCLastBit = 22 ; |
|
560 |
/***************************************************************** |
|
561 |
* FONTS |
|
562 |
*****************************************************************/ |
|
563 |
||
564 |
/* used in QueryFont -- draw direction */ |
|
565 |
||
566 |
public static final int FontLeftToRight = 0 ; |
|
567 |
public static final int FontRightToLeft = 1 ; |
|
568 |
||
569 |
public static final int FontChange = 255 ; |
|
570 |
||
571 |
/***************************************************************** |
|
572 |
* IMAGING |
|
573 |
*****************************************************************/ |
|
574 |
||
575 |
/* ImageFormat -- PutImage, GetImage */ |
|
576 |
||
577 |
public static final int XYBitmap = 0 ; /* depth 1, XYFormat */ |
|
578 |
public static final int XYPixmap = 1 ; /* depth == drawable depth */ |
|
579 |
public static final int ZPixmap = 2 ; /* depth == drawable depth */ |
|
580 |
||
581 |
/***************************************************************** |
|
582 |
* COLOR MAP STUFF |
|
583 |
*****************************************************************/ |
|
584 |
||
585 |
/* For CreateColormap */ |
|
586 |
||
587 |
public static final int AllocNone = 0 ; /* create map with no entries */ |
|
588 |
public static final int AllocAll = 1 ; /* allocate entire map writeable */ |
|
589 |
||
590 |
||
591 |
/* Flags used in StoreNamedColor, StoreColors */ |
|
592 |
||
593 |
public static final int DoRed = (1<<0) ; |
|
594 |
public static final int DoGreen = (1<<1) ; |
|
595 |
public static final int DoBlue = (1<<2) ; |
|
596 |
||
597 |
/***************************************************************** |
|
598 |
* CURSOR STUFF |
|
599 |
*****************************************************************/ |
|
600 |
||
601 |
/* QueryBestSize Class */ |
|
602 |
||
603 |
public static final int CursorShape = 0 ; /* largest size that can be displayed */ |
|
604 |
public static final int TileShape = 1 ; /* size tiled fastest */ |
|
605 |
public static final int StippleShape = 2 ; /* size stippled fastest */ |
|
606 |
||
607 |
/***************************************************************** |
|
608 |
* KEYBOARD/POINTER STUFF |
|
609 |
*****************************************************************/ |
|
610 |
||
611 |
public static final int AutoRepeatModeOff = 0 ; |
|
612 |
public static final int AutoRepeatModeOn = 1 ; |
|
613 |
public static final int AutoRepeatModeDefault = 2 ; |
|
614 |
||
615 |
public static final int LedModeOff = 0 ; |
|
616 |
public static final int LedModeOn = 1 ; |
|
617 |
||
618 |
/* masks for ChangeKeyboardControl */ |
|
619 |
||
620 |
public static final long KBKeyClickPercent = (1L<<0) ; |
|
621 |
public static final long KBBellPercent = (1L<<1) ; |
|
622 |
public static final long KBBellPitch = (1L<<2) ; |
|
623 |
public static final long KBBellDuration = (1L<<3) ; |
|
624 |
public static final long KBLed = (1L<<4) ; |
|
625 |
public static final long KBLedMode = (1L<<5) ; |
|
626 |
public static final long KBKey = (1L<<6) ; |
|
627 |
public static final long KBAutoRepeatMode = (1L<<7) ; |
|
628 |
||
629 |
public static final int MappingSuccess = 0 ; |
|
630 |
public static final int MappingBusy = 1 ; |
|
631 |
public static final int MappingFailed = 2 ; |
|
632 |
||
633 |
public static final int MappingModifier = 0 ; |
|
634 |
public static final int MappingKeyboard = 1 ; |
|
635 |
public static final int MappingPointer = 2 ; |
|
636 |
||
637 |
/***************************************************************** |
|
638 |
* SCREEN SAVER STUFF |
|
639 |
*****************************************************************/ |
|
640 |
||
641 |
public static final int DontPreferBlanking = 0 ; |
|
642 |
public static final int PreferBlanking = 1 ; |
|
643 |
public static final int DefaultBlanking = 2 ; |
|
644 |
||
645 |
public static final int DisableScreenSaver = 0 ; |
|
646 |
public static final int DisableScreenInterval = 0 ; |
|
647 |
||
648 |
public static final int DontAllowExposures = 0 ; |
|
649 |
public static final int AllowExposures = 1 ; |
|
650 |
public static final int DefaultExposures = 2 ; |
|
651 |
||
652 |
/* for ForceScreenSaver */ |
|
653 |
||
654 |
public static final int ScreenSaverReset = 0 ; |
|
655 |
public static final int ScreenSaverActive = 1 ; |
|
656 |
||
657 |
/***************************************************************** |
|
658 |
* HOSTS AND CONNECTIONS |
|
659 |
*****************************************************************/ |
|
660 |
||
661 |
/* for ChangeHosts */ |
|
662 |
||
663 |
public static final int HostInsert = 0 ; |
|
664 |
public static final int HostDelete = 1 ; |
|
665 |
||
666 |
/* for ChangeAccessControl */ |
|
667 |
||
668 |
public static final int EnableAccess = 1 ; |
|
669 |
public static final int DisableAccess = 0 ; |
|
670 |
||
671 |
/* Display classes used in opening the connection |
|
672 |
* Note that the statically allocated ones are even numbered and the |
|
673 |
* dynamically changeable ones are odd numbered */ |
|
674 |
||
675 |
public static final int StaticGray = 0 ; |
|
676 |
public static final int GrayScale = 1 ; |
|
677 |
public static final int StaticColor = 2 ; |
|
678 |
public static final int PseudoColor = 3 ; |
|
679 |
public static final int TrueColor = 4 ; |
|
680 |
public static final int DirectColor = 5 ; |
|
681 |
||
682 |
||
683 |
/* Byte order used in imageByteOrder and bitmapBitOrder */ |
|
684 |
||
685 |
public static final int LSBFirst = 0 ; |
|
686 |
public static final int MSBFirst = 1 ; |
|
687 |
} |