File: xfixes.go

package info (click to toggle)
golang-github-linuxdeepin-go-x11-client 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,784 kB
  • sloc: python: 944; sh: 38; makefile: 17
file content (495 lines) | stat: -rw-r--r-- 9,873 bytes parent folder | download
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later

package xfixes

import (
	"math"

	"github.com/linuxdeepin/go-x11-client"
)

// #WREQ
func encodeQueryVersion(majorVersion, minorVersion uint32) (b x.RequestBody) {
	b.AddBlock(2).
		Write4b(majorVersion).
		Write4b(minorVersion).
		End()
	return
}

type QueryVersionReply struct {
	MajorVersion uint32
	MinorVersion uint32
}

func readQueryVersionReply(r *x.Reader, v *QueryVersionReply) error {
	if !r.RemainAtLeast4b(4) {
		return x.ErrDataLenShort
	}
	r.ReadPad(8)

	v.MajorVersion = r.Read4b()

	v.MinorVersion = r.Read4b() // 4

	return nil
}

// #WREQ
func encodeChangeSaveSet(mode, target, map0 uint8, window x.Window) (b x.RequestBody) {
	b.AddBlock(2).
		Write1b(mode).
		Write1b(target).
		Write1b(map0).
		WritePad(1).
		Write4b(uint32(window)).
		End()
	return
}

type SelectionNotifyEvent struct {
	Subtype            uint8
	Sequence           uint16
	Window             x.Window
	Owner              x.Window
	Selection          x.Atom
	Timestamp          x.Timestamp
	SelectionTimestamp x.Timestamp
}

func readSelectionNotifyEvent(r *x.Reader, v *SelectionNotifyEvent) error {
	if !r.RemainAtLeast4b(6) {
		return x.ErrDataLenShort
	}
	v.Subtype, v.Sequence = r.ReadEventHeader()

	v.Window = x.Window(r.Read4b())

	v.Owner = x.Window(r.Read4b())

	v.Selection = x.Atom(r.Read4b())

	v.Timestamp = x.Timestamp(r.Read4b())

	v.SelectionTimestamp = x.Timestamp(r.Read4b()) // 6

	return nil
}

// #WREQ
func encodeSelectSelectionInput(window x.Window, selection x.Atom,
	eventMask uint32) (b x.RequestBody) {
	b.AddBlock(3).
		Write4b(uint32(window)).
		Write4b(uint32(selection)).
		Write4b(eventMask).
		End()
	return
}

type CursorNotifyEvent struct {
	Subtype      uint8
	Sequence     uint16
	Window       x.Window
	CursorSerial uint32
	Timestamp    x.Timestamp
	Name         x.Atom
}

func readCursorNotifyEvent(r *x.Reader, v *CursorNotifyEvent) error {
	if !r.RemainAtLeast4b(5) {
		return x.ErrDataLenShort
	}
	v.Subtype, v.Sequence = r.ReadEventHeader()

	v.Window = x.Window(r.Read4b())

	v.CursorSerial = r.Read4b()

	v.Timestamp = x.Timestamp(r.Read4b())

	v.Name = x.Atom(r.Read4b()) // 5

	return nil
}

// #WREQ
func encodeSelectCursorInput(window x.Window, eventMask uint32) (b x.RequestBody) {
	b.AddBlock(2).
		Write4b(uint32(window)).
		Write4b(eventMask).
		End()
	return
}

// #WREQ
func encodeGetCursorImage() (b x.RequestBody) {
	return
}

type GetCursorImageReply struct {
	X            int16
	Y            int16
	Width        uint16
	Height       uint16
	XHot         uint16
	YHot         uint16
	CursorSerial uint32
	CursorImage  []uint32
}

func readGetCursorImageReply(r *x.Reader, v *GetCursorImageReply) error {
	if !r.RemainAtLeast4b(6) {
		return x.ErrDataLenShort
	}
	r.ReadPad(8)

	v.X = int16(r.Read2b())
	v.Y = int16(r.Read2b())

	v.Width = r.Read2b()
	v.Height = r.Read2b()

	v.XHot = r.Read2b()
	v.YHot = r.Read2b()

	v.CursorSerial = r.Read4b() // 6

	dataLen := int(v.Width) * int(v.Height)
	if dataLen > 0 {
		if !r.RemainAtLeast4b(dataLen) {
			return x.ErrDataLenShort
		}
		v.CursorImage = make([]uint32, dataLen)
		for i := 0; i < dataLen; i++ {
			v.CursorImage[i] = r.Read4b()
		}
	}

	return nil
}

// #WREQ
func encodeCreateRegion(region Region, rects []x.Rectangle) (b x.RequestBody) {
	b0 := b.AddBlock(1 + 2*len(rects)).
		Write4b(uint32(region))
	for _, rect := range rects {
		x.WriteRectangle(b0, rect)
	}
	b0.End()
	return
}

// #WREQ
func encodeCreateRegionFromBitmap(region Region, bitmap x.Pixmap) (b x.RequestBody) {
	b.AddBlock(2).
		Write4b(uint32(region)).
		Write4b(uint32(bitmap)).
		End()
	return
}

// #WREQ
//func encodeCreateRegionFromWindow

// #WREQ
func encodeCreateRegionFromGC(region Region, gc x.GContext) (b x.RequestBody) {
	b.AddBlock(2).
		Write4b(uint32(region)).
		Write4b(uint32(gc)).
		End()
	return
}

// #WREQ
//func encodeCreateRegionFromPicture

// #WREQ
func encodeDestroyRegion(region Region) (b x.RequestBody) {
	b.AddBlock(1).
		Write4b(uint32(region)).
		End()
	return
}

// #WREQ
func encodeSetRegion(region Region, rects []x.Rectangle) (b x.RequestBody) {
	b0 := b.AddBlock(1 + 2*len(rects)).
		Write4b(uint32(region))
	for _, rect := range rects {
		x.WriteRectangle(b0, rect)
	}
	b0.End()
	return
}

// #WREQ
func encodeCopyRegion(source, destination Region) (b x.RequestBody) {
	b.AddBlock(2).
		Write4b(uint32(source)).
		Write4b(uint32(destination)).
		End()
	return
}

// #WREQ
func encodeUnionRegion(source1, source2, destination Region) (b x.RequestBody) {
	b.AddBlock(3).
		Write4b(uint32(source1)).
		Write4b(uint32(source2)).
		Write4b(uint32(destination)).
		End()
	return
}

// #WREQ
func encodeIntersectRegion(source1, source2, destination Region) (b x.RequestBody) {
	b.AddBlock(3).
		Write4b(uint32(source1)).
		Write4b(uint32(source2)).
		Write4b(uint32(destination)).
		End()
	return
}

// #WREQ
func encodeSubtractRegion(source1, source2, destination Region) (b x.RequestBody) {
	b.AddBlock(3).
		Write4b(uint32(source1)).
		Write4b(uint32(source2)).
		Write4b(uint32(destination)).
		End()
	return
}

// #WREQ
func encodeInvertRegion(source Region, bounds x.Rectangle, destination Region) (b x.RequestBody) {
	b0 := b.AddBlock(4).
		Write4b(uint32(source))
	x.WriteRectangle(b0, bounds)
	b0.Write4b(uint32(destination)).
		End()
	return
}

// #WREQ
func encodeTranslateRegion(region Region, dx, dy int16) (b x.RequestBody) {
	b.AddBlock(2).
		Write4b(uint32(region)).
		Write2b(uint16(dx)).
		Write2b(uint16(dy)).
		End()
	return
}

// #WREQ
func encodeRegionExtents(source, destination Region) (b x.RequestBody) {
	b.AddBlock(2).
		Write4b(uint32(source)).
		Write4b(uint32(destination)).
		End()
	return
}

// #WREQ
func encodeFetchRegion(region Region) (b x.RequestBody) {
	b.AddBlock(1).
		Write4b(uint32(region)).
		End()
	return
}

type FetchRegionReply struct {
	Extents    x.Rectangle
	Rectangles []x.Rectangle
}

func readFetchRegionReply(r *x.Reader, v *FetchRegionReply) error {
	if !r.RemainAtLeast4b(8) {
		return x.ErrDataLenShort
	}
	_, replyLen := r.ReadReplyHeader()

	v.Extents = x.ReadRectangle(r) // 4

	r.ReadPad(16) // 8

	rectanglesLen := int(replyLen / 2)
	if rectanglesLen > 0 {
		if !r.RemainAtLeast4b(2 * rectanglesLen) {
			return x.ErrDataLenShort
		}
		v.Rectangles = make([]x.Rectangle, rectanglesLen)
		for i := 0; i < rectanglesLen; i++ {
			v.Rectangles[i] = x.ReadRectangle(r)
		}
	}

	return nil
}

// #WREQ
func encodeSetGCClipRegion(gc x.GContext, clipXOrigin, clipYOrigin int16,
	region Region) (b x.RequestBody) {

	b.AddBlock(3).
		Write4b(uint32(gc)).
		Write4b(uint32(region)).
		Write2b(uint16(clipXOrigin)).
		Write2b(uint16(clipYOrigin)).
		End()
	return
}

// #WREQ
func encodeSetCursorName(cursor x.Cursor, name string) (b x.RequestBody) {
	name = x.TruncateStr(name, math.MaxUint16)
	nameLen := len(name)
	b.AddBlock(2 + x.SizeIn4bWithPad(nameLen)).
		Write4b(uint32(cursor)).
		Write2b(uint16(nameLen)).
		WritePad(2).
		WriteString(name).
		WritePad(x.Pad(nameLen)).
		End()
	return
}

// #WREQ
func encodeGetCursorImageAndName() (b x.RequestBody) {
	return
}

type GetCursorImageAndNameReply struct {
	X, Y          int16
	Width, Height uint16
	XHot, YHot    uint16
	CursorSerial  uint32
	CursorAtom    x.Atom
	CursorName    string
	CursorImage   []uint32
}

func readGetCursorImageAndNameReply(r *x.Reader, v *GetCursorImageAndNameReply) error {
	if !r.RemainAtLeast4b(8) {
		return x.ErrDataLenShort
	}
	r.ReadPad(8)

	v.X = int16(r.Read2b())
	v.Y = int16(r.Read2b())

	v.Width = r.Read2b()
	v.Height = r.Read2b()

	v.XHot = r.Read2b()
	v.YHot = r.Read2b() // 5

	v.CursorSerial = r.Read4b()

	v.CursorAtom = x.Atom(r.Read4b())

	cursorNameLen := int(r.Read2b())
	r.ReadPad(2) // 8

	dataLen := int(v.Width) * int(v.Height)
	if dataLen > 0 {
		if !r.RemainAtLeast4b(dataLen) {
			return x.ErrDataLenShort
		}
		v.CursorImage = make([]uint32, dataLen)
		for i := 0; i < dataLen; i++ {
			v.CursorImage[i] = r.Read4b()
		}
	}

	var err error
	v.CursorName, err = r.ReadString(cursorNameLen)
	return err
}

// #WREQ
func encodeChangeCursor(source, destination x.Cursor) (b x.RequestBody) {
	b.AddBlock(2).
		Write4b(uint32(source)).
		Write4b(uint32(destination)).
		End()
	return
}

// #WREQ
func encodeChangeCursorByName(src x.Cursor, name string) (b x.RequestBody) {
	name = x.TruncateStr(name, math.MaxUint16)
	nameLen := len(name)
	b.AddBlock(2 + x.SizeIn4bWithPad(nameLen)).
		Write4b(uint32(src)).
		Write2b(uint16(nameLen)).
		WritePad(2).
		WriteString(name).
		WritePad(x.Pad(nameLen)).
		End()
	return
}

// #WREQ
func encodeExpandRegion(source, destination Region, left, right,
	top, bottom uint16) (b x.RequestBody) {

	b.AddBlock(4).
		Write4b(uint32(source)).
		Write4b(uint32(destination)).
		Write2b(left).
		Write2b(right).
		Write2b(top).
		Write2b(bottom).
		End()
	return
}

// #WREQ
func encodeHideCursor(window x.Window) (b x.RequestBody) {
	b.AddBlock(1).
		Write4b(uint32(window)).
		End()
	return
}

// #WREQ
func encodeShowCursor(window x.Window) (b x.RequestBody) {
	b.AddBlock(1).
		Write4b(uint32(window)).
		End()
	return
}

// #WREQ
func encodeCreatePointerBarrier(barrier Barrier, drawable x.Drawable,
	x1, y1, x2, y2 int16, directions uint32, devices []uint16) (b x.RequestBody) {
	devicesLen := len(devices)
	b0 := b.AddBlock(6 + x.SizeIn4bWithPad(devicesLen*2)).
		Write4b(uint32(barrier)).
		Write4b(uint32(drawable)).
		Write2b(uint16(x1)).
		Write2b(uint16(y1)).
		Write2b(uint16(x2)).
		Write2b(uint16(y2)).
		Write4b(directions).
		WritePad(2).
		Write2b(uint16(len(devices)))
	for _, device := range devices {
		b0.Write2b(device)
	}
	b0.WritePad(x.Pad(devicesLen * 2))
	b0.End()
	return
}

// #WREQ
func encodeDeletePointerBarrier(barrier Barrier) (b x.RequestBody) {
	b.AddBlock(1).
		Write4b(uint32(barrier)).
		End()
	return
}