[TT# 1592][t] Improve test for open opcode delegation. All tests in the file pass...
[parrot.git] / examples / nci / Xlibconstants.pir
blob6c664257f54e714aefead4dd99215a74449de0cb
1 # Copyright (C) 2008, Parrot Foundation.
2 # $Id$
4 =head1 TITLE
6 xlibconstants.pir - Test NCI with libX11
8 =head1 SYNOPSIS
10 Constants for xlib.pir
12 =cut
14 # event masks
16 .const int KeyPressMask = 1
17 .const int KeyReleaseMask = 2
18 .const int ButtonPressMask = 4
19 .const int ButtonReleaseMask = 8
20 .const int EnterWindowMask = 16
21 .const int LeaveWindowMask = 32
22 .const int PointerMotionMask = 64
23 .const int StructureNotifyMask = 131072
24 .const int ExposureMask = 32768
26 # event types
27 .const int KeyPress = 2
28 .const int KeyRelease = 3
29 .const int ButtonPress = 4
30 .const int ButtonRelease = 5
31 .const int MotionNotify = 6
32 .const int Expose = 12
33 .const int DestroyNotify = 17
34 .const int ClientMessage = 33
36 #-----------------------------------------------------------------------
37 # Local Variables:
38 #   mode: pir
39 #   fill-column: 100
40 # End:
41 # vim: expandtab shiftwidth=4 ft=pir: