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
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
// MIT/Apache2 License

use super::{
    auto::xproto::{
        Arc, ChangeGcRequest, CoordMode, Drawable, FillPolyRequest, FreeGcRequest, Gcontext, Point,
        PolyArcRequest, PolyFillArcRequest, PolyFillRectangleRequest, PolyRectangleRequest,
        PolySegmentRequest, PolyShape, Rectangle, Segment,
    },
    Connection, Display, GcParameters,
};

impl Gcontext {
    #[inline]
    fn change_request(self, params: GcParameters) -> ChangeGcRequest {
        let mut cgcr = ChangeGcRequest {
            gc: self,
            ..Default::default()
        };

        let g = params.mask_change_gc_request(&mut cgcr);
        cgcr.value_mask = g;
        cgcr
    }

    /// Change the properties of this GC.
    #[inline]
    pub fn change<Conn: Connection>(
        self,
        dpy: &mut Display<Conn>,
        params: GcParameters,
    ) -> crate::Result<()> {
        log::debug!("Sending ChangeGcRequest to server");
        let req = self.change_request(params);
        let tok = dpy.send_request(req)?;
        log::debug!("Send ChangeGcRequest to server");
        dpy.resolve_request(tok)
    }

    /// Change the properties of this GC, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn change_async<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        params: GcParameters,
    ) -> crate::Result<()> {
        log::debug!("Sending ChangeGcRequest to server");
        let req = self.change_request(params);
        let tok = dpy.send_request_async(req).await?;
        log::debug!("Send ChangeGcRequest to server");
        dpy.resolve_request_async(tok).await
    }

    /// Request to draw a line.
    #[inline]
    fn poly_segment_request(self, drawable: Drawable, line: &[Segment]) -> PolySegmentRequest {
        PolySegmentRequest {
            drawable,
            gc: self,
            segments: line.to_vec(),
            ..Default::default()
        }
    }

    /// Draw a set of lines.
    #[inline]
    pub fn draw_lines<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        line: &[Segment],
    ) -> crate::Result {
        if line.is_empty() {
            return Ok(());
        }

        let psr = self.poly_segment_request(target.into(), line);
        log::debug!("Sending PolySegmentRequest to server");
        let tok = dpy.send_request(psr)?;
        log::debug!("Sent PolySegmentRequest to server");
        dpy.resolve_request(tok)
    }

    /// Draw a set of lines, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn draw_lines_async<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        line: &[Segment],
    ) -> crate::Result {
        if line.is_empty() {
            return Ok(());
        }

        let psr = self.poly_segment_request(target.into(), line);
        log::debug!("Sending PolySegmentRequest to server");
        let tok = dpy.send_request_async(psr).await?;
        log::debug!("Sent PolySegmentRequest to server");
        dpy.resolve_request_async(tok).await
    }

    /// Draw a singular line.
    #[inline]
    pub fn draw_line<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        line: Segment,
    ) -> crate::Result {
        self.draw_lines(dpy, target, &[line])
    }

    /// Draw a singular line, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn draw_line_async<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        line: Segment,
    ) -> crate::Result {
        self.draw_lines_async(dpy, target, &[line]).await
    }

    /// Rectangle drawing request.
    #[inline]
    fn poly_rectangle_request(
        self,
        target: Drawable,
        rectangles: &[Rectangle],
    ) -> PolyRectangleRequest {
        PolyRectangleRequest {
            drawable: target,
            gc: self,
            rectangles: rectangles.to_vec(),
            ..Default::default()
        }
    }

    /// Draw one or more rectangles to the screen.
    #[inline]
    pub fn draw_rectangles<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        rectangles: &[Rectangle],
    ) -> crate::Result<()> {
        if rectangles.is_empty() {
            return Ok(());
        }

        let prr = self.poly_rectangle_request(target.into(), rectangles);
        log::debug!("Sending PolyRectangleRequest to the server.");
        let tok = dpy.send_request(prr)?;
        log::debug!("Sent PolyRectangleRequest to the server.");
        dpy.resolve_request(tok)
    }

    /// Draw one or more rectangles to the screen, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn draw_rectangles_async<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        rectangles: &[Rectangle],
    ) -> crate::Result<()> {
        if rectangles.is_empty() {
            return Ok(());
        }

        let prr = self.poly_rectangle_request(target.into(), rectangles);
        log::debug!("Sending PolyRectangleRequest to the server.");
        let tok = dpy.send_request_async(prr).await?;
        log::debug!("Sent PolyRectangleRequest to the server.");
        dpy.resolve_request_async(tok).await
    }

    /// Draw a rectangle to the screen.
    #[inline]
    pub fn draw_rectangle<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        rectangle: Rectangle,
    ) -> crate::Result<()> {
        self.draw_rectangles(dpy, target, &[rectangle])
    }

    /// Draw a rectangle to the screen, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn draw_rectangle_async<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        rectangle: Rectangle,
    ) -> crate::Result<()> {
        self.draw_rectangles_async(dpy, target, &[rectangle]).await
    }

    /// Arc drawing request.
    #[inline]
    fn poly_arc_request(self, target: Drawable, arcs: &[Arc]) -> PolyArcRequest {
        PolyArcRequest {
            drawable: target,
            gc: self,
            arcs: arcs.to_vec(),
            ..Default::default()
        }
    }

    /// Draw one or more arcs to the screen.
    #[inline]
    pub fn draw_arcs<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        arcs: &[Arc],
    ) -> crate::Result {
        if arcs.is_empty() {
            return Ok(());
        }

        let par = self.poly_arc_request(target.into(), arcs);
        log::debug!("Sending PolyArcRequest to the server.");
        let tok = dpy.send_request(par)?;
        log::debug!("Send PolyArcRequest to the server.");
        dpy.resolve_request(tok)
    }

    /// Draw one or more arcs to the screen, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn draw_arcs_async<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        arcs: &[Arc],
    ) -> crate::Result {
        if arcs.is_empty() {
            return Ok(());
        }

        let par = self.poly_arc_request(target.into(), arcs);
        log::debug!("Sending PolyArcRequest to the server.");
        let tok = dpy.send_request_async(par).await?;
        log::debug!("Send PolyArcRequest to the server.");
        dpy.resolve_request_async(tok).await
    }

    /// Draw an arc to the screen.
    #[inline]
    pub fn draw_arc<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        arc: Arc,
    ) -> crate::Result {
        self.draw_arcs(dpy, target, &[arc])
    }

    /// Draw an arc to the screen, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn draw_arc_async<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        arc: Arc,
    ) -> crate::Result {
        self.draw_arcs_async(dpy, target, &[arc]).await
    }

    /// Request to fill a polygon.
    #[inline]
    fn fill_poly_request(
        self,
        drawable: Drawable,
        shape: PolyShape,
        mode: CoordMode,
        points: &[Point],
    ) -> FillPolyRequest {
        FillPolyRequest {
            drawable,
            gc: self,
            shape,
            coordinate_mode: mode,
            points: points.to_vec(),
            ..Default::default()
        }
    }

    /// Fill a polygon specified by the given points.
    #[inline]
    pub fn fill_polygon<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        shape: PolyShape,
        coordinate_mode: CoordMode,
        points: &[Point],
    ) -> crate::Result {
        if points.is_empty() {
            return Ok(());
        }

        let fpr = self.fill_poly_request(target.into(), shape, coordinate_mode, points);
        log::debug!("Sending FillPolyRequest to server.");
        let tok = dpy.send_request(fpr)?;
        log::debug!("Sent FillPolyRequest to server.");
        dpy.resolve_request(tok)
    }

    /// Fill a polygon specified by the given points, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn fill_polygon_async<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        shape: PolyShape,
        coordinate_mode: CoordMode,
        points: &[Point],
    ) -> crate::Result {
        if points.is_empty() {
            return Ok(());
        }

        let fpr = self.fill_poly_request(target.into(), shape, coordinate_mode, points);
        log::debug!("Sending FillPolyRequest to server.");
        let tok = dpy.send_request_async(fpr).await?;
        log::debug!("Sent FillPolyRequest to server.");
        dpy.resolve_request_async(tok).await
    }

    /// Request to fill rectangles.
    #[inline]
    fn poly_fill_rectangle_request(
        self,
        drawable: Drawable,
        rectangles: &[Rectangle],
    ) -> PolyFillRectangleRequest {
        PolyFillRectangleRequest {
            drawable,
            gc: self,
            rectangles: rectangles.to_vec(),
            ..Default::default()
        }
    }

    /// Fill a set of one or more rectangles.
    #[inline]
    pub fn fill_rectangles<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        rectangles: &[Rectangle],
    ) -> crate::Result {
        if rectangles.is_empty() {
            return Ok(());
        }

        let pfrr = self.poly_fill_rectangle_request(target.into(), rectangles);
        log::debug!("Sending PolyFillRectangleRequest to server.");
        let tok = dpy.send_request(pfrr)?;
        log::debug!("Sent PolyFillRectangleRequest to server.");
        dpy.resolve_request(tok)
    }

    /// Fill a set of one or more rectangles, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn fill_rectangles_async<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        rectangles: &[Rectangle],
    ) -> crate::Result {
        if rectangles.is_empty() {
            return Ok(());
        }

        let pfrr = self.poly_fill_rectangle_request(target.into(), rectangles);
        log::debug!("Sending PolyFillRectangleRequest to server.");
        let tok = dpy.send_request_async(pfrr).await?;
        log::debug!("Sent PolyFillRectangleRequest to server.");
        dpy.resolve_request_async(tok).await
    }

    /// Fill a single rectangle.
    #[inline]
    pub fn fill_rectangle<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        rectangle: Rectangle,
    ) -> crate::Result {
        self.fill_rectangles(dpy, target, &[rectangle])
    }

    /// Fill a single rectangle, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn fill_rectangle_async<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        rectangle: Rectangle,
    ) -> crate::Result {
        self.fill_rectangles_async(dpy, target, &[rectangle]).await
    }

    /// Request to fill a series of arcs.
    #[inline]
    fn poly_fill_arc_request(self, drawable: Drawable, arcs: &[Arc]) -> PolyFillArcRequest {
        PolyFillArcRequest {
            drawable,
            gc: self,
            arcs: arcs.to_vec(),
            ..Default::default()
        }
    }

    /// Fill a set of one or more arcs.
    #[inline]
    pub fn fill_arcs<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        arcs: &[Arc],
    ) -> crate::Result {
        if arcs.is_empty() {
            return Ok(());
        }

        let pfar = self.poly_fill_arc_request(target.into(), arcs);
        log::debug!("Sending PolyFillArcRequest to server.");
        let tok = dpy.send_request(pfar)?;
        log::debug!("Sent PolyFillArcRequest to server.");
        dpy.resolve_request(tok)
    }

    /// Fill a set of one or more arcs, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn fill_arcs_async<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        arcs: &[Arc],
    ) -> crate::Result {
        if arcs.is_empty() {
            return Ok(());
        }

        let pfar = self.poly_fill_arc_request(target.into(), arcs);
        log::debug!("Sending PolyFillArcRequest to server.");
        let tok = dpy.send_request_async(pfar).await?;
        log::debug!("Sent PolyFillArcRequest to server.");
        dpy.resolve_request_async(tok).await
    }

    /// Fill an arc.
    #[inline]
    pub fn fill_arc<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        arc: Arc,
    ) -> crate::Result {
        self.fill_arcs(dpy, target, &[arc])
    }

    /// Fill an arc, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn fill_arc_async<Conn: Connection, Target: Into<Drawable>>(
        self,
        dpy: &mut Display<Conn>,
        target: Target,
        arc: Arc,
    ) -> crate::Result {
        self.fill_arcs_async(dpy, target, &[arc]).await
    }

    /// Free the memory this GC allocates. Note that this will cause future requests involving this GC
    /// to fail.
    #[inline]
    pub fn free<Conn: Connection>(self, dpy: &mut Display<Conn>) -> crate::Result {
        let req = FreeGcRequest {
            gc: self,
            ..Default::default()
        };
        log::debug!("Sending FreeGcRequest to server.");
        let tok = dpy.send_request(req)?;
        log::debug!("Sent FreeGcRequest to server.");
        dpy.resolve_request(tok)
    }

    /// Free the memory this GC allocates, async redox.
    #[cfg(feature = "async")]
    #[inline]
    pub async fn free_async<Conn: Connection>(self, dpy: &mut Display<Conn>) -> crate::Result {
        let req = FreeGcRequest {
            gc: self,
            ..Default::default()
        };
        log::debug!("Sending FreeGcRequest to server.");
        let tok = dpy.send_request_async(req).await?;
        log::debug!("Sent FreeGcRequest to server.");
        dpy.resolve_request_async(tok).await
    }
}