~ubuntu-branches/ubuntu/lucid/fpc/lucid-proposed

« back to all changes in this revision

Viewing changes to fpcsrc/packages/x11/src/xatom.pp

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-10-09 23:29:00 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081009232900-553f61m37jkp6upv
Tags: 2.2.2-4
[ Torsten Werner ]
* Update ABI version in fpc-depends automatically.
* Remove empty directories from binary package fpc-source.

[ Mazen Neifer ]
* Removed leading path when calling update-alternatives to remove a Linitian
  error.
* Fixed clean target.
* Improved description of packages. (Closes: #498882)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{$PACKRECORDS C}
 
2
{$MODE OBJFPC}
 
3
 
 
4
unit xatom;
 
5
interface
 
6
uses X;
 
7
 
 
8
{
 
9
 THIS IS A GENERATED FILE
 
10
 
 
11
 Do not change!  Changing this file implies a protocol change!
 
12
}
 
13
 
 
14
const
 
15
        XA_PRIMARY             = TAtom ( 1);
 
16
        XA_SECONDARY           = TAtom ( 2);
 
17
        XA_ARC                 = TAtom ( 3);
 
18
        XA_ATOM                = TAtom ( 4);
 
19
        XA_BITMAP              = TAtom ( 5);
 
20
        XA_CARDINAL            = TAtom ( 6);
 
21
        XA_COLORMAP            = TAtom ( 7);
 
22
        XA_CURSOR              = TAtom ( 8);
 
23
        XA_CUT_BUFFER0         = TAtom ( 9);
 
24
        XA_CUT_BUFFER1         = TAtom (10);
 
25
        XA_CUT_BUFFER2         = TAtom (11);
 
26
        XA_CUT_BUFFER3         = TAtom (12);
 
27
        XA_CUT_BUFFER4         = TAtom (13);
 
28
        XA_CUT_BUFFER5         = TAtom (14);
 
29
        XA_CUT_BUFFER6         = TAtom (15);
 
30
        XA_CUT_BUFFER7         = TAtom (16);
 
31
        XA_DRAWABLE            = TAtom (17);
 
32
        XA_FONT                = TAtom (18);
 
33
        XA_INTEGER             = TAtom (19);
 
34
        XA_PIXMAP              = TAtom (20);
 
35
        XA_POINT               = TAtom (21);
 
36
        XA_RECTANGLE           = TAtom (22);
 
37
        XA_RESOURCE_MANAGER    = TAtom (23);
 
38
        XA_RGB_COLOR_MAP       = TAtom (24);
 
39
        XA_RGB_BEST_MAP        = TAtom (25);
 
40
        XA_RGB_BLUE_MAP        = TAtom (26);
 
41
        XA_RGB_DEFAULT_MAP     = TAtom (27);
 
42
        XA_RGB_GRAY_MAP        = TAtom (28);
 
43
        XA_RGB_GREEN_MAP       = TAtom (29);
 
44
        XA_RGB_RED_MAP         = TAtom (30);
 
45
        XA_STRING              = TAtom (31);
 
46
        XA_VISUALID            = TAtom (32);
 
47
        XA_WINDOW              = TAtom (33);
 
48
        XA_WM_COMMAND          = TAtom (34);
 
49
        XA_WM_HINTS            = TAtom (35);
 
50
        XA_WM_CLIENT_MACHINE   = TAtom (36);
 
51
        XA_WM_ICON_NAME        = TAtom (37);
 
52
        XA_WM_ICON_SIZE        = TAtom (38);
 
53
        XA_WM_NAME             = TAtom (39);
 
54
        XA_WM_NORMAL_HINTS     = TAtom (40);
 
55
        XA_WM_SIZE_HINTS       = TAtom (41);
 
56
        XA_WM_ZOOM_HINTS       = TAtom (42);
 
57
        XA_MIN_SPACE           = TAtom (43);
 
58
        XA_NORM_SPACE          = TAtom (44);
 
59
        XA_MAX_SPACE           = TAtom (45);
 
60
        XA_END_SPACE           = TAtom (46);
 
61
        XA_SUPERSCRIPT_X       = TAtom (47);
 
62
        XA_SUPERSCRIPT_Y       = TAtom (48);
 
63
        XA_SUBSCRIPT_X         = TAtom (49);
 
64
        XA_SUBSCRIPT_Y         = TAtom (50);
 
65
        XA_UNDERLINE_POSITION  = TAtom (51);
 
66
        XA_UNDERLINE_THICKNESS = TAtom (52);
 
67
        XA_STRIKEOUT_ASCENT    = TAtom (53);
 
68
        XA_STRIKEOUT_DESCENT   = TAtom (54);
 
69
        XA_ITALIC_ANGLE        = TAtom (55);
 
70
        XA_X_HEIGHT            = TAtom (56);
 
71
        XA_QUAD_WIDTH          = TAtom (57);
 
72
        XA_WEIGHT              = TAtom (58);
 
73
        XA_POINT_SIZE          = TAtom (59);
 
74
        XA_RESOLUTION          = TAtom (60);
 
75
        XA_COPYRIGHT           = TAtom (61);
 
76
        XA_NOTICE              = TAtom (62);
 
77
        XA_FONT_NAME           = TAtom (63);
 
78
        XA_FAMILY_NAME         = TAtom (64);
 
79
        XA_FULL_NAME           = TAtom (65);
 
80
        XA_CAP_HEIGHT          = TAtom (66);
 
81
        XA_WM_CLASS            = TAtom (67);
 
82
        XA_WM_TRANSIENT_FOR    = TAtom (68);
 
83
 
 
84
        XA_LAST_PREDEFINED     = TAtom (68);
 
85
 
 
86
implementation
 
87
 
 
88
end.