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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use crate::{Path, PathPoint, RoundedRect};
use glib::translate::*;

glib::wrapper! {
    /// [`PathBuilder`][crate::PathBuilder] is an auxiliary object for constructing
    /// [`Path`][crate::Path] objects.
    ///
    /// A path is constructed like this:
    ///
    ///
    ///
    /// **⚠️ The following code is in C ⚠️**
    ///
    /// ```C
    /// GskPath *
    /// construct_path (void)
    /// {
    ///   GskPathBuilder *builder;
    ///
    ///   builder = gsk_path_builder_new ();
    ///
    ///   // add contours to the path here
    ///
    ///   return gsk_path_builder_free_to_path (builder);
    /// ```
    ///
    /// Adding contours to the path can be done in two ways.
    /// The easiest option is to use the `gsk_path_builder_add_*` group
    /// of functions that add predefined contours to the current path,
    /// either common shapes like [`add_circle()`][Self::add_circle()]
    /// or by adding from other paths like [`add_path()`][Self::add_path()].
    ///
    /// The `gsk_path_builder_add_*` methods always add complete contours,
    /// and do not use or modify the current point.
    ///
    /// The other option is to define each line and curve manually with
    /// the `gsk_path_builder_*_to` group of functions. You start with
    /// a call to [`move_to()`][Self::move_to()] to set the starting point
    /// and then use multiple calls to any of the drawing functions to
    /// move the pen along the plane. Once you are done, you can call
    /// [`close()`][Self::close()] to close the path by connecting it
    /// back with a line to the starting point.
    ///
    /// This is similar to how paths are drawn in Cairo.
    ///
    /// Note that [`PathBuilder`][crate::PathBuilder] will reduce the degree of added Bézier
    /// curves as much as possible, to simplify rendering.
    #[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
    pub struct PathBuilder(Shared<ffi::GskPathBuilder>);

    match fn {
        ref => |ptr| ffi::gsk_path_builder_ref(ptr),
        unref => |ptr| ffi::gsk_path_builder_unref(ptr),
        type_ => || ffi::gsk_path_builder_get_type(),
    }
}

impl PathBuilder {
    /// Create a new [`PathBuilder`][crate::PathBuilder] object.
    ///
    /// The resulting builder would create an empty [`Path`][crate::Path].
    /// Use addition functions to add types to it.
    ///
    /// # Returns
    ///
    /// a new [`PathBuilder`][crate::PathBuilder]
    #[doc(alias = "gsk_path_builder_new")]
    pub fn new() -> PathBuilder {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(ffi::gsk_path_builder_new()) }
    }

    /// Adds a circle with the @center and @radius.
    ///
    /// The path is going around the circle in clockwise direction.
    ///
    /// If @radius is zero, the contour will be a closed point.
    /// ## `center`
    /// the center of the circle
    /// ## `radius`
    /// the radius of the circle
    #[doc(alias = "gsk_path_builder_add_circle")]
    pub fn add_circle(&self, center: &graphene::Point, radius: f32) {
        unsafe {
            ffi::gsk_path_builder_add_circle(
                self.to_glib_none().0,
                center.to_glib_none().0,
                radius,
            );
        }
    }

    /// Adds the outlines for the glyphs in @layout to the builder.
    /// ## `layout`
    /// the pango layout to add
    #[doc(alias = "gsk_path_builder_add_layout")]
    pub fn add_layout(&self, layout: &pango::Layout) {
        unsafe {
            ffi::gsk_path_builder_add_layout(self.to_glib_none().0, layout.to_glib_none().0);
        }
    }

    /// Appends all of @path to the builder.
    /// ## `path`
    /// the path to append
    #[doc(alias = "gsk_path_builder_add_path")]
    pub fn add_path(&self, path: &Path) {
        unsafe {
            ffi::gsk_path_builder_add_path(self.to_glib_none().0, path.to_glib_none().0);
        }
    }

    /// Adds @rect as a new contour to the path built by the builder.
    ///
    /// The path is going around the rectangle in clockwise direction.
    ///
    /// If the the width or height are 0, the path will be a closed
    /// horizontal or vertical line. If both are 0, it'll be a closed dot.
    /// ## `rect`
    /// The rectangle to create a path for
    #[doc(alias = "gsk_path_builder_add_rect")]
    pub fn add_rect(&self, rect: &graphene::Rect) {
        unsafe {
            ffi::gsk_path_builder_add_rect(self.to_glib_none().0, rect.to_glib_none().0);
        }
    }

    /// Appends all of @path to the builder, in reverse order.
    /// ## `path`
    /// the path to append
    #[doc(alias = "gsk_path_builder_add_reverse_path")]
    pub fn add_reverse_path(&self, path: &Path) {
        unsafe {
            ffi::gsk_path_builder_add_reverse_path(self.to_glib_none().0, path.to_glib_none().0);
        }
    }

    /// Adds @rect as a new contour to the path built in @self.
    ///
    /// The path is going around the rectangle in clockwise direction.
    /// ## `rect`
    /// the rounded rect
    #[doc(alias = "gsk_path_builder_add_rounded_rect")]
    pub fn add_rounded_rect(&self, rect: &RoundedRect) {
        unsafe {
            ffi::gsk_path_builder_add_rounded_rect(self.to_glib_none().0, rect.to_glib_none().0);
        }
    }

    /// Adds to @self the segment of @path from @start to @end.
    ///
    /// If @start is equal to or after @end, the path will first add the
    /// segment from @start to the end of the path, and then add the segment
    /// from the beginning to @end. If the path is closed, these segments
    /// will be connected.
    ///
    /// Note that this method always adds a path with the given start point
    /// and end point. To add a closed path, use [`add_path()`][Self::add_path()].
    /// ## `path`
    /// the [`Path`][crate::Path] to take the segment to
    /// ## `start`
    /// the point on @path to start at
    /// ## `end`
    /// the point on @path to end at
    #[doc(alias = "gsk_path_builder_add_segment")]
    pub fn add_segment(&self, path: &Path, start: &PathPoint, end: &PathPoint) {
        unsafe {
            ffi::gsk_path_builder_add_segment(
                self.to_glib_none().0,
                path.to_glib_none().0,
                start.to_glib_none().0,
                end.to_glib_none().0,
            );
        }
    }

    /// Adds an elliptical arc from the current point to @x3, @y3
    /// with @x1, @y1 determining the tangent directions.
    ///
    /// After this, @x3, @y3 will be the new current point.
    ///
    /// Note: Two points and their tangents do not determine
    /// a unique ellipse, so GSK just picks one. If you need more
    /// precise control, use [`conic_to()`][Self::conic_to()]
    /// or [`svg_arc_to()`][Self::svg_arc_to()].
    ///
    /// <picture>
    ///   <source srcset="arc-dark.png" media="(prefers-color-scheme: dark)">
    ///   <img alt="Arc To" src="arc-light.png">
    /// </picture>
    /// ## `x1`
    /// x coordinate of first control point
    /// ## `y1`
    /// y coordinate of first control point
    /// ## `x2`
    /// x coordinate of second control point
    /// ## `y2`
    /// y coordinate of second control point
    #[doc(alias = "gsk_path_builder_arc_to")]
    pub fn arc_to(&self, x1: f32, y1: f32, x2: f32, y2: f32) {
        unsafe {
            ffi::gsk_path_builder_arc_to(self.to_glib_none().0, x1, y1, x2, y2);
        }
    }

    /// Ends the current contour with a line back to the start point.
    ///
    /// Note that this is different from calling [`line_to()`][Self::line_to()]
    /// with the start point in that the contour will be closed. A closed
    /// contour behaves differently from an open one. When stroking, its
    /// start and end point are considered connected, so they will be
    /// joined via the line join, and not ended with line caps.
    #[doc(alias = "gsk_path_builder_close")]
    pub fn close(&self) {
        unsafe {
            ffi::gsk_path_builder_close(self.to_glib_none().0);
        }
    }

    /// Adds a [conic curve](https://en.wikipedia.org/wiki/Non-uniform_rational_B-spline)
    /// from the current point to @x2, @y2 with the given @weight and @x1, @y1 as the
    /// control point.
    ///
    /// The weight determines how strongly the curve is pulled towards the control point.
    /// A conic with weight 1 is identical to a quadratic Bézier curve with the same points.
    ///
    /// Conic curves can be used to draw ellipses and circles. They are also known as
    /// rational quadratic Bézier curves.
    ///
    /// After this, @x2, @y2 will be the new current point.
    ///
    /// <picture>
    ///   <source srcset="conic-dark.png" media="(prefers-color-scheme: dark)">
    ///   <img alt="Conic To" src="conic-light.png">
    /// </picture>
    /// ## `x1`
    /// x coordinate of control point
    /// ## `y1`
    /// y coordinate of control point
    /// ## `x2`
    /// x coordinate of the end of the curve
    /// ## `y2`
    /// y coordinate of the end of the curve
    /// ## `weight`
    /// weight of the control point, must be greater than zero
    #[doc(alias = "gsk_path_builder_conic_to")]
    pub fn conic_to(&self, x1: f32, y1: f32, x2: f32, y2: f32, weight: f32) {
        unsafe {
            ffi::gsk_path_builder_conic_to(self.to_glib_none().0, x1, y1, x2, y2, weight);
        }
    }

    /// Adds a [cubic Bézier curve](https://en.wikipedia.org/wiki/B`C3``A9zier_curve`)
    /// from the current point to @x3, @y3 with @x1, @y1 and @x2, @y2 as the control
    /// points.
    ///
    /// After this, @x3, @y3 will be the new current point.
    ///
    /// <picture>
    ///   <source srcset="cubic-dark.png" media="(prefers-color-scheme: dark)">
    ///   <img alt="Cubic To" src="cubic-light.png">
    /// </picture>
    /// ## `x1`
    /// x coordinate of first control point
    /// ## `y1`
    /// y coordinate of first control point
    /// ## `x2`
    /// x coordinate of second control point
    /// ## `y2`
    /// y coordinate of second control point
    /// ## `x3`
    /// x coordinate of the end of the curve
    /// ## `y3`
    /// y coordinate of the end of the curve
    #[doc(alias = "gsk_path_builder_cubic_to")]
    pub fn cubic_to(&self, x1: f32, y1: f32, x2: f32, y2: f32, x3: f32, y3: f32) {
        unsafe {
            ffi::gsk_path_builder_cubic_to(self.to_glib_none().0, x1, y1, x2, y2, x3, y3);
        }
    }

    /// Gets the current point.
    ///
    /// The current point is used for relative drawing commands and
    /// updated after every operation.
    ///
    /// When the builder is created, the default current point is set
    /// to `0, 0`. Note that this is different from cairo, which starts
    /// out without a current point.
    ///
    /// # Returns
    ///
    /// The current point
    #[doc(alias = "gsk_path_builder_get_current_point")]
    #[doc(alias = "get_current_point")]
    pub fn current_point(&self) -> graphene::Point {
        unsafe {
            from_glib_none(ffi::gsk_path_builder_get_current_point(
                self.to_glib_none().0,
            ))
        }
    }

    /// Implements arc-to according to the HTML Canvas spec.
    ///
    /// A convenience function that implements the
    /// [HTML arc_to](https://html.spec.whatwg.org/multipage/canvas.html#dom-context-2d-arcto-dev)
    /// functionality.
    ///
    /// After this, the current point will be the point where
    /// the circle with the given radius touches the line from
    /// @x1, @y1 to @x2, @y2.
    /// ## `x1`
    /// X coordinate of first control point
    /// ## `y1`
    /// Y coordinate of first control point
    /// ## `x2`
    /// X coordinate of second control point
    /// ## `y2`
    /// Y coordinate of second control point
    /// ## `radius`
    /// Radius of the circle
    #[doc(alias = "gsk_path_builder_html_arc_to")]
    pub fn html_arc_to(&self, x1: f32, y1: f32, x2: f32, y2: f32, radius: f32) {
        unsafe {
            ffi::gsk_path_builder_html_arc_to(self.to_glib_none().0, x1, y1, x2, y2, radius);
        }
    }

    /// Draws a line from the current point to @x, @y and makes it
    /// the new current point.
    ///
    /// <picture>
    ///   <source srcset="line-dark.png" media="(prefers-color-scheme: dark)">
    ///   <img alt="Line To" src="line-light.png">
    /// </picture>
    /// ## `x`
    /// x coordinate
    /// ## `y`
    /// y coordinate
    #[doc(alias = "gsk_path_builder_line_to")]
    pub fn line_to(&self, x: f32, y: f32) {
        unsafe {
            ffi::gsk_path_builder_line_to(self.to_glib_none().0, x, y);
        }
    }

    /// Starts a new contour by placing the pen at @x, @y.
    ///
    /// If this function is called twice in succession, the first
    /// call will result in a contour made up of a single point.
    /// The second call will start a new contour.
    /// ## `x`
    /// x coordinate
    /// ## `y`
    /// y coordinate
    #[doc(alias = "gsk_path_builder_move_to")]
    pub fn move_to(&self, x: f32, y: f32) {
        unsafe {
            ffi::gsk_path_builder_move_to(self.to_glib_none().0, x, y);
        }
    }

    /// Adds a [quadratic Bézier curve](https://en.wikipedia.org/wiki/B`C3``A9zier_curve`)
    /// from the current point to @x2, @y2 with @x1, @y1 as the control point.
    ///
    /// After this, @x2, @y2 will be the new current point.
    ///
    /// <picture>
    ///   <source srcset="quad-dark.png" media="(prefers-color-scheme: dark)">
    ///   <img alt="Quad To" src="quad-light.png">
    /// </picture>
    /// ## `x1`
    /// x coordinate of control point
    /// ## `y1`
    /// y coordinate of control point
    /// ## `x2`
    /// x coordinate of the end of the curve
    /// ## `y2`
    /// y coordinate of the end of the curve
    #[doc(alias = "gsk_path_builder_quad_to")]
    pub fn quad_to(&self, x1: f32, y1: f32, x2: f32, y2: f32) {
        unsafe {
            ffi::gsk_path_builder_quad_to(self.to_glib_none().0, x1, y1, x2, y2);
        }
    }

    /// Adds an elliptical arc from the current point to @x3, @y3
    /// with @x1, @y1 determining the tangent directions.
    ///
    /// All coordinates are given relative to the current point.
    ///
    /// This is the relative version of [`arc_to()`][Self::arc_to()].
    /// ## `x1`
    /// x coordinate of first control point
    /// ## `y1`
    /// y coordinate of first control point
    /// ## `x2`
    /// x coordinate of second control point
    /// ## `y2`
    /// y coordinate of second control point
    #[doc(alias = "gsk_path_builder_rel_arc_to")]
    pub fn rel_arc_to(&self, x1: f32, y1: f32, x2: f32, y2: f32) {
        unsafe {
            ffi::gsk_path_builder_rel_arc_to(self.to_glib_none().0, x1, y1, x2, y2);
        }
    }

    /// Adds a [conic curve](https://en.wikipedia.org/wiki/Non-uniform_rational_B-spline)
    /// from the current point to @x2, @y2 with the given @weight and @x1, @y1 as the
    /// control point.
    ///
    /// All coordinates are given relative to the current point.
    ///
    /// This is the relative version of [`conic_to()`][Self::conic_to()].
    /// ## `x1`
    /// x offset of control point
    /// ## `y1`
    /// y offset of control point
    /// ## `x2`
    /// x offset of the end of the curve
    /// ## `y2`
    /// y offset of the end of the curve
    /// ## `weight`
    /// weight of the curve, must be greater than zero
    #[doc(alias = "gsk_path_builder_rel_conic_to")]
    pub fn rel_conic_to(&self, x1: f32, y1: f32, x2: f32, y2: f32, weight: f32) {
        unsafe {
            ffi::gsk_path_builder_rel_conic_to(self.to_glib_none().0, x1, y1, x2, y2, weight);
        }
    }

    /// Adds a [cubic Bézier curve](https://en.wikipedia.org/wiki/B`C3``A9zier_curve`)
    /// from the current point to @x3, @y3 with @x1, @y1 and @x2, @y2 as the control
    /// points.
    ///
    /// All coordinates are given relative to the current point.
    ///
    /// This is the relative version of [`cubic_to()`][Self::cubic_to()].
    /// ## `x1`
    /// x offset of first control point
    /// ## `y1`
    /// y offset of first control point
    /// ## `x2`
    /// x offset of second control point
    /// ## `y2`
    /// y offset of second control point
    /// ## `x3`
    /// x offset of the end of the curve
    /// ## `y3`
    /// y offset of the end of the curve
    #[doc(alias = "gsk_path_builder_rel_cubic_to")]
    pub fn rel_cubic_to(&self, x1: f32, y1: f32, x2: f32, y2: f32, x3: f32, y3: f32) {
        unsafe {
            ffi::gsk_path_builder_rel_cubic_to(self.to_glib_none().0, x1, y1, x2, y2, x3, y3);
        }
    }

    /// Implements arc-to according to the HTML Canvas spec.
    ///
    /// All coordinates are given relative to the current point.
    ///
    /// This is the relative version of [`html_arc_to()`][Self::html_arc_to()].
    /// ## `x1`
    /// X coordinate of first control point
    /// ## `y1`
    /// Y coordinate of first control point
    /// ## `x2`
    /// X coordinate of second control point
    /// ## `y2`
    /// Y coordinate of second control point
    /// ## `radius`
    /// Radius of the circle
    #[doc(alias = "gsk_path_builder_rel_html_arc_to")]
    pub fn rel_html_arc_to(&self, x1: f32, y1: f32, x2: f32, y2: f32, radius: f32) {
        unsafe {
            ffi::gsk_path_builder_rel_html_arc_to(self.to_glib_none().0, x1, y1, x2, y2, radius);
        }
    }

    /// Draws a line from the current point to a point offset from it
    /// by @x, @y and makes it the new current point.
    ///
    /// This is the relative version of [`line_to()`][Self::line_to()].
    /// ## `x`
    /// x offset
    /// ## `y`
    /// y offset
    #[doc(alias = "gsk_path_builder_rel_line_to")]
    pub fn rel_line_to(&self, x: f32, y: f32) {
        unsafe {
            ffi::gsk_path_builder_rel_line_to(self.to_glib_none().0, x, y);
        }
    }

    /// Starts a new contour by placing the pen at @x, @y
    /// relative to the current point.
    ///
    /// This is the relative version of [`move_to()`][Self::move_to()].
    /// ## `x`
    /// x offset
    /// ## `y`
    /// y offset
    #[doc(alias = "gsk_path_builder_rel_move_to")]
    pub fn rel_move_to(&self, x: f32, y: f32) {
        unsafe {
            ffi::gsk_path_builder_rel_move_to(self.to_glib_none().0, x, y);
        }
    }

    /// Adds a [quadratic Bézier curve](https://en.wikipedia.org/wiki/B`C3``A9zier_curve`)
    /// from the current point to @x2, @y2 with @x1, @y1 the control point.
    ///
    /// All coordinates are given relative to the current point.
    ///
    /// This is the relative version of [`quad_to()`][Self::quad_to()].
    /// ## `x1`
    /// x offset of control point
    /// ## `y1`
    /// y offset of control point
    /// ## `x2`
    /// x offset of the end of the curve
    /// ## `y2`
    /// y offset of the end of the curve
    #[doc(alias = "gsk_path_builder_rel_quad_to")]
    pub fn rel_quad_to(&self, x1: f32, y1: f32, x2: f32, y2: f32) {
        unsafe {
            ffi::gsk_path_builder_rel_quad_to(self.to_glib_none().0, x1, y1, x2, y2);
        }
    }

    /// Implements arc-to according to the SVG spec.
    ///
    /// All coordinates are given relative to the current point.
    ///
    /// This is the relative version of [`svg_arc_to()`][Self::svg_arc_to()].
    /// ## `rx`
    /// X radius
    /// ## `ry`
    /// Y radius
    /// ## `x_axis_rotation`
    /// the rotation of the ellipsis
    /// ## `large_arc`
    /// whether to add the large arc
    /// ## `positive_sweep`
    /// whether to sweep in the positive direction
    /// ## `x`
    /// the X coordinate of the endpoint
    /// ## `y`
    /// the Y coordinate of the endpoint
    #[doc(alias = "gsk_path_builder_rel_svg_arc_to")]
    pub fn rel_svg_arc_to(
        &self,
        rx: f32,
        ry: f32,
        x_axis_rotation: f32,
        large_arc: bool,
        positive_sweep: bool,
        x: f32,
        y: f32,
    ) {
        unsafe {
            ffi::gsk_path_builder_rel_svg_arc_to(
                self.to_glib_none().0,
                rx,
                ry,
                x_axis_rotation,
                large_arc.into_glib(),
                positive_sweep.into_glib(),
                x,
                y,
            );
        }
    }

    /// Implements arc-to according to the SVG spec.
    ///
    /// A convenience function that implements the
    /// [SVG arc_to](https://www.w3.org/TR/SVG11/paths.html#PathDataEllipticalArcCommands)
    /// functionality.
    ///
    /// After this, @x, @y will be the new current point.
    /// ## `rx`
    /// X radius
    /// ## `ry`
    /// Y radius
    /// ## `x_axis_rotation`
    /// the rotation of the ellipsis
    /// ## `large_arc`
    /// whether to add the large arc
    /// ## `positive_sweep`
    /// whether to sweep in the positive direction
    /// ## `x`
    /// the X coordinate of the endpoint
    /// ## `y`
    /// the Y coordinate of the endpoint
    #[doc(alias = "gsk_path_builder_svg_arc_to")]
    pub fn svg_arc_to(
        &self,
        rx: f32,
        ry: f32,
        x_axis_rotation: f32,
        large_arc: bool,
        positive_sweep: bool,
        x: f32,
        y: f32,
    ) {
        unsafe {
            ffi::gsk_path_builder_svg_arc_to(
                self.to_glib_none().0,
                rx,
                ry,
                x_axis_rotation,
                large_arc.into_glib(),
                positive_sweep.into_glib(),
                x,
                y,
            );
        }
    }

    /// Creates a new [`Path`][crate::Path] from the given builder.
    ///
    /// The given [`PathBuilder`][crate::PathBuilder] is reset once this function returns;
    /// you cannot call this function multiple times on the same builder
    /// instance.
    ///
    /// This function is intended primarily for language bindings.
    /// C code should use `Gsk::PathBuilder::free_to_path()`.
    ///
    /// # Returns
    ///
    /// the newly created [`Path`][crate::Path]
    ///   with all the contours added to the builder
    #[doc(alias = "gsk_path_builder_to_path")]
    pub fn to_path(&self) -> Path {
        unsafe { from_glib_full(ffi::gsk_path_builder_to_path(self.to_glib_none().0)) }
    }
}

#[cfg(feature = "v4_14")]
#[cfg_attr(docsrs, doc(cfg(feature = "v4_14")))]
impl Default for PathBuilder {
    fn default() -> Self {
        Self::new()
    }
}