aboutsummaryrefslogtreecommitdiff
path: root/libxcb/xcb-proto/src/xprint.xml
blob: 4da49b0a974a27e660f8359b7beeece232c7e8b4 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2005 Jeremy Kolb.
All Rights Reserved.

Permission is hereby granted, free of charge, to any person ob/Sintaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Except as contained in this notice, the names of the authors or their
institutions shall not be used in advertising or otherwise to promote the
sale, use or other dealings in this Software without prior written
authorization from the authors.
-->

<xcb header="xprint" extension-xname="XpExtension" extension-name="XPrint"
    extension-multiword="true" major-version="1" minor-version="0">

    <!-- Conforms to XPRINT 1.0 -->

    <import>xproto</import>
    
    <typedef oldname="char" newname="STRING8" />

    <!-- Types -->
    <struct name="PRINTER">
        <field type="CARD32" name="nameLen" />
        <list type="STRING8" name="name">
            <fieldref>nameLen</fieldref>
        </list>
        <!-- Padding -->
        <field type="CARD32" name="descLen" />
        <list type="STRING8" name="description">
            <fieldref>descLen</fieldref>
        </list>
        <!-- More padding -->
    </struct>

    <!--<typedef oldname="CARD32" newname="PCONTEXT" />-->
    <xidtype name="PCONTEXT" />

    <!-- "PrintGetDocumentData" -->
    <enum name="GetDoc">
        <item name="Finished"><value>0</value></item>
            <item name="SecondConsumer"><value>1</value></item>
    </enum>

    <!-- Event Mask ("PrintSelectInput") -->
    <enum name="EvMask">
        <item name="NoEventMask"><value>0</value></item>
        <item name="PrintMask"><bit>0</bit></item>
        <item name="AttributeMask"><bit>1</bit></item>
    </enum>

    <!-- "PrintNotify" detail -->
    <enum name="Detail">
        <item name="StartJobNotify"><value>1</value></item>
        <item name="EndJobNotify"><value>2</value></item>
        <item name="StartDocNotify"><value>3</value></item>
        <item name="EndDocNotify"><value>4</value></item>
        <item name="StartPageNotify"><value>5</value></item>
        <item name="EndPageNotify"><value>6</value></item>
    </enum>

    <!-- "AttributeNotify" detail -->
    <enum name="Attr">
        <item name="JobAttr"><value>1</value></item>
        <item name="DocAttr"><value>2</value></item>
        <item name="PageAttr"><value>3</value></item>
        <item name="PrinterAttr"><value>4</value></item>
        <item name="ServerAttr"><value>5</value></item>
        <item name="MediumAttr"><value>6</value></item>
        <item name="SpoolerAttr"><value>7</value></item>
    </enum>
    
    
    <!-- Requests -->
    <request name="PrintQueryVersion" opcode="0">
        <reply>
            <pad bytes="1" />
            <field type="CARD16" name="major_version" />
            <field type="CARD16" name="minor_version" />
        </reply>
    </request>

    <request name="PrintGetPrinterList" opcode="1">
        <field type="CARD32" name="printerNameLen" />
        <field type="CARD32" name="localeLen" />
        <list type="STRING8" name="printer_name">
            <fieldref>printerNameLen</fieldref>
        </list>
        <!-- There's some padding in here... -->
        <list type="STRING8" name="locale">
            <fieldref>localeLen</fieldref>
        </list>
        <reply>
            <pad bytes="1" />
            <field type="CARD32" name="listCount" />
            <pad bytes="20" />
            <list type="PRINTER" name="printers">
                <fieldref>listCount</fieldref>
            </list>
        </reply>
    </request>

    <request name="PrintRehashPrinterList" opcode="20" />

    <request name="CreateContext" opcode="2">
        <field type="CARD32" name="context_id" />
        <field type="CARD32" name="printerNameLen" />
        <field type="CARD32" name="localeLen" />
        <list type="STRING8" name="printerName">
            <fieldref>printerNameLen</fieldref>
        </list>
        <!-- padding -->
        <list type="STRING8" name="locale">
            <fieldref>localeLen</fieldref>
        </list>
    </request>

    <request name="PrintSetContext" opcode="3">
        <field type="CARD32" name="context" />
    </request>

    <request name="PrintGetContext" opcode="4">
        <reply>
            <pad bytes="1" />
            <field type="CARD32" name="context" />
        </reply>
    </request>

    <request name="PrintDestroyContext" opcode="5">
        <field type="CARD32" name="context" />
    </request>

    <request name="PrintGetScreenOfContext" opcode="6">
        <reply>
            <pad bytes="1" />
            <field type="WINDOW" name="root" />
        </reply>
    </request>

    <request name="PrintStartJob" opcode="7">
        <field type="CARD8" name="output_mode"/>
    </request>

    <request name="PrintEndJob" opcode="8">
        <field type="BOOL"  name="cancel" />
    </request>

    <request name="PrintStartDoc" opcode="9">
        <field type="CARD8" name="driver_mode" />
    </request>

    <request name="PrintEndDoc" opcode="10">
        <field type="BOOL" name="cancel" />
    </request>

    <request name="PrintPutDocumentData" opcode="11">
        <field type="DRAWABLE" name="drawable" />
        <field type="CARD32" name="len_data" />
        <field type="CARD16" name="len_fmt" />
        <field type="CARD16" name="len_options" />
        <list type="BYTE" name="data">
            <fieldref>len_data</fieldref>
        </list>
        <!-- padding -->
        <list type="STRING8" name="doc_format">
            <fieldref>len_fmt</fieldref>
        </list>
        <!-- padding -->
        <list type="STRING8" name="options">
            <fieldref>len_options</fieldref>
        </list>
    </request>

    <request name="PrintGetDocumentData" opcode="12">
        <field type="PCONTEXT" name="context" />
        <field type="CARD32" name="max_bytes" />
        <reply>
            <pad bytes="1" />
            <field type="CARD32" name="status_code" />
            <field type="CARD32" name="finished_flag" />
            <field type="CARD32" name="dataLen" />
            <pad bytes="12" />
            <list type="BYTE" name="data">
                <fieldref>dataLen</fieldref>
            </list>
        </reply>
    </request>

    <request name="PrintStartPage" opcode="13">
        <field type="WINDOW" name="window" />
    </request>

    <request name="PrintEndPage" opcode="14">
        <field type="BOOL" name="cancel" />
        <pad bytes="3" />
    </request>

    <request name="PrintSelectInput" opcode="15">
        <field type="PCONTEXT" name="context" />
        <field type="CARD32" name="event_mask" />
    </request>

    <request name="PrintInputSelected" opcode="16">
        <field type="PCONTEXT" name="context" />
        <reply>
           <field type="CARD32" name="event_mask" />
           <field type="CARD32" name="all_events_mask" />
        </reply>
    </request>

    <request name="PrintGetAttributes" opcode="17">
        <field type="PCONTEXT" name="context" />
        <field type="CARD8" name="pool" />
        <pad bytes="3" />
        <reply>
            <pad bytes="1" />
            <field type="CARD32" name="stringLen" />
            <pad bytes="20" />
            <list type="STRING8" name="attributes">
                <fieldref>stringLen</fieldref>
            </list>
        </reply>
    </request>

    <request name="PrintGetOneAttributes" opcode="19">
        <field type="PCONTEXT" name="context" />
        <field type="CARD32" name="nameLen" />
        <field type="CARD8" name="pool" />
        <pad bytes="3" />
        <list type="STRING8" name="name">
            <fieldref>nameLen</fieldref>
        </list>
        <reply>
            <pad bytes="1" />
            <field type="CARD32" name="valueLen" />
            <pad bytes="20" />
            <list type="STRING8" name="value">
                <fieldref>valueLen</fieldref>
            </list>
        </reply>
    </request>

    <request name="PrintSetAttributes" opcode="18">
        <field type="PCONTEXT" name="context" />
        <field type="CARD32" name="stringLen" />
        <field type="CARD8" name="pool" />
        <field type="CARD8" name="rule" />
        <pad bytes="2" />
        <list type="STRING8" name="attributes" />
    </request>

    <request name="PrintGetPageDimensions" opcode="21">
        <field type="PCONTEXT" name="context" />
        <reply>
            <pad bytes="1" />
            <field type="CARD16" name="width" />
            <field type="CARD16" name="height" />
            <field type="CARD16" name="offset_x" />
            <field type="CARD16" name="offset_y" />
            <field type="CARD16" name="reproducible_width" />
            <field type="CARD16" name="reproducible_height" />
        </reply>
    </request>

    <request name="PrintQueryScreens" opcode="22">
        <reply>
            <pad bytes="1" />
            <field type="CARD32" name="listCount" />
            <pad bytes="20" />
            <list type="WINDOW" name="roots">
                <fieldref>listCount</fieldref>
            </list>
            <!-- There may be a WINDOW rootWindow here... -->
        </reply>
    </request>

    <request name="PrintSetImageResolution" opcode="23">
        <field type="PCONTEXT" name="context" />
        <field type="CARD16" name="image_resolution" />
        <reply>
            <field type="BOOL" name="status" />
            <field type="CARD16" name="previous_resolutions" />
        </reply>
    </request>

    <request name="PrintGetImageResolution" opcode="24">
        <field type="PCONTEXT" name="context" />
        <reply>
            <pad bytes="1" />
            <field type="CARD16" name="image_resolution" />
        </reply>
    </request>


    <!-- Events -->
    <event name="Notify" number="0">
        <field type="CARD8" name="detail" />
        <field type="PCONTEXT" name="context" />
        <field type="BOOL" name="cancel" />
    </event>

    <event name="AttributNotify" number="1">
        <field type="CARD8" name="detail" />
        <field type="PCONTEXT" name="context" />
    </event>

    <!-- Errors -->
    <error name="BadContext" number="0" />
    <error name="BadSequence" number="1" />

</xcb>