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
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
// Generated by gir (https://github.com/gtk-rs/gir @ 5c4134d75fd1)
// from
// from gir-files (https://github.com/gtk-rs/gir-files.git @ fa73af2178bc)
// DO NOT EDIT

#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]
#![allow(
    clippy::approx_constant,
    clippy::type_complexity,
    clippy::unreadable_literal,
    clippy::upper_case_acronyms
)]
#![cfg_attr(docsrs, feature(doc_cfg))]

use gdk_sys as gdk;
use gio_sys as gio;
use glib_sys as glib;
use gobject_sys as gobject;
use gtk_sys as gtk;
use pango_sys as pango;

#[allow(unused_imports)]
use libc::{
    c_char, c_double, c_float, c_int, c_long, c_short, c_uchar, c_uint, c_ulong, c_ushort, c_void,
    intptr_t, off_t, size_t, ssize_t, time_t, uintptr_t, FILE,
};
#[cfg(unix)]
#[allow(unused_imports)]
use libc::{dev_t, gid_t, pid_t, socklen_t, uid_t};

#[allow(unused_imports)]
use glib::{gboolean, gconstpointer, gpointer, GType};

// Enums
pub type HeAboutWindowLicenses = c_int;
pub const HE_ABOUT_WINDOW_LICENSES_GPLV3: HeAboutWindowLicenses = 0;
pub const HE_ABOUT_WINDOW_LICENSES_MIT: HeAboutWindowLicenses = 1;
pub const HE_ABOUT_WINDOW_LICENSES_MPLV2: HeAboutWindowLicenses = 2;
pub const HE_ABOUT_WINDOW_LICENSES_UNLICENSE: HeAboutWindowLicenses = 3;
pub const HE_ABOUT_WINDOW_LICENSES_APACHEV2: HeAboutWindowLicenses = 4;
pub const HE_ABOUT_WINDOW_LICENSES_WTFPL: HeAboutWindowLicenses = 5;
pub const HE_ABOUT_WINDOW_LICENSES_PROPRIETARY: HeAboutWindowLicenses = 6;

pub type HeAnimationState = c_int;
pub const HE_ANIMATION_STATE_IDLE: HeAnimationState = 0;
pub const HE_ANIMATION_STATE_PAUSED: HeAnimationState = 1;
pub const HE_ANIMATION_STATE_PLAYING: HeAnimationState = 2;
pub const HE_ANIMATION_STATE_FINISHED: HeAnimationState = 3;

pub type HeBannerStyle = c_int;
pub const HE_BANNER_STYLE_INFO: HeBannerStyle = 0;
pub const HE_BANNER_STYLE_WARNING: HeBannerStyle = 1;
pub const HE_BANNER_STYLE_ERROR: HeBannerStyle = 2;

pub type HeBottomBarPosition = c_int;
pub const HE_BOTTOM_BAR_POSITION_LEFT: HeBottomBarPosition = 0;
pub const HE_BOTTOM_BAR_POSITION_RIGHT: HeBottomBarPosition = 1;

pub type HeColors = c_int;
pub const HE_COLORS_NONE: HeColors = 0;
pub const HE_COLORS_RED: HeColors = 1;
pub const HE_COLORS_ORANGE: HeColors = 2;
pub const HE_COLORS_YELLOW: HeColors = 3;
pub const HE_COLORS_GREEN: HeColors = 4;
pub const HE_COLORS_BLUE: HeColors = 5;
pub const HE_COLORS_INDIGO: HeColors = 6;
pub const HE_COLORS_PURPLE: HeColors = 7;
pub const HE_COLORS_PINK: HeColors = 8;
pub const HE_COLORS_MINT: HeColors = 9;
pub const HE_COLORS_BROWN: HeColors = 10;
pub const HE_COLORS_LIGHT: HeColors = 11;
pub const HE_COLORS_DARK: HeColors = 12;

pub type HeContentBlockImageClusterImagePosition = c_int;
pub const HE_CONTENT_BLOCK_IMAGE_CLUSTER_IMAGE_POSITION_TOP_LEFT:
    HeContentBlockImageClusterImagePosition = 0;
pub const HE_CONTENT_BLOCK_IMAGE_CLUSTER_IMAGE_POSITION_BOTTOM_LEFT:
    HeContentBlockImageClusterImagePosition = 1;
pub const HE_CONTENT_BLOCK_IMAGE_CLUSTER_IMAGE_POSITION_TOP_RIGHT:
    HeContentBlockImageClusterImagePosition = 2;
pub const HE_CONTENT_BLOCK_IMAGE_CLUSTER_IMAGE_POSITION_BOTTOM_RIGHT:
    HeContentBlockImageClusterImagePosition = 3;

pub type HeDesktopColorScheme = c_int;
pub const HE_DESKTOP_COLOR_SCHEME_NO_PREFERENCE: HeDesktopColorScheme = 0;
pub const HE_DESKTOP_COLOR_SCHEME_DARK: HeDesktopColorScheme = 1;
pub const HE_DESKTOP_COLOR_SCHEME_LIGHT: HeDesktopColorScheme = 2;

pub type HeDesktopEnsorScheme = c_int;
pub const HE_DESKTOP_ENSOR_SCHEME_DEFAULT: HeDesktopEnsorScheme = 0;
pub const HE_DESKTOP_ENSOR_SCHEME_VIBRANT: HeDesktopEnsorScheme = 1;
pub const HE_DESKTOP_ENSOR_SCHEME_MUTED: HeDesktopEnsorScheme = 2;
pub const HE_DESKTOP_ENSOR_SCHEME_MONOCHROMATIC: HeDesktopEnsorScheme = 3;
pub const HE_DESKTOP_ENSOR_SCHEME_SALAD: HeDesktopEnsorScheme = 4;

pub type HeEasing = c_int;
pub const HE_EASING_LINEAR: HeEasing = 0;
pub const HE_EASING_EASE_OUT_CUBIC: HeEasing = 1;
pub const HE_EASING_EASE_IN_OUT_BOUNCE: HeEasing = 2;

pub type HeModifierBadgeAlignment = c_int;
pub const HE_MODIFIER_BADGE_ALIGNMENT_LEFT: HeModifierBadgeAlignment = 0;
pub const HE_MODIFIER_BADGE_ALIGNMENT_CENTER: HeModifierBadgeAlignment = 1;
pub const HE_MODIFIER_BADGE_ALIGNMENT_RIGHT: HeModifierBadgeAlignment = 2;

pub type HeOverlayButtonAlignment = c_int;
pub const HE_OVERLAY_BUTTON_ALIGNMENT_LEFT: HeOverlayButtonAlignment = 0;
pub const HE_OVERLAY_BUTTON_ALIGNMENT_CENTER: HeOverlayButtonAlignment = 1;
pub const HE_OVERLAY_BUTTON_ALIGNMENT_RIGHT: HeOverlayButtonAlignment = 2;

pub type HeOverlayButtonSize = c_int;
pub const HE_OVERLAY_BUTTON_SIZE_SMALL: HeOverlayButtonSize = 0;
pub const HE_OVERLAY_BUTTON_SIZE_MEDIUM: HeOverlayButtonSize = 1;
pub const HE_OVERLAY_BUTTON_SIZE_LARGE: HeOverlayButtonSize = 2;

pub type HeOverlayButtonTypeButton = c_int;
pub const HE_OVERLAY_BUTTON_TYPE_BUTTON_SURFACE: HeOverlayButtonTypeButton = 0;
pub const HE_OVERLAY_BUTTON_TYPE_BUTTON_PRIMARY: HeOverlayButtonTypeButton = 1;
pub const HE_OVERLAY_BUTTON_TYPE_BUTTON_SECONDARY: HeOverlayButtonTypeButton = 2;
pub const HE_OVERLAY_BUTTON_TYPE_BUTTON_TERTIARY: HeOverlayButtonTypeButton = 3;

pub type HeSchemeVariant = c_int;
pub const HE_SCHEME_VARIANT_DEFAULT: HeSchemeVariant = 0;
pub const HE_SCHEME_VARIANT_VIBRANT: HeSchemeVariant = 1;
pub const HE_SCHEME_VARIANT_MUTED: HeSchemeVariant = 2;
pub const HE_SCHEME_VARIANT_MONOCHROME: HeSchemeVariant = 3;
pub const HE_SCHEME_VARIANT_SALAD: HeSchemeVariant = 4;
pub const HE_SCHEME_VARIANT_CONTENT: HeSchemeVariant = 5;

pub type HeTabSwitcherTabBarBehavior = c_int;
pub const HE_TAB_SWITCHER_TAB_BAR_BEHAVIOR_ALWAYS: HeTabSwitcherTabBarBehavior = 0;
pub const HE_TAB_SWITCHER_TAB_BAR_BEHAVIOR_SINGLE: HeTabSwitcherTabBarBehavior = 1;
pub const HE_TAB_SWITCHER_TAB_BAR_BEHAVIOR_NEVER: HeTabSwitcherTabBarBehavior = 2;

pub type HeTipViewStyle = c_int;
pub const HE_TIP_VIEW_STYLE_NONE: HeTipViewStyle = 0;
pub const HE_TIP_VIEW_STYLE_POPUP: HeTipViewStyle = 1;
pub const HE_TIP_VIEW_STYLE_VIEW: HeTipViewStyle = 2;

pub type HeTonePolarity = c_int;
pub const HE_TONE_POLARITY_DARKER: HeTonePolarity = 0;
pub const HE_TONE_POLARITY_LIGHTER: HeTonePolarity = 1;
pub const HE_TONE_POLARITY_NEARER: HeTonePolarity = 2;
pub const HE_TONE_POLARITY_FARTHER: HeTonePolarity = 3;

// Callbacks
pub type HeAnimationTargetFunc = Option<unsafe extern "C" fn(c_double, *mut c_void)>;
pub type HeBackgroundFunc =
    Option<unsafe extern "C" fn(*mut HeDynamicScheme, *mut c_void) -> *mut HeDynamicColor>;
pub type HePaletteFunc =
    Option<unsafe extern "C" fn(*mut HeDynamicScheme, *mut c_void) -> *mut HeTonalPalette>;
pub type HeToneDeltaPairFunc =
    Option<unsafe extern "C" fn(*mut HeDynamicScheme, *mut c_void) -> *mut HeToneDeltaPair>;
pub type HeToneFunc = Option<unsafe extern "C" fn(*mut HeDynamicScheme, *mut c_void) -> c_double>;

// Records
#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeAboutWindowClass {
    pub parent_class: HeWindowClass,
}

impl ::std::fmt::Debug for HeAboutWindowClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeAboutWindowClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeAboutWindowPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeAboutWindowPrivate = _HeAboutWindowPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeAnimationClass {
    pub parent_class: gobject::GObjectClass,
    pub estimate_duration: Option<unsafe extern "C" fn(*mut HeAnimation) -> c_uint>,
    pub calculate_value: Option<unsafe extern "C" fn(*mut HeAnimation, c_uint) -> c_double>,
}

impl ::std::fmt::Debug for HeAnimationClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeAnimationClass @ {self:p}"))
            .field("estimate_duration", &self.estimate_duration)
            .field("calculate_value", &self.calculate_value)
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeAnimationPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeAnimationPrivate = _HeAnimationPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeAnimationTargetClass {
    pub parent_class: gobject::GObjectClass,
    pub set_value: Option<unsafe extern "C" fn(*mut HeAnimationTarget, c_double)>,
}

impl ::std::fmt::Debug for HeAnimationTargetClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeAnimationTargetClass @ {self:p}"))
            .field("set_value", &self.set_value)
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeAnimationTargetPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeAnimationTargetPrivate = _HeAnimationTargetPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeAppBarClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeAppBarClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeAppBarClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeAppBarPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeAppBarPrivate = _HeAppBarPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeApplicationClass {
    pub parent_class: gtk::GtkApplicationClass,
}

impl ::std::fmt::Debug for HeApplicationClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeApplicationClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeApplicationPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeApplicationPrivate = _HeApplicationPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeApplicationWindowClass {
    pub parent_class: gtk::GtkApplicationWindowClass,
}

impl ::std::fmt::Debug for HeApplicationWindowClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeApplicationWindowClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeApplicationWindowPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeApplicationWindowPrivate = _HeApplicationWindowPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeAvatarClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeAvatarClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeAvatarClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeAvatarPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeAvatarPrivate = _HeAvatarPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeBadgeClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeBadgeClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeBadgeClass @ {self:p}")).finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeBadgePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeBadgePrivate = _HeBadgePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeBannerClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeBannerClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeBannerClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeBannerPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeBannerPrivate = _HeBannerPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeBinClass {
    pub parent_class: gtk::GtkWidgetClass,
    pub add_child: Option<
        unsafe extern "C" fn(
            *mut HeBin,
            *mut gtk::GtkBuilder,
            *mut gobject::GObject,
            *const c_char,
        ),
    >,
}

impl ::std::fmt::Debug for HeBinClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeBinClass @ {self:p}"))
            .field("add_child", &self.add_child)
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeBinPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeBinPrivate = _HeBinPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeBottomBarClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeBottomBarClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeBottomBarClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeBottomBarPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeBottomBarPrivate = _HeBottomBarPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeBottomSheetClass {
    pub parent_class: gtk::GtkWidgetClass,
}

impl ::std::fmt::Debug for HeBottomSheetClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeBottomSheetClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeBottomSheetPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeBottomSheetPrivate = _HeBottomSheetPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeButtonClass {
    pub parent_class: gtk::GtkButtonClass,
}

impl ::std::fmt::Debug for HeButtonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeButtonClass @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeButtonContentClass {
    pub parent_class: gtk::GtkWidgetClass,
}

impl ::std::fmt::Debug for HeButtonContentClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeButtonContentClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeButtonContentPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeButtonContentPrivate = _HeButtonContentPrivate;

#[repr(C)]
#[allow(dead_code)]
pub struct _HeButtonPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeButtonPrivate = _HeButtonPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeCAM16Color {
    pub j: c_double,
    pub a: c_double,
    pub b: c_double,
    pub c: c_double,
    pub h: c_double,
    pub m: c_double,
    pub s: c_double,
}

impl ::std::fmt::Debug for HeCAM16Color {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeCAM16Color @ {self:p}"))
            .field("j", &self.j)
            .field("a", &self.a)
            .field("b", &self.b)
            .field("c", &self.c)
            .field("h", &self.h)
            .field("m", &self.m)
            .field("s", &self.s)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeCallbackAnimationTargetClass {
    pub parent_class: HeAnimationTargetClass,
}

impl ::std::fmt::Debug for HeCallbackAnimationTargetClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeCallbackAnimationTargetClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeCallbackAnimationTargetPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeCallbackAnimationTargetPrivate = _HeCallbackAnimationTargetPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeChipClass {
    pub parent_class: gtk::GtkToggleButtonClass,
}

impl ::std::fmt::Debug for HeChipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeChipClass @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeChipGroupClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeChipGroupClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeChipGroupClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeChipGroupPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeChipGroupPrivate = _HeChipGroupPrivate;

#[repr(C)]
#[allow(dead_code)]
pub struct _HeChipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeChipPrivate = _HeChipPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContentBlockClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeContentBlockClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContentBlockClass @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContentBlockImageClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeContentBlockImageClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContentBlockImageClass @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContentBlockImageClusterClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeContentBlockImageClusterClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContentBlockImageClusterClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeContentBlockImageClusterPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeContentBlockImageClusterPrivate = _HeContentBlockImageClusterPrivate;

#[repr(C)]
#[allow(dead_code)]
pub struct _HeContentBlockImagePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeContentBlockImagePrivate = _HeContentBlockImagePrivate;

#[repr(C)]
#[allow(dead_code)]
pub struct _HeContentBlockPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeContentBlockPrivate = _HeContentBlockPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContentListClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeContentListClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContentListClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeContentListPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeContentListPrivate = _HeContentListPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContentSchemeClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeContentSchemeClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContentSchemeClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeContentSchemePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeContentSchemePrivate = _HeContentSchemePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContrastClass {
    pub parent_class: gobject::GTypeClass,
}

impl ::std::fmt::Debug for HeContrastClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContrastClass @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContrastCurveClass {
    pub parent_class: gobject::GTypeClass,
}

impl ::std::fmt::Debug for HeContrastCurveClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContrastCurveClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeContrastCurvePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeContrastCurvePrivate = _HeContrastCurvePrivate;

#[repr(C)]
#[allow(dead_code)]
pub struct _HeContrastPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeContrastPrivate = _HeContrastPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDatePickerClass {
    pub parent_class: gtk::GtkEntryClass,
}

impl ::std::fmt::Debug for HeDatePickerClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDatePickerClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeDatePickerPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeDatePickerPrivate = _HeDatePickerPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDefaultSchemeClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeDefaultSchemeClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDefaultSchemeClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeDefaultSchemePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeDefaultSchemePrivate = _HeDefaultSchemePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDesktopClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeDesktopClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDesktopClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeDesktopPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeDesktopPrivate = _HeDesktopPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDialogClass {
    pub parent_class: HeWindowClass,
}

impl ::std::fmt::Debug for HeDialogClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDialogClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeDialogPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeDialogPrivate = _HeDialogPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDividerClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeDividerClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDividerClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeDividerPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeDividerPrivate = _HeDividerPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDropdownClass {
    pub parent_class: gtk::GtkGridClass,
}

impl ::std::fmt::Debug for HeDropdownClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDropdownClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeDropdownPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeDropdownPrivate = _HeDropdownPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDynamicColorClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeDynamicColorClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDynamicColorClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeDynamicColorPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeDynamicColorPrivate = _HeDynamicColorPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDynamicSchemeClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeDynamicSchemeClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDynamicSchemeClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeDynamicSchemePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeDynamicSchemePrivate = _HeDynamicSchemePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeEmptyPageClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeEmptyPageClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeEmptyPageClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeEmptyPagePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeEmptyPagePrivate = _HeEmptyPagePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeHCTColor {
    pub h: c_double,
    pub c: c_double,
    pub t: c_double,
    pub a: c_int,
}

impl ::std::fmt::Debug for HeHCTColor {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeHCTColor @ {self:p}"))
            .field("h", &self.h)
            .field("c", &self.c)
            .field("t", &self.t)
            .field("a", &self.a)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeKeyColorClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeKeyColorClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeKeyColorClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeKeyColorPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeKeyColorPrivate = _HeKeyColorPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeLABColor {
    pub l: c_double,
    pub a: c_double,
    pub b: c_double,
}

impl ::std::fmt::Debug for HeLABColor {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeLABColor @ {self:p}"))
            .field("l", &self.l)
            .field("a", &self.a)
            .field("b", &self.b)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeLCHColor {
    pub l: c_double,
    pub c: c_double,
    pub h: c_double,
}

impl ::std::fmt::Debug for HeLCHColor {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeLCHColor @ {self:p}"))
            .field("l", &self.l)
            .field("c", &self.c)
            .field("h", &self.h)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeMiniContentBlockClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeMiniContentBlockClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeMiniContentBlockClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeMiniContentBlockPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeMiniContentBlockPrivate = _HeMiniContentBlockPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeModifierBadgeClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeModifierBadgeClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeModifierBadgeClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeModifierBadgePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeModifierBadgePrivate = _HeModifierBadgePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeMonochromaticSchemeClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeMonochromaticSchemeClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeMonochromaticSchemeClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeMonochromaticSchemePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeMonochromaticSchemePrivate = _HeMonochromaticSchemePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeMutedSchemeClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeMutedSchemeClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeMutedSchemeClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeMutedSchemePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeMutedSchemePrivate = _HeMutedSchemePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeNavigationRailClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeNavigationRailClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeNavigationRailClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeNavigationRailPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeNavigationRailPrivate = _HeNavigationRailPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeNavigationSectionClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeNavigationSectionClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeNavigationSectionClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeNavigationSectionPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeNavigationSectionPrivate = _HeNavigationSectionPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeOverlayButtonClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeOverlayButtonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeOverlayButtonClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeOverlayButtonPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeOverlayButtonPrivate = _HeOverlayButtonPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeProgressBarClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeProgressBarClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeProgressBarClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeProgressBarPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeProgressBarPrivate = _HeProgressBarPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HePropertyAnimationTargetClass {
    pub parent_class: HeAnimationTargetClass,
}

impl ::std::fmt::Debug for HePropertyAnimationTargetClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HePropertyAnimationTargetClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HePropertyAnimationTargetPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HePropertyAnimationTargetPrivate = _HePropertyAnimationTargetPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeQuantizerCelebiClass {
    pub parent_class: gobject::GTypeClass,
}

impl ::std::fmt::Debug for HeQuantizerCelebiClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeQuantizerCelebiClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeQuantizerCelebiPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeQuantizerCelebiPrivate = _HeQuantizerCelebiPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeQuantizerClass {
    pub parent_class: gobject::GObjectClass,
    pub quantize: Option<
        unsafe extern "C" fn(*mut HeQuantizer, *mut c_int, c_int, c_int) -> *mut HeQuantizerResult,
    >,
}

impl ::std::fmt::Debug for HeQuantizerClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeQuantizerClass @ {self:p}"))
            .field("quantize", &self.quantize)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeQuantizerMapClass {
    pub parent_class: HeQuantizerClass,
}

impl ::std::fmt::Debug for HeQuantizerMapClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeQuantizerMapClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeQuantizerMapPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeQuantizerMapPrivate = _HeQuantizerMapPrivate;

#[repr(C)]
#[allow(dead_code)]
pub struct _HeQuantizerPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeQuantizerPrivate = _HeQuantizerPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeQuantizerResultClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeQuantizerResultClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeQuantizerResultClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeQuantizerResultPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeQuantizerResultPrivate = _HeQuantizerResultPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeQuantizerWsmeansClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeQuantizerWsmeansClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeQuantizerWsmeansClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeQuantizerWsmeansPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeQuantizerWsmeansPrivate = _HeQuantizerWsmeansPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeQuantizerWuClass {
    pub parent_class: HeQuantizerClass,
}

impl ::std::fmt::Debug for HeQuantizerWuClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeQuantizerWuClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeQuantizerWuPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeQuantizerWuPrivate = _HeQuantizerWuPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeRGBColor {
    pub r: c_double,
    pub g: c_double,
    pub b: c_double,
}

impl ::std::fmt::Debug for HeRGBColor {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeRGBColor @ {self:p}"))
            .field("r", &self.r)
            .field("g", &self.g)
            .field("b", &self.b)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSaladSchemeClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeSaladSchemeClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSaladSchemeClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSaladSchemePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSaladSchemePrivate = _HeSaladSchemePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSchemeClass {
    pub parent_class: gobject::GTypeClass,
}

impl ::std::fmt::Debug for HeSchemeClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSchemeClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSchemePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSchemePrivate = _HeSchemePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeScoreAnnotatedColorClass {
    pub parent_class: gobject::GTypeClass,
}

impl ::std::fmt::Debug for HeScoreAnnotatedColorClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeScoreAnnotatedColorClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeScoreAnnotatedColorPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeScoreAnnotatedColorPrivate = _HeScoreAnnotatedColorPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeScoreClass {
    pub parent_class: gobject::GTypeClass,
}

impl ::std::fmt::Debug for HeScoreClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeScoreClass @ {self:p}")).finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeScorePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeScorePrivate = _HeScorePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSegmentedButtonClass {
    pub parent_class: gtk::GtkBoxClass,
}

impl ::std::fmt::Debug for HeSegmentedButtonClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSegmentedButtonClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSegmentedButtonPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSegmentedButtonPrivate = _HeSegmentedButtonPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSettingsListClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeSettingsListClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSettingsListClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSettingsListPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSettingsListPrivate = _HeSettingsListPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSettingsPageClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeSettingsPageClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSettingsPageClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSettingsPagePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSettingsPagePrivate = _HeSettingsPagePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSettingsRowClass {
    pub parent_class: gtk::GtkListBoxRowClass,
}

impl ::std::fmt::Debug for HeSettingsRowClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSettingsRowClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSettingsRowPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSettingsRowPrivate = _HeSettingsRowPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSettingsWindowClass {
    pub parent_class: HeWindowClass,
}

impl ::std::fmt::Debug for HeSettingsWindowClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSettingsWindowClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSettingsWindowPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSettingsWindowPrivate = _HeSettingsWindowPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSideBarClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeSideBarClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSideBarClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSideBarPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSideBarPrivate = _HeSideBarPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSliderClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeSliderClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSliderClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSliderPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSliderPrivate = _HeSliderPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSpringAnimationClass {
    pub parent_class: HeAnimationClass,
}

impl ::std::fmt::Debug for HeSpringAnimationClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSpringAnimationClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSpringAnimationPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSpringAnimationPrivate = _HeSpringAnimationPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSpringParamsClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeSpringParamsClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSpringParamsClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSpringParamsPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSpringParamsPrivate = _HeSpringParamsPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeStyleManagerClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeStyleManagerClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeStyleManagerClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeStyleManagerPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeStyleManagerPrivate = _HeStyleManagerPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSwitchBarClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeSwitchBarClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSwitchBarClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSwitchBarPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSwitchBarPrivate = _HeSwitchBarPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSwitchClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeSwitchClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSwitchClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeSwitchPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeSwitchPrivate = _HeSwitchPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTabClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeTabClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTabClass @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTabPageClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeTabPageClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTabPageClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeTabPagePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeTabPagePrivate = _HeTabPagePrivate;

#[repr(C)]
#[allow(dead_code)]
pub struct _HeTabPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeTabPrivate = _HeTabPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTabSwitcherClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeTabSwitcherClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTabSwitcherClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeTabSwitcherPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeTabSwitcherPrivate = _HeTabSwitcherPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTemperatureCacheClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeTemperatureCacheClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTemperatureCacheClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeTemperatureCachePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeTemperatureCachePrivate = _HeTemperatureCachePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTextFieldClass {
    pub parent_class: gtk::GtkListBoxRowClass,
}

impl ::std::fmt::Debug for HeTextFieldClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTextFieldClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeTextFieldPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeTextFieldPrivate = _HeTextFieldPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTimePickerClass {
    pub parent_class: gtk::GtkEntryClass,
}

impl ::std::fmt::Debug for HeTimePickerClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTimePickerClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeTimePickerPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeTimePickerPrivate = _HeTimePickerPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTimedAnimationClass {
    pub parent_class: HeAnimationClass,
}

impl ::std::fmt::Debug for HeTimedAnimationClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTimedAnimationClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeTimedAnimationPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeTimedAnimationPrivate = _HeTimedAnimationPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTipClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeTipClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTipClass @ {self:p}")).finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeTipPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeTipPrivate = _HeTipPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTipViewClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeTipViewClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTipViewClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeTipViewPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeTipViewPrivate = _HeTipViewPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeToastClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeToastClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeToastClass @ {self:p}")).finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeToastPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeToastPrivate = _HeToastPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTonalPaletteClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeTonalPaletteClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTonalPaletteClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeTonalPalettePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeTonalPalettePrivate = _HeTonalPalettePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeToneDeltaPairClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeToneDeltaPairClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeToneDeltaPairClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeToneDeltaPairPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeToneDeltaPairPrivate = _HeToneDeltaPairPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeVibrantSchemeClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeVibrantSchemeClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeVibrantSchemeClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeVibrantSchemePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeVibrantSchemePrivate = _HeVibrantSchemePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewAuxClass {
    pub parent_class: HeViewClass,
}

impl ::std::fmt::Debug for HeViewAuxClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewAuxClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeViewAuxPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeViewAuxPrivate = _HeViewAuxPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewChooserClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeViewChooserClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewChooserClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeViewChooserPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeViewChooserPrivate = _HeViewChooserPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewClass {
    pub parent_class: gtk::GtkWidgetClass,
    pub add_child: Option<
        unsafe extern "C" fn(
            *mut HeView,
            *mut gtk::GtkBuilder,
            *mut gobject::GObject,
            *const c_char,
        ),
    >,
}

impl ::std::fmt::Debug for HeViewClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewClass @ {self:p}"))
            .field("add_child", &self.add_child)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewDualClass {
    pub parent_class: gtk::GtkWidgetClass,
}

impl ::std::fmt::Debug for HeViewDualClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewDualClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeViewDualPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeViewDualPrivate = _HeViewDualPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewMonoClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeViewMonoClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewMonoClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeViewMonoPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeViewMonoPrivate = _HeViewMonoPrivate;

#[repr(C)]
#[allow(dead_code)]
pub struct _HeViewPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeViewPrivate = _HeViewPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewSubTitleClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeViewSubTitleClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewSubTitleClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeViewSubTitlePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeViewSubTitlePrivate = _HeViewSubTitlePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewSwitcherClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeViewSwitcherClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewSwitcherClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeViewSwitcherPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeViewSwitcherPrivate = _HeViewSwitcherPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewTitleClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeViewTitleClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewTitleClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeViewTitlePrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeViewTitlePrivate = _HeViewTitlePrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewingConditionsClass {
    pub parent_class: gobject::GObjectClass,
}

impl ::std::fmt::Debug for HeViewingConditionsClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewingConditionsClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeViewingConditionsPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeViewingConditionsPrivate = _HeViewingConditionsPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeWelcomeScreenClass {
    pub parent_class: HeBinClass,
}

impl ::std::fmt::Debug for HeWelcomeScreenClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeWelcomeScreenClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeWelcomeScreenPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeWelcomeScreenPrivate = _HeWelcomeScreenPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeWindowClass {
    pub parent_class: gtk::GtkWindowClass,
}

impl ::std::fmt::Debug for HeWindowClass {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeWindowClass @ {self:p}"))
            .finish()
    }
}

#[repr(C)]
#[allow(dead_code)]
pub struct _HeWindowPrivate {
    _data: [u8; 0],
    _marker: core::marker::PhantomData<(*mut u8, core::marker::PhantomPinned)>,
}

pub type HeWindowPrivate = _HeWindowPrivate;

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeXYZColor {
    pub x: c_double,
    pub y: c_double,
    pub z: c_double,
}

impl ::std::fmt::Debug for HeXYZColor {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeXYZColor @ {self:p}"))
            .field("x", &self.x)
            .field("y", &self.y)
            .field("z", &self.z)
            .finish()
    }
}

// Classes
#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeAboutWindow {
    pub parent_instance: HeWindow,
    pub priv_: *mut HeAboutWindowPrivate,
}

impl ::std::fmt::Debug for HeAboutWindow {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeAboutWindow @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeAnimation {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeAnimationPrivate,
}

impl ::std::fmt::Debug for HeAnimation {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeAnimation @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeAnimationTarget {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeAnimationTargetPrivate,
}

impl ::std::fmt::Debug for HeAnimationTarget {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeAnimationTarget @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeAppBar {
    pub parent_instance: HeBin,
    pub priv_: *mut HeAppBarPrivate,
    pub back_button: *mut HeButton,
    pub btn_box: *mut gtk::GtkBox,
}

impl ::std::fmt::Debug for HeAppBar {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeAppBar @ {self:p}"))
            .field("back_button", &self.back_button)
            .field("btn_box", &self.btn_box)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeApplication {
    pub parent_instance: gtk::GtkApplication,
    pub priv_: *mut HeApplicationPrivate,
}

impl ::std::fmt::Debug for HeApplication {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeApplication @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeApplicationWindow {
    pub parent_instance: gtk::GtkApplicationWindow,
    pub priv_: *mut HeApplicationWindowPrivate,
}

impl ::std::fmt::Debug for HeApplicationWindow {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeApplicationWindow @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeAvatar {
    pub parent_instance: HeBin,
    pub priv_: *mut HeAvatarPrivate,
}

impl ::std::fmt::Debug for HeAvatar {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeAvatar @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeBadge {
    pub parent_instance: HeBin,
    pub priv_: *mut HeBadgePrivate,
}

impl ::std::fmt::Debug for HeBadge {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeBadge @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeBanner {
    pub parent_instance: HeBin,
    pub priv_: *mut HeBannerPrivate,
}

impl ::std::fmt::Debug for HeBanner {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeBanner @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeBin {
    pub parent_instance: gtk::GtkWidget,
    pub priv_: *mut HeBinPrivate,
}

impl ::std::fmt::Debug for HeBin {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeBin @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeBottomBar {
    pub parent_instance: HeBin,
    pub priv_: *mut HeBottomBarPrivate,
}

impl ::std::fmt::Debug for HeBottomBar {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeBottomBar @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeBottomSheet {
    pub parent_instance: gtk::GtkWidget,
    pub priv_: *mut HeBottomSheetPrivate,
    pub back_button: *mut HeButton,
}

impl ::std::fmt::Debug for HeBottomSheet {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeBottomSheet @ {self:p}"))
            .field("back_button", &self.back_button)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeButton {
    pub parent_instance: gtk::GtkButton,
    pub priv_: *mut HeButtonPrivate,
}

impl ::std::fmt::Debug for HeButton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeButton @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeButtonContent {
    pub parent_instance: gtk::GtkWidget,
    pub priv_: *mut HeButtonContentPrivate,
    pub image: *mut gtk::GtkImage,
}

impl ::std::fmt::Debug for HeButtonContent {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeButtonContent @ {self:p}"))
            .field("image", &self.image)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeCallbackAnimationTarget {
    pub parent_instance: HeAnimationTarget,
    pub priv_: *mut HeCallbackAnimationTargetPrivate,
}

impl ::std::fmt::Debug for HeCallbackAnimationTarget {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeCallbackAnimationTarget @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeChip {
    pub parent_instance: gtk::GtkToggleButton,
    pub priv_: *mut HeChipPrivate,
}

impl ::std::fmt::Debug for HeChip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeChip @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeChipGroup {
    pub parent_instance: HeBin,
    pub priv_: *mut HeChipGroupPrivate,
}

impl ::std::fmt::Debug for HeChipGroup {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeChipGroup @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContentBlock {
    pub parent_instance: HeBin,
    pub priv_: *mut HeContentBlockPrivate,
}

impl ::std::fmt::Debug for HeContentBlock {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContentBlock @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContentBlockImage {
    pub parent_instance: HeBin,
    pub priv_: *mut HeContentBlockImagePrivate,
}

impl ::std::fmt::Debug for HeContentBlockImage {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContentBlockImage @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContentBlockImageCluster {
    pub parent_instance: HeBin,
    pub priv_: *mut HeContentBlockImageClusterPrivate,
}

impl ::std::fmt::Debug for HeContentBlockImageCluster {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContentBlockImageCluster @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContentList {
    pub parent_instance: HeBin,
    pub priv_: *mut HeContentListPrivate,
    pub children: *mut glib::GList,
}

impl ::std::fmt::Debug for HeContentList {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContentList @ {self:p}"))
            .field("children", &self.children)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContentScheme {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeContentSchemePrivate,
}

impl ::std::fmt::Debug for HeContentScheme {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContentScheme @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContrast {
    pub parent_instance: gobject::GTypeInstance,
    pub ref_count: c_int,
    pub priv_: *mut HeContrastPrivate,
}

impl ::std::fmt::Debug for HeContrast {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContrast @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeContrastCurve {
    pub parent_instance: gobject::GTypeInstance,
    pub ref_count: c_int,
    pub priv_: *mut HeContrastCurvePrivate,
}

impl ::std::fmt::Debug for HeContrastCurve {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeContrastCurve @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDatePicker {
    pub parent_instance: gtk::GtkEntry,
    pub priv_: *mut HeDatePickerPrivate,
}

impl ::std::fmt::Debug for HeDatePicker {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDatePicker @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDefaultScheme {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeDefaultSchemePrivate,
}

impl ::std::fmt::Debug for HeDefaultScheme {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDefaultScheme @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDesktop {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeDesktopPrivate,
}

impl ::std::fmt::Debug for HeDesktop {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDesktop @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDialog {
    pub parent_instance: HeWindow,
    pub priv_: *mut HeDialogPrivate,
    pub cancel_button: *mut HeButton,
}

impl ::std::fmt::Debug for HeDialog {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDialog @ {self:p}"))
            .field("cancel_button", &self.cancel_button)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDivider {
    pub parent_instance: HeBin,
    pub priv_: *mut HeDividerPrivate,
}

impl ::std::fmt::Debug for HeDivider {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDivider @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDropdown {
    pub parent_instance: gtk::GtkGrid,
    pub priv_: *mut HeDropdownPrivate,
}

impl ::std::fmt::Debug for HeDropdown {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDropdown @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDynamicColor {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeDynamicColorPrivate,
    pub palette: HePaletteFunc,
    pub palette_target: gpointer,
    pub tonev: HeToneFunc,
    pub tonev_target: gpointer,
    pub background: HeBackgroundFunc,
    pub background_target: gpointer,
    pub second_background: HeBackgroundFunc,
    pub second_background_target: gpointer,
    pub tone_delta_pair: HeToneDeltaPairFunc,
    pub tone_delta_pair_target: gpointer,
}

impl ::std::fmt::Debug for HeDynamicColor {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDynamicColor @ {self:p}"))
            .field("palette", &self.palette)
            .field("palette_target", &self.palette_target)
            .field("tonev", &self.tonev)
            .field("tonev_target", &self.tonev_target)
            .field("background", &self.background)
            .field("background_target", &self.background_target)
            .field("second_background", &self.second_background)
            .field("second_background_target", &self.second_background_target)
            .field("tone_delta_pair", &self.tone_delta_pair)
            .field("tone_delta_pair_target", &self.tone_delta_pair_target)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeDynamicScheme {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeDynamicSchemePrivate,
    pub hct: HeHCTColor,
    pub variant: HeSchemeVariant,
    pub is_dark: gboolean,
    pub contrast_level: c_double,
    pub primary: *mut HeTonalPalette,
    pub secondary: *mut HeTonalPalette,
    pub tertiary: *mut HeTonalPalette,
    pub neutral: *mut HeTonalPalette,
    pub neutral_variant: *mut HeTonalPalette,
    pub error: *mut HeTonalPalette,
}

impl ::std::fmt::Debug for HeDynamicScheme {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeDynamicScheme @ {self:p}"))
            .field("hct", &self.hct)
            .field("variant", &self.variant)
            .field("is_dark", &self.is_dark)
            .field("contrast_level", &self.contrast_level)
            .field("primary", &self.primary)
            .field("secondary", &self.secondary)
            .field("tertiary", &self.tertiary)
            .field("neutral", &self.neutral)
            .field("neutral_variant", &self.neutral_variant)
            .field("error", &self.error)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeEmptyPage {
    pub parent_instance: HeBin,
    pub priv_: *mut HeEmptyPagePrivate,
    pub action_button: *mut HeButton,
}

impl ::std::fmt::Debug for HeEmptyPage {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeEmptyPage @ {self:p}"))
            .field("action_button", &self.action_button)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeKeyColor {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeKeyColorPrivate,
}

impl ::std::fmt::Debug for HeKeyColor {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeKeyColor @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeMiniContentBlock {
    pub parent_instance: HeBin,
    pub priv_: *mut HeMiniContentBlockPrivate,
}

impl ::std::fmt::Debug for HeMiniContentBlock {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeMiniContentBlock @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeModifierBadge {
    pub parent_instance: HeBin,
    pub priv_: *mut HeModifierBadgePrivate,
}

impl ::std::fmt::Debug for HeModifierBadge {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeModifierBadge @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeMonochromaticScheme {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeMonochromaticSchemePrivate,
}

impl ::std::fmt::Debug for HeMonochromaticScheme {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeMonochromaticScheme @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeMutedScheme {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeMutedSchemePrivate,
}

impl ::std::fmt::Debug for HeMutedScheme {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeMutedScheme @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeNavigationRail {
    pub parent_instance: HeBin,
    pub priv_: *mut HeNavigationRailPrivate,
}

impl ::std::fmt::Debug for HeNavigationRail {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeNavigationRail @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeNavigationSection {
    pub parent_instance: HeBin,
    pub priv_: *mut HeNavigationSectionPrivate,
}

impl ::std::fmt::Debug for HeNavigationSection {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeNavigationSection @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeOverlayButton {
    pub parent_instance: HeBin,
    pub priv_: *mut HeOverlayButtonPrivate,
}

impl ::std::fmt::Debug for HeOverlayButton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeOverlayButton @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeProgressBar {
    pub parent_instance: HeBin,
    pub priv_: *mut HeProgressBarPrivate,
    pub progressbar: *mut gtk::GtkProgressBar,
}

impl ::std::fmt::Debug for HeProgressBar {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeProgressBar @ {self:p}"))
            .field("progressbar", &self.progressbar)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HePropertyAnimationTarget {
    pub parent_instance: HeAnimationTarget,
    pub priv_: *mut HePropertyAnimationTargetPrivate,
}

impl ::std::fmt::Debug for HePropertyAnimationTarget {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HePropertyAnimationTarget @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeQuantizer {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeQuantizerPrivate,
}

impl ::std::fmt::Debug for HeQuantizer {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeQuantizer @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeQuantizerCelebi {
    pub parent_instance: gobject::GTypeInstance,
    pub ref_count: c_int,
    pub priv_: *mut HeQuantizerCelebiPrivate,
}

impl ::std::fmt::Debug for HeQuantizerCelebi {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeQuantizerCelebi @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeQuantizerMap {
    pub parent_instance: HeQuantizer,
    pub priv_: *mut HeQuantizerMapPrivate,
}

impl ::std::fmt::Debug for HeQuantizerMap {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeQuantizerMap @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeQuantizerResult {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeQuantizerResultPrivate,
    pub color_to_count: *mut glib::GHashTable,
}

impl ::std::fmt::Debug for HeQuantizerResult {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeQuantizerResult @ {self:p}"))
            .field("color_to_count", &self.color_to_count)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeQuantizerWsmeans {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeQuantizerWsmeansPrivate,
}

impl ::std::fmt::Debug for HeQuantizerWsmeans {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeQuantizerWsmeans @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeQuantizerWu {
    pub parent_instance: HeQuantizer,
    pub priv_: *mut HeQuantizerWuPrivate,
}

impl ::std::fmt::Debug for HeQuantizerWu {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeQuantizerWu @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSaladScheme {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeSaladSchemePrivate,
}

impl ::std::fmt::Debug for HeSaladScheme {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSaladScheme @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeScheme {
    pub parent_instance: gobject::GTypeInstance,
    pub ref_count: c_int,
    pub priv_: *mut HeSchemePrivate,
}

impl ::std::fmt::Debug for HeScheme {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeScheme @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeScore {
    pub parent_instance: gobject::GTypeInstance,
    pub ref_count: c_int,
    pub priv_: *mut HeScorePrivate,
}

impl ::std::fmt::Debug for HeScore {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeScore @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeScoreAnnotatedColor {
    pub parent_instance: gobject::GTypeInstance,
    pub ref_count: c_int,
    pub priv_: *mut HeScoreAnnotatedColorPrivate,
    pub argb: c_int,
    pub cam_hue: c_double,
    pub cam_chroma: c_double,
    pub excited_proportion: c_double,
    pub score: c_double,
    pub he_score_annotated_color_cmp: glib::GCompareFunc,
}

impl ::std::fmt::Debug for HeScoreAnnotatedColor {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeScoreAnnotatedColor @ {self:p}"))
            .field("argb", &self.argb)
            .field("cam_hue", &self.cam_hue)
            .field("cam_chroma", &self.cam_chroma)
            .field("excited_proportion", &self.excited_proportion)
            .field("score", &self.score)
            .field(
                "he_score_annotated_color_cmp",
                &self.he_score_annotated_color_cmp,
            )
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSegmentedButton {
    pub parent_instance: gtk::GtkBox,
    pub priv_: *mut HeSegmentedButtonPrivate,
}

impl ::std::fmt::Debug for HeSegmentedButton {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSegmentedButton @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSettingsList {
    pub parent_instance: HeBin,
    pub priv_: *mut HeSettingsListPrivate,
    pub children: *mut glib::GList,
}

impl ::std::fmt::Debug for HeSettingsList {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSettingsList @ {self:p}"))
            .field("children", &self.children)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSettingsPage {
    pub parent_instance: HeBin,
    pub priv_: *mut HeSettingsPagePrivate,
}

impl ::std::fmt::Debug for HeSettingsPage {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSettingsPage @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSettingsRow {
    pub parent_instance: gtk::GtkListBoxRow,
    pub priv_: *mut HeSettingsRowPrivate,
}

impl ::std::fmt::Debug for HeSettingsRow {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSettingsRow @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSettingsWindow {
    pub parent_instance: HeWindow,
    pub priv_: *mut HeSettingsWindowPrivate,
}

impl ::std::fmt::Debug for HeSettingsWindow {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSettingsWindow @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSideBar {
    pub parent_instance: HeBin,
    pub priv_: *mut HeSideBarPrivate,
}

impl ::std::fmt::Debug for HeSideBar {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSideBar @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSlider {
    pub parent_instance: HeBin,
    pub priv_: *mut HeSliderPrivate,
    pub scale: *mut gtk::GtkScale,
}

impl ::std::fmt::Debug for HeSlider {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSlider @ {self:p}"))
            .field("scale", &self.scale)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSpringAnimation {
    pub parent_instance: HeAnimation,
    pub priv_: *mut HeSpringAnimationPrivate,
}

impl ::std::fmt::Debug for HeSpringAnimation {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSpringAnimation @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSpringParams {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeSpringParamsPrivate,
}

impl ::std::fmt::Debug for HeSpringParams {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSpringParams @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeStyleManager {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeStyleManagerPrivate,
    pub accent_color: *mut HeRGBColor,
    pub font_weight: c_double,
    pub roundness: c_double,
    pub is_dark: gboolean,
    pub contrast: c_double,
    pub scheme_variant: *mut HeSchemeVariant,
}

impl ::std::fmt::Debug for HeStyleManager {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeStyleManager @ {self:p}"))
            .field("accent_color", &self.accent_color)
            .field("font_weight", &self.font_weight)
            .field("roundness", &self.roundness)
            .field("is_dark", &self.is_dark)
            .field("contrast", &self.contrast)
            .field("scheme_variant", &self.scheme_variant)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSwitch {
    pub parent_instance: HeBin,
    pub priv_: *mut HeSwitchPrivate,
    pub iswitch: *mut gtk::GtkSwitch,
}

impl ::std::fmt::Debug for HeSwitch {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSwitch @ {self:p}"))
            .field("iswitch", &self.iswitch)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeSwitchBar {
    pub parent_instance: HeBin,
    pub priv_: *mut HeSwitchBarPrivate,
    pub main_switch: *mut HeSwitch,
}

impl ::std::fmt::Debug for HeSwitchBar {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeSwitchBar @ {self:p}"))
            .field("main_switch", &self.main_switch)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTab {
    pub parent_instance: HeBin,
    pub priv_: *mut HeTabPrivate,
    pub page_container: *mut HeTabPage,
}

impl ::std::fmt::Debug for HeTab {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTab @ {self:p}"))
            .field("page_container", &self.page_container)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTabPage {
    pub parent_instance: HeBin,
    pub priv_: *mut HeTabPagePrivate,
}

impl ::std::fmt::Debug for HeTabPage {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTabPage @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTabSwitcher {
    pub parent_instance: HeBin,
    pub priv_: *mut HeTabSwitcherPrivate,
    pub notebook: *mut gtk::GtkNotebook,
}

impl ::std::fmt::Debug for HeTabSwitcher {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTabSwitcher @ {self:p}"))
            .field("notebook", &self.notebook)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTemperatureCache {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeTemperatureCachePrivate,
}

impl ::std::fmt::Debug for HeTemperatureCache {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTemperatureCache @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTextField {
    pub parent_instance: gtk::GtkListBoxRow,
    pub priv_: *mut HeTextFieldPrivate,
}

impl ::std::fmt::Debug for HeTextField {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTextField @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTimePicker {
    pub parent_instance: gtk::GtkEntry,
    pub priv_: *mut HeTimePickerPrivate,
}

impl ::std::fmt::Debug for HeTimePicker {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTimePicker @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTimedAnimation {
    pub parent_instance: HeAnimation,
    pub priv_: *mut HeTimedAnimationPrivate,
}

impl ::std::fmt::Debug for HeTimedAnimation {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTimedAnimation @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTip {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeTipPrivate,
}

impl ::std::fmt::Debug for HeTip {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTip @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTipView {
    pub parent_instance: HeBin,
    pub priv_: *mut HeTipViewPrivate,
    pub button: *mut HeButton,
}

impl ::std::fmt::Debug for HeTipView {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTipView @ {self:p}"))
            .field("button", &self.button)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeToast {
    pub parent_instance: HeBin,
    pub priv_: *mut HeToastPrivate,
}

impl ::std::fmt::Debug for HeToast {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeToast @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeTonalPalette {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeTonalPalettePrivate,
}

impl ::std::fmt::Debug for HeTonalPalette {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeTonalPalette @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeToneDeltaPair {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeToneDeltaPairPrivate,
    pub role_a: *mut HeDynamicColor,
    pub role_b: *mut HeDynamicColor,
    pub delta: c_double,
    pub polarity: HeTonePolarity,
    pub stay_together: gboolean,
}

impl ::std::fmt::Debug for HeToneDeltaPair {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeToneDeltaPair @ {self:p}"))
            .field("role_a", &self.role_a)
            .field("role_b", &self.role_b)
            .field("delta", &self.delta)
            .field("polarity", &self.polarity)
            .field("stay_together", &self.stay_together)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeVibrantScheme {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeVibrantSchemePrivate,
}

impl ::std::fmt::Debug for HeVibrantScheme {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeVibrantScheme @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeView {
    pub parent_instance: gtk::GtkWidget,
    pub priv_: *mut HeViewPrivate,
}

impl ::std::fmt::Debug for HeView {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeView @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewAux {
    pub parent_instance: HeView,
    pub priv_: *mut HeViewAuxPrivate,
}

impl ::std::fmt::Debug for HeViewAux {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewAux @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewChooser {
    pub parent_instance: HeBin,
    pub priv_: *mut HeViewChooserPrivate,
}

impl ::std::fmt::Debug for HeViewChooser {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewChooser @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewDual {
    pub parent_instance: gtk::GtkWidget,
    pub priv_: *mut HeViewDualPrivate,
}

impl ::std::fmt::Debug for HeViewDual {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewDual @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewMono {
    pub parent_instance: HeBin,
    pub priv_: *mut HeViewMonoPrivate,
}

impl ::std::fmt::Debug for HeViewMono {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewMono @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewSubTitle {
    pub parent_instance: HeBin,
    pub priv_: *mut HeViewSubTitlePrivate,
}

impl ::std::fmt::Debug for HeViewSubTitle {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewSubTitle @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewSwitcher {
    pub parent_instance: HeBin,
    pub priv_: *mut HeViewSwitcherPrivate,
}

impl ::std::fmt::Debug for HeViewSwitcher {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewSwitcher @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewTitle {
    pub parent_instance: HeBin,
    pub priv_: *mut HeViewTitlePrivate,
}

impl ::std::fmt::Debug for HeViewTitle {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewTitle @ {self:p}")).finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeViewingConditions {
    pub parent_instance: gobject::GObject,
    pub priv_: *mut HeViewingConditionsPrivate,
    pub he_viewing_conditions_default_conditions: *mut HeViewingConditions,
    pub rgb_d: *mut c_double,
    pub rgb_d_length1: c_int,
}

impl ::std::fmt::Debug for HeViewingConditions {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeViewingConditions @ {self:p}"))
            .field(
                "he_viewing_conditions_default_conditions",
                &self.he_viewing_conditions_default_conditions,
            )
            .field("rgb_d", &self.rgb_d)
            .field("rgb_d_length1", &self.rgb_d_length1)
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeWelcomeScreen {
    pub parent_instance: HeBin,
    pub priv_: *mut HeWelcomeScreenPrivate,
}

impl ::std::fmt::Debug for HeWelcomeScreen {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeWelcomeScreen @ {self:p}"))
            .finish()
    }
}

#[derive(Copy, Clone)]
#[repr(C)]
pub struct HeWindow {
    pub parent_instance: gtk::GtkWindow,
    pub priv_: *mut HeWindowPrivate,
}

impl ::std::fmt::Debug for HeWindow {
    fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
        f.debug_struct(&format!("HeWindow @ {self:p}")).finish()
    }
}

#[link(name = "helium-1")]
extern "C" {

    //=========================================================================
    // HeAboutWindowLicenses
    //=========================================================================
    pub fn he_about_window_licenses_get_type() -> GType;

    //=========================================================================
    // HeAnimationState
    //=========================================================================
    pub fn he_animation_state_get_type() -> GType;

    //=========================================================================
    // HeBannerStyle
    //=========================================================================
    pub fn he_banner_style_get_type() -> GType;

    //=========================================================================
    // HeBottomBarPosition
    //=========================================================================
    pub fn he_bottom_bar_position_get_type() -> GType;

    //=========================================================================
    // HeColors
    //=========================================================================
    pub fn he_colors_get_type() -> GType;

    //=========================================================================
    // HeContentBlockImageClusterImagePosition
    //=========================================================================
    pub fn he_content_block_image_cluster_image_position_get_type() -> GType;

    //=========================================================================
    // HeDesktopColorScheme
    //=========================================================================
    pub fn he_desktop_color_scheme_get_type() -> GType;

    //=========================================================================
    // HeDesktopEnsorScheme
    //=========================================================================
    pub fn he_desktop_ensor_scheme_get_type() -> GType;

    //=========================================================================
    // HeEasing
    //=========================================================================
    pub fn he_easing_get_type() -> GType;

    //=========================================================================
    // HeModifierBadgeAlignment
    //=========================================================================
    pub fn he_modifier_badge_alignment_get_type() -> GType;

    //=========================================================================
    // HeOverlayButtonAlignment
    //=========================================================================
    pub fn he_overlay_button_alignment_get_type() -> GType;

    //=========================================================================
    // HeOverlayButtonSize
    //=========================================================================
    pub fn he_overlay_button_size_get_type() -> GType;

    //=========================================================================
    // HeOverlayButtonTypeButton
    //=========================================================================
    pub fn he_overlay_button_type_button_get_type() -> GType;

    //=========================================================================
    // HeSchemeVariant
    //=========================================================================
    pub fn he_scheme_variant_get_type() -> GType;

    //=========================================================================
    // HeTabSwitcherTabBarBehavior
    //=========================================================================
    pub fn he_tab_switcher_tab_bar_behavior_get_type() -> GType;

    //=========================================================================
    // HeTipViewStyle
    //=========================================================================
    pub fn he_tip_view_style_get_type() -> GType;

    //=========================================================================
    // HeTonePolarity
    //=========================================================================
    pub fn he_tone_polarity_get_type() -> GType;

    //=========================================================================
    // HeCAM16Color
    //=========================================================================
    pub fn he_ca_m16_color_get_type() -> GType;

    //=========================================================================
    // HeHCTColor
    //=========================================================================
    pub fn he_hct_color_get_type() -> GType;

    //=========================================================================
    // HeLABColor
    //=========================================================================
    pub fn he_lab_color_get_type() -> GType;
    pub fn he_lab_color_distance(self_: *mut HeLABColor, lab: *mut HeLABColor) -> c_double;

    //=========================================================================
    // HeLCHColor
    //=========================================================================
    pub fn he_lch_color_get_type() -> GType;

    //=========================================================================
    // HeRGBColor
    //=========================================================================
    pub fn he_rgb_color_get_type() -> GType;

    //=========================================================================
    // HeXYZColor
    //=========================================================================
    pub fn he_xyz_color_get_type() -> GType;

    //=========================================================================
    // HeAboutWindow
    //=========================================================================
    pub fn he_about_window_get_type() -> GType;
    pub fn he_about_window_new(
        parent: *mut gtk::GtkWindow,
        app_name: *const c_char,
        app_id: *const c_char,
        version: *const c_char,
        icon: *const c_char,
        translate_url: *const c_char,
        issue_url: *const c_char,
        more_info_url: *const c_char,
        translators: *mut *mut c_char,
        translators_length1: c_int,
        developers: *mut *mut c_char,
        developers_length1: c_int,
        copyright_year: c_int,
        license: HeAboutWindowLicenses,
        color: HeColors,
    ) -> *mut HeAboutWindow;
    pub fn he_about_window_get_color(self_: *mut HeAboutWindow) -> HeColors;
    pub fn he_about_window_set_color(self_: *mut HeAboutWindow, value: HeColors);
    pub fn he_about_window_get_license(self_: *mut HeAboutWindow) -> HeAboutWindowLicenses;
    pub fn he_about_window_set_license(self_: *mut HeAboutWindow, value: HeAboutWindowLicenses);
    pub fn he_about_window_get_version(self_: *mut HeAboutWindow) -> *const c_char;
    pub fn he_about_window_set_version(self_: *mut HeAboutWindow, value: *const c_char);
    pub fn he_about_window_get_app_name(self_: *mut HeAboutWindow) -> *const c_char;
    pub fn he_about_window_set_app_name(self_: *mut HeAboutWindow, value: *const c_char);
    pub fn he_about_window_get_icon(self_: *mut HeAboutWindow) -> *const c_char;
    pub fn he_about_window_set_icon(self_: *mut HeAboutWindow, value: *const c_char);
    pub fn he_about_window_get_translator_names(
        self_: *mut HeAboutWindow,
        result_length1: *mut c_int,
    ) -> *mut *mut c_char;
    pub fn he_about_window_set_translator_names(
        self_: *mut HeAboutWindow,
        value: *mut *mut c_char,
        value_length1: c_int,
    );
    pub fn he_about_window_get_developer_names(
        self_: *mut HeAboutWindow,
        result_length1: *mut c_int,
    ) -> *mut *mut c_char;
    pub fn he_about_window_set_developer_names(
        self_: *mut HeAboutWindow,
        value: *mut *mut c_char,
        value_length1: c_int,
    );
    pub fn he_about_window_get_copyright_year(self_: *mut HeAboutWindow) -> c_int;
    pub fn he_about_window_set_copyright_year(self_: *mut HeAboutWindow, value: c_int);
    pub fn he_about_window_get_app_id(self_: *mut HeAboutWindow) -> *const c_char;
    pub fn he_about_window_set_app_id(self_: *mut HeAboutWindow, value: *const c_char);
    pub fn he_about_window_get_translate_url(self_: *mut HeAboutWindow) -> *const c_char;
    pub fn he_about_window_set_translate_url(self_: *mut HeAboutWindow, value: *const c_char);
    pub fn he_about_window_get_issue_url(self_: *mut HeAboutWindow) -> *const c_char;
    pub fn he_about_window_set_issue_url(self_: *mut HeAboutWindow, value: *const c_char);
    pub fn he_about_window_get_more_info_url(self_: *mut HeAboutWindow) -> *const c_char;
    pub fn he_about_window_set_more_info_url(self_: *mut HeAboutWindow, value: *const c_char);

    //=========================================================================
    // HeAnimation
    //=========================================================================
    pub fn he_animation_get_type() -> GType;
    pub fn he_animation_pause(self_: *mut HeAnimation);
    pub fn he_animation_play(self_: *mut HeAnimation);
    pub fn he_animation_reset(self_: *mut HeAnimation);
    pub fn he_animation_resume(self_: *mut HeAnimation);
    pub fn he_animation_skip(self_: *mut HeAnimation);
    pub fn he_animation_estimate_duration(self_: *mut HeAnimation) -> c_uint;
    pub fn he_animation_calculate_value(self_: *mut HeAnimation, t: c_uint) -> c_double;
    pub fn he_animation_get_state(self_: *mut HeAnimation) -> HeAnimationState;
    pub fn he_animation_set_state(self_: *mut HeAnimation, value: HeAnimationState);
    pub fn he_animation_get_target(self_: *mut HeAnimation) -> *mut HeAnimationTarget;
    pub fn he_animation_set_target(self_: *mut HeAnimation, value: *mut HeAnimationTarget);
    pub fn he_animation_get_widget(self_: *mut HeAnimation) -> *mut gtk::GtkWidget;
    pub fn he_animation_set_widget(self_: *mut HeAnimation, value: *mut gtk::GtkWidget);
    pub fn he_animation_get_avalue(self_: *mut HeAnimation) -> c_double;
    pub fn he_animation_set_avalue(self_: *mut HeAnimation, value: c_double);

    //=========================================================================
    // HeAnimationTarget
    //=========================================================================
    pub fn he_animation_target_get_type() -> GType;
    pub fn he_animation_target_set_value(self_: *mut HeAnimationTarget, value: c_double);

    //=========================================================================
    // HeAppBar
    //=========================================================================
    pub fn he_app_bar_get_type() -> GType;
    pub fn he_app_bar_append(self_: *mut HeAppBar, child: *mut gtk::GtkWidget);
    pub fn he_app_bar_append_toggle(self_: *mut HeAppBar, child: *mut gtk::GtkWidget);
    pub fn he_app_bar_append_menu(self_: *mut HeAppBar, child: *mut gtk::GtkWidget);
    pub fn he_app_bar_remove(self_: *mut HeAppBar, child: *mut gtk::GtkWidget);
    pub fn he_app_bar_new() -> *mut HeAppBar;
    pub fn he_app_bar_get_stack(self_: *mut HeAppBar) -> *mut gtk::GtkStack;
    pub fn he_app_bar_set_stack(self_: *mut HeAppBar, value: *mut gtk::GtkStack);
    pub fn he_app_bar_get_scroller(self_: *mut HeAppBar) -> *mut gtk::GtkScrolledWindow;
    pub fn he_app_bar_set_scroller(self_: *mut HeAppBar, value: *mut gtk::GtkScrolledWindow);
    pub fn he_app_bar_get_is_compact(self_: *mut HeAppBar) -> gboolean;
    pub fn he_app_bar_set_is_compact(self_: *mut HeAppBar, value: gboolean);
    pub fn he_app_bar_get_viewtitle_widget(self_: *mut HeAppBar) -> *mut gtk::GtkWidget;
    pub fn he_app_bar_set_viewtitle_widget(self_: *mut HeAppBar, value: *mut gtk::GtkWidget);
    pub fn he_app_bar_get_viewsubtitle_label(self_: *mut HeAppBar) -> *const c_char;
    pub fn he_app_bar_set_viewsubtitle_label(self_: *mut HeAppBar, value: *const c_char);
    pub fn he_app_bar_get_show_left_title_buttons(self_: *mut HeAppBar) -> gboolean;
    pub fn he_app_bar_set_show_left_title_buttons(self_: *mut HeAppBar, value: gboolean);
    pub fn he_app_bar_get_show_right_title_buttons(self_: *mut HeAppBar) -> gboolean;
    pub fn he_app_bar_set_show_right_title_buttons(self_: *mut HeAppBar, value: gboolean);
    pub fn he_app_bar_get_decoration_layout(self_: *mut HeAppBar) -> *const c_char;
    pub fn he_app_bar_set_decoration_layout(self_: *mut HeAppBar, value: *const c_char);
    pub fn he_app_bar_get_show_back(self_: *mut HeAppBar) -> gboolean;
    pub fn he_app_bar_set_show_back(self_: *mut HeAppBar, value: gboolean);

    //=========================================================================
    // HeApplication
    //=========================================================================
    pub fn he_application_get_type() -> GType;
    pub fn he_application_new(
        application_id: *const c_char,
        flags: gio::GApplicationFlags,
    ) -> *mut HeApplication;
    pub fn he_application_get_default_accent_color(self_: *mut HeApplication) -> *mut HeRGBColor;
    pub fn he_application_set_default_accent_color(
        self_: *mut HeApplication,
        value: *mut HeRGBColor,
    );
    pub fn he_application_get_override_accent_color(self_: *mut HeApplication) -> gboolean;
    pub fn he_application_set_override_accent_color(self_: *mut HeApplication, value: gboolean);
    pub fn he_application_get_override_dark_style(self_: *mut HeApplication) -> gboolean;
    pub fn he_application_set_override_dark_style(self_: *mut HeApplication, value: gboolean);
    pub fn he_application_get_override_contrast(self_: *mut HeApplication) -> gboolean;
    pub fn he_application_set_override_contrast(self_: *mut HeApplication, value: gboolean);
    pub fn he_application_get_default_contrast(self_: *mut HeApplication) -> c_double;
    pub fn he_application_set_default_contrast(self_: *mut HeApplication, value: c_double);
    pub fn he_application_get_is_content(self_: *mut HeApplication) -> gboolean;
    pub fn he_application_set_is_content(self_: *mut HeApplication, value: gboolean);
    pub fn he_application_get_is_mono(self_: *mut HeApplication) -> gboolean;
    pub fn he_application_set_is_mono(self_: *mut HeApplication, value: gboolean);

    //=========================================================================
    // HeApplicationWindow
    //=========================================================================
    pub fn he_application_window_get_type() -> GType;
    pub fn he_application_window_new(app: *mut HeApplication) -> *mut HeApplicationWindow;
    pub fn he_application_window_get_has_title(self_: *mut HeApplicationWindow) -> gboolean;
    pub fn he_application_window_set_has_title(self_: *mut HeApplicationWindow, value: gboolean);
    pub fn he_application_window_get_has_back_button(self_: *mut HeApplicationWindow) -> gboolean;
    pub fn he_application_window_set_has_back_button(
        self_: *mut HeApplicationWindow,
        value: gboolean,
    );

    //=========================================================================
    // HeAvatar
    //=========================================================================
    pub fn he_avatar_get_type() -> GType;
    pub fn he_avatar_new(
        size: c_int,
        image: *const c_char,
        text: *const c_char,
        status: *mut gboolean,
    ) -> *mut HeAvatar;
    pub fn he_avatar_get_size(self_: *mut HeAvatar) -> c_int;
    pub fn he_avatar_set_size(self_: *mut HeAvatar, value: c_int);
    pub fn he_avatar_get_text(self_: *mut HeAvatar) -> *const c_char;
    pub fn he_avatar_set_text(self_: *mut HeAvatar, value: *const c_char);
    pub fn he_avatar_get_status(self_: *mut HeAvatar) -> gboolean;
    pub fn he_avatar_set_status(self_: *mut HeAvatar, value: gboolean);
    pub fn he_avatar_get_image(self_: *mut HeAvatar) -> *const c_char;
    pub fn he_avatar_set_image(self_: *mut HeAvatar, value: *const c_char);

    //=========================================================================
    // HeBadge
    //=========================================================================
    pub fn he_badge_get_type() -> GType;
    pub fn he_badge_new() -> *mut HeBadge;
    pub fn he_badge_get_child(self_: *mut HeBadge) -> *mut gtk::GtkWidget;
    pub fn he_badge_set_child(self_: *mut HeBadge, value: *mut gtk::GtkWidget);
    pub fn he_badge_get_label(self_: *mut HeBadge) -> *const c_char;
    pub fn he_badge_set_label(self_: *mut HeBadge, value: *const c_char);

    //=========================================================================
    // HeBanner
    //=========================================================================
    pub fn he_banner_get_type() -> GType;
    pub fn he_banner_add_action_button(self_: *mut HeBanner, widget: *mut gtk::GtkWidget);
    pub fn he_banner_remove_action(self_: *mut HeBanner, widget: *mut gtk::GtkWidget);
    pub fn he_banner_set_banner_style(self_: *mut HeBanner, style: HeBannerStyle);
    pub fn he_banner_new(title: *const c_char, description: *const c_char) -> *mut HeBanner;
    pub fn he_banner_get_title(self_: *mut HeBanner) -> *const c_char;
    pub fn he_banner_set_title(self_: *mut HeBanner, value: *const c_char);
    pub fn he_banner_get_description(self_: *mut HeBanner) -> *const c_char;
    pub fn he_banner_set_description(self_: *mut HeBanner, value: *const c_char);
    pub fn he_banner_get_style(self_: *mut HeBanner) -> HeBannerStyle;
    pub fn he_banner_set_style(self_: *mut HeBanner, value: HeBannerStyle);

    //=========================================================================
    // HeBin
    //=========================================================================
    pub fn he_bin_get_type() -> GType;
    pub fn he_bin_add_child(
        self_: *mut HeBin,
        builder: *mut gtk::GtkBuilder,
        child: *mut gobject::GObject,
        type_: *const c_char,
    );
    pub fn he_bin_new() -> *mut HeBin;
    pub fn he_bin_get_child(self_: *mut HeBin) -> *mut gtk::GtkWidget;
    pub fn he_bin_set_child(self_: *mut HeBin, value: *mut gtk::GtkWidget);

    //=========================================================================
    // HeBottomBar
    //=========================================================================
    pub fn he_bottom_bar_get_type() -> GType;
    pub fn he_bottom_bar_new_with_details(
        title: *const c_char,
        description: *const c_char,
    ) -> *mut HeBottomBar;
    pub fn he_bottom_bar_new() -> *mut HeBottomBar;
    pub fn he_bottom_bar_append_button(
        self_: *mut HeBottomBar,
        icon: *mut HeButton,
        position: HeBottomBarPosition,
    );
    pub fn he_bottom_bar_prepend_button(
        self_: *mut HeBottomBar,
        icon: *mut HeButton,
        position: HeBottomBarPosition,
    );
    pub fn he_bottom_bar_remove_button(
        self_: *mut HeBottomBar,
        icon: *mut HeButton,
        position: HeBottomBarPosition,
    );
    pub fn he_bottom_bar_insert_button_after(
        self_: *mut HeBottomBar,
        icon: *mut HeButton,
        after: *mut HeButton,
        position: HeBottomBarPosition,
    );
    pub fn he_bottom_bar_reorder_button_after(
        self_: *mut HeBottomBar,
        icon: *mut HeButton,
        sibling: *mut HeButton,
        position: HeBottomBarPosition,
    );
    pub fn he_bottom_bar_get_title(self_: *mut HeBottomBar) -> *const c_char;
    pub fn he_bottom_bar_set_title(self_: *mut HeBottomBar, value: *const c_char);
    pub fn he_bottom_bar_get_description(self_: *mut HeBottomBar) -> *const c_char;
    pub fn he_bottom_bar_set_description(self_: *mut HeBottomBar, value: *const c_char);
    pub fn he_bottom_bar_get_menu_model(self_: *mut HeBottomBar) -> *mut gio::GMenuModel;
    pub fn he_bottom_bar_set_menu_model(self_: *mut HeBottomBar, value: *mut gio::GMenuModel);
    pub fn he_bottom_bar_get_collapse_actions(self_: *mut HeBottomBar) -> gboolean;
    pub fn he_bottom_bar_set_collapse_actions(self_: *mut HeBottomBar, value: gboolean);

    //=========================================================================
    // HeBottomSheet
    //=========================================================================
    pub fn he_bottom_sheet_get_type() -> GType;
    pub fn he_bottom_sheet_new() -> *mut HeBottomSheet;
    pub fn he_bottom_sheet_get_sheet(self_: *mut HeBottomSheet) -> *mut gtk::GtkWidget;
    pub fn he_bottom_sheet_set_sheet(self_: *mut HeBottomSheet, value: *mut gtk::GtkWidget);
    pub fn he_bottom_sheet_get_sheet_stack(self_: *mut HeBottomSheet) -> *mut gtk::GtkStack;
    pub fn he_bottom_sheet_set_sheet_stack(self_: *mut HeBottomSheet, value: *mut gtk::GtkStack);
    pub fn he_bottom_sheet_get_button(self_: *mut HeBottomSheet) -> *mut gtk::GtkWidget;
    pub fn he_bottom_sheet_set_button(self_: *mut HeBottomSheet, value: *mut gtk::GtkWidget);
    pub fn he_bottom_sheet_get_title(self_: *mut HeBottomSheet) -> *const c_char;
    pub fn he_bottom_sheet_set_title(self_: *mut HeBottomSheet, value: *const c_char);
    pub fn he_bottom_sheet_get_show_sheet(self_: *mut HeBottomSheet) -> gboolean;
    pub fn he_bottom_sheet_set_show_sheet(self_: *mut HeBottomSheet, value: gboolean);
    pub fn he_bottom_sheet_get_modal(self_: *mut HeBottomSheet) -> gboolean;
    pub fn he_bottom_sheet_set_modal(self_: *mut HeBottomSheet, value: gboolean);
    pub fn he_bottom_sheet_get_show_handle(self_: *mut HeBottomSheet) -> gboolean;
    pub fn he_bottom_sheet_set_show_handle(self_: *mut HeBottomSheet, value: gboolean);
    pub fn he_bottom_sheet_get_preferred_sheet_height(self_: *mut HeBottomSheet) -> c_int;
    pub fn he_bottom_sheet_set_preferred_sheet_height(self_: *mut HeBottomSheet, value: c_int);

    //=========================================================================
    // HeButton
    //=========================================================================
    pub fn he_button_get_type() -> GType;
    pub fn he_button_new(icon: *const c_char, text: *const c_char) -> *mut HeButton;
    pub fn he_button_get_color(self_: *mut HeButton) -> HeColors;
    pub fn he_button_set_color(self_: *mut HeButton, value: HeColors);
    pub fn he_button_get_is_disclosure(self_: *mut HeButton) -> gboolean;
    pub fn he_button_set_is_disclosure(self_: *mut HeButton, value: gboolean);
    pub fn he_button_get_is_iconic(self_: *mut HeButton) -> gboolean;
    pub fn he_button_set_is_iconic(self_: *mut HeButton, value: gboolean);
    pub fn he_button_get_is_outline(self_: *mut HeButton) -> gboolean;
    pub fn he_button_set_is_outline(self_: *mut HeButton, value: gboolean);
    pub fn he_button_get_is_tint(self_: *mut HeButton) -> gboolean;
    pub fn he_button_set_is_tint(self_: *mut HeButton, value: gboolean);
    pub fn he_button_get_is_fill(self_: *mut HeButton) -> gboolean;
    pub fn he_button_set_is_fill(self_: *mut HeButton, value: gboolean);
    pub fn he_button_get_is_pill(self_: *mut HeButton) -> gboolean;
    pub fn he_button_set_is_pill(self_: *mut HeButton, value: gboolean);
    pub fn he_button_get_is_textual(self_: *mut HeButton) -> gboolean;
    pub fn he_button_set_is_textual(self_: *mut HeButton, value: gboolean);
    pub fn he_button_get_icon(self_: *mut HeButton) -> *const c_char;
    pub fn he_button_set_icon(self_: *mut HeButton, value: *const c_char);
    pub fn he_button_get_text(self_: *mut HeButton) -> *const c_char;
    pub fn he_button_set_text(self_: *mut HeButton, value: *const c_char);

    //=========================================================================
    // HeButtonContent
    //=========================================================================
    pub fn he_button_content_get_type() -> GType;
    pub fn he_button_content_new() -> *mut HeButtonContent;
    pub fn he_button_content_get_icon(self_: *mut HeButtonContent) -> *mut c_char;
    pub fn he_button_content_set_icon(self_: *mut HeButtonContent, value: *const c_char);
    pub fn he_button_content_get_label(self_: *mut HeButtonContent) -> *mut c_char;
    pub fn he_button_content_set_label(self_: *mut HeButtonContent, value: *const c_char);

    //=========================================================================
    // HeCallbackAnimationTarget
    //=========================================================================
    pub fn he_callback_animation_target_get_type() -> GType;
    pub fn he_callback_animation_target_new(
        callback: HeAnimationTargetFunc,
        callback_target: *mut c_void,
        callback_target_destroy_notify: glib::GDestroyNotify,
    ) -> *mut HeCallbackAnimationTarget;

    //=========================================================================
    // HeChip
    //=========================================================================
    pub fn he_chip_get_type() -> GType;
    pub fn he_chip_new(label: *const c_char) -> *mut HeChip;
    pub fn he_chip_get_chip_label(self_: *mut HeChip) -> *const c_char;
    pub fn he_chip_set_chip_label(self_: *mut HeChip, value: *const c_char);

    //=========================================================================
    // HeChipGroup
    //=========================================================================
    pub fn he_chip_group_get_type() -> GType;
    pub fn he_chip_group_new() -> *mut HeChipGroup;
    pub fn he_chip_group_get_selection_model(
        self_: *mut HeChipGroup,
    ) -> *mut gtk::GtkSingleSelection;
    pub fn he_chip_group_set_selection_model(
        self_: *mut HeChipGroup,
        value: *mut gtk::GtkSingleSelection,
    );
    pub fn he_chip_group_get_single_line(self_: *mut HeChipGroup) -> gboolean;
    pub fn he_chip_group_set_single_line(self_: *mut HeChipGroup, value: gboolean);

    //=========================================================================
    // HeContentBlock
    //=========================================================================
    pub fn he_content_block_get_type() -> GType;
    pub fn he_content_block_new(
        title: *const c_char,
        subtitle: *const c_char,
        icon: *const c_char,
        primary_button: *mut HeButton,
        secondary_button: *mut HeButton,
    ) -> *mut HeContentBlock;
    pub fn he_content_block_get_title(self_: *mut HeContentBlock) -> *const c_char;
    pub fn he_content_block_set_title(self_: *mut HeContentBlock, value: *const c_char);
    pub fn he_content_block_get_subtitle(self_: *mut HeContentBlock) -> *const c_char;
    pub fn he_content_block_set_subtitle(self_: *mut HeContentBlock, value: *const c_char);
    pub fn he_content_block_get_icon(self_: *mut HeContentBlock) -> *const c_char;
    pub fn he_content_block_set_icon(self_: *mut HeContentBlock, value: *const c_char);
    pub fn he_content_block_set_gicon(self_: *mut HeContentBlock, value: *mut gio::GIcon);
    pub fn he_content_block_get_secondary_button(self_: *mut HeContentBlock) -> *mut HeButton;
    pub fn he_content_block_set_secondary_button(self_: *mut HeContentBlock, value: *mut HeButton);
    pub fn he_content_block_get_primary_button(self_: *mut HeContentBlock) -> *mut HeButton;
    pub fn he_content_block_set_primary_button(self_: *mut HeContentBlock, value: *mut HeButton);

    //=========================================================================
    // HeContentBlockImage
    //=========================================================================
    pub fn he_content_block_image_get_type() -> GType;
    pub fn he_content_block_image_new(file: *const c_char) -> *mut HeContentBlockImage;
    pub fn he_content_block_image_get_file(self_: *mut HeContentBlockImage) -> *const c_char;
    pub fn he_content_block_image_set_file(self_: *mut HeContentBlockImage, value: *const c_char);
    pub fn he_content_block_image_get_requested_height(self_: *mut HeContentBlockImage) -> c_int;
    pub fn he_content_block_image_set_requested_height(
        self_: *mut HeContentBlockImage,
        value: c_int,
    );
    pub fn he_content_block_image_get_requested_width(self_: *mut HeContentBlockImage) -> c_int;
    pub fn he_content_block_image_set_requested_width(
        self_: *mut HeContentBlockImage,
        value: c_int,
    );

    //=========================================================================
    // HeContentBlockImageCluster
    //=========================================================================
    pub fn he_content_block_image_cluster_get_type() -> GType;
    pub fn he_content_block_image_cluster_set_image(
        self_: *mut HeContentBlockImageCluster,
        image: *mut HeContentBlockImage,
        position: HeContentBlockImageClusterImagePosition,
    );
    pub fn he_content_block_image_cluster_remove_image(
        self_: *mut HeContentBlockImageCluster,
        image: *mut HeContentBlockImage,
    );
    pub fn he_content_block_image_cluster_new(
        title: *const c_char,
        subtitle: *const c_char,
        icon: *const c_char,
    ) -> *mut HeContentBlockImageCluster;
    pub fn he_content_block_image_cluster_get_title(
        self_: *mut HeContentBlockImageCluster,
    ) -> *const c_char;
    pub fn he_content_block_image_cluster_set_title(
        self_: *mut HeContentBlockImageCluster,
        value: *const c_char,
    );
    pub fn he_content_block_image_cluster_get_subtitle(
        self_: *mut HeContentBlockImageCluster,
    ) -> *const c_char;
    pub fn he_content_block_image_cluster_set_subtitle(
        self_: *mut HeContentBlockImageCluster,
        value: *const c_char,
    );
    pub fn he_content_block_image_cluster_get_icon(
        self_: *mut HeContentBlockImageCluster,
    ) -> *const c_char;
    pub fn he_content_block_image_cluster_set_icon(
        self_: *mut HeContentBlockImageCluster,
        value: *const c_char,
    );

    //=========================================================================
    // HeContentList
    //=========================================================================
    pub fn he_content_list_get_type() -> GType;
    pub fn he_content_list_add(self_: *mut HeContentList, child: *mut gtk::GtkWidget);
    pub fn he_content_list_remove(self_: *mut HeContentList, child: *mut gtk::GtkWidget);
    pub fn he_content_list_new() -> *mut HeContentList;
    pub fn he_content_list_get_title(self_: *mut HeContentList) -> *const c_char;
    pub fn he_content_list_set_title(self_: *mut HeContentList, value: *const c_char);
    pub fn he_content_list_get_description(self_: *mut HeContentList) -> *const c_char;
    pub fn he_content_list_set_description(self_: *mut HeContentList, value: *const c_char);

    //=========================================================================
    // HeContentScheme
    //=========================================================================
    pub fn he_content_scheme_get_type() -> GType;
    pub fn he_content_scheme_generate(
        self_: *mut HeContentScheme,
        hct: *mut HeHCTColor,
        is_dark: gboolean,
        contrast: c_double,
    ) -> *mut HeDynamicScheme;
    pub fn he_content_scheme_new() -> *mut HeContentScheme;

    //=========================================================================
    // HeContrast
    //=========================================================================
    pub fn he_contrast_get_type() -> GType;
    pub fn he_contrast_ratio_of_ys(y1: c_double, y2: c_double) -> c_double;
    pub fn he_contrast_ratio_of_tones(t1: c_double, t2: c_double) -> c_double;
    pub fn he_contrast_lighter(tone: c_double, ratio: c_double) -> c_double;
    pub fn he_contrast_lighter_unsafe(tone: c_double, ratio: c_double) -> c_double;
    pub fn he_contrast_darker(tone: c_double, ratio: c_double) -> c_double;
    pub fn he_contrast_darker_unsafe(tone: c_double, ratio: c_double) -> c_double;

    //=========================================================================
    // HeContrastCurve
    //=========================================================================
    pub fn he_contrast_curve_get_type() -> GType;
    pub fn he_contrast_curve_new(
        low: c_double,
        normal: c_double,
        medium: c_double,
        high: c_double,
    ) -> *mut HeContrastCurve;
    pub fn he_contrast_curve_get(self_: *mut HeContrastCurve, contrast: c_double) -> c_double;

    //=========================================================================
    // HeDatePicker
    //=========================================================================
    pub fn he_date_picker_get_type() -> GType;
    pub fn he_date_picker_new_with_format(format: *const c_char) -> *mut HeDatePicker;
    pub fn he_date_picker_new() -> *mut HeDatePicker;
    pub fn he_date_picker_get_format(self_: *mut HeDatePicker) -> *const c_char;
    pub fn he_date_picker_get_date(self_: *mut HeDatePicker) -> *mut glib::GDateTime;
    pub fn he_date_picker_set_date(self_: *mut HeDatePicker, value: *mut glib::GDateTime);

    //=========================================================================
    // HeDefaultScheme
    //=========================================================================
    pub fn he_default_scheme_get_type() -> GType;
    pub fn he_default_scheme_generate(
        self_: *mut HeDefaultScheme,
        hct: *mut HeHCTColor,
        is_dark: gboolean,
        contrast: c_double,
    ) -> *mut HeDynamicScheme;
    pub fn he_default_scheme_new() -> *mut HeDefaultScheme;

    //=========================================================================
    // HeDesktop
    //=========================================================================
    pub fn he_desktop_get_type() -> GType;
    pub fn he_desktop_new() -> *mut HeDesktop;
    pub fn he_desktop_get_prefers_color_scheme(self_: *mut HeDesktop) -> HeDesktopColorScheme;
    pub fn he_desktop_set_prefers_color_scheme(self_: *mut HeDesktop, value: HeDesktopColorScheme);
    pub fn he_desktop_get_ensor_scheme(self_: *mut HeDesktop) -> HeDesktopEnsorScheme;
    pub fn he_desktop_get_accent_color(self_: *mut HeDesktop) -> *mut HeRGBColor;
    pub fn he_desktop_set_accent_color(self_: *mut HeDesktop, value: *mut HeRGBColor);
    pub fn he_desktop_get_font_weight(self_: *mut HeDesktop) -> c_double;
    pub fn he_desktop_set_font_weight(self_: *mut HeDesktop, value: c_double);
    pub fn he_desktop_get_roundness(self_: *mut HeDesktop) -> c_double;
    pub fn he_desktop_set_roundness(self_: *mut HeDesktop, value: c_double);
    pub fn he_desktop_get_contrast(self_: *mut HeDesktop) -> c_double;
    pub fn he_desktop_set_contrast(self_: *mut HeDesktop, value: c_double);

    //=========================================================================
    // HeDialog
    //=========================================================================
    pub fn he_dialog_get_type() -> GType;
    pub fn he_dialog_add(self_: *mut HeDialog, widget: *mut gtk::GtkWidget);
    pub fn he_dialog_new(
        modal: gboolean,
        parent: *mut gtk::GtkWindow,
        title: *const c_char,
        subtitle: *const c_char,
        info: *const c_char,
        icon: *const c_char,
        primary_button: *mut HeButton,
        secondary_button: *mut HeButton,
    ) -> *mut HeDialog;
    pub fn he_dialog_get_title(self_: *mut HeDialog) -> *const c_char;
    pub fn he_dialog_set_title(self_: *mut HeDialog, value: *const c_char);
    pub fn he_dialog_get_info(self_: *mut HeDialog) -> *const c_char;
    pub fn he_dialog_set_info(self_: *mut HeDialog, value: *const c_char);
    pub fn he_dialog_get_icon(self_: *mut HeDialog) -> *const c_char;
    pub fn he_dialog_set_icon(self_: *mut HeDialog, value: *const c_char);
    pub fn he_dialog_get_secondary_button(self_: *mut HeDialog) -> *mut HeButton;
    pub fn he_dialog_set_secondary_button(self_: *mut HeDialog, value: *mut HeButton);
    pub fn he_dialog_get_primary_button(self_: *mut HeDialog) -> *mut HeButton;
    pub fn he_dialog_set_primary_button(self_: *mut HeDialog, value: *mut HeButton);

    //=========================================================================
    // HeDivider
    //=========================================================================
    pub fn he_divider_get_type() -> GType;
    pub fn he_divider_new() -> *mut HeDivider;
    pub fn he_divider_get_is_inset(self_: *mut HeDivider) -> gboolean;
    pub fn he_divider_set_is_inset(self_: *mut HeDivider, value: gboolean);
    pub fn he_divider_get_is_vertical(self_: *mut HeDivider) -> gboolean;
    pub fn he_divider_set_is_vertical(self_: *mut HeDivider, value: gboolean);

    //=========================================================================
    // HeDropdown
    //=========================================================================
    pub fn he_dropdown_get_type() -> GType;
    pub fn he_dropdown_new() -> *mut HeDropdown;
    pub fn he_dropdown_append(self_: *mut HeDropdown, text: *const c_char);
    pub fn he_dropdown_get_active(self_: *mut HeDropdown) -> *mut c_char;
    pub fn he_dropdown_insert(self_: *mut HeDropdown, position: c_int, text: *const c_char);
    pub fn he_dropdown_prepend(self_: *mut HeDropdown, text: *const c_char);
    pub fn he_dropdown_remove(self_: *mut HeDropdown, position: c_int);
    pub fn he_dropdown_remove_all(self_: *mut HeDropdown);
    pub fn he_dropdown_get_active_id(self_: *mut HeDropdown) -> *const c_char;
    pub fn he_dropdown_set_active_id(self_: *mut HeDropdown, value: *const c_char);
    pub fn he_dropdown_get_max_width_chars(self_: *mut HeDropdown) -> c_int;
    pub fn he_dropdown_set_max_width_chars(self_: *mut HeDropdown, value: c_int);
    pub fn he_dropdown_get_ellipsize(self_: *mut HeDropdown) -> pango::PangoEllipsizeMode;
    pub fn he_dropdown_set_ellipsize(self_: *mut HeDropdown, value: pango::PangoEllipsizeMode);
    pub fn he_dropdown_get_dropdown(self_: *mut HeDropdown) -> *mut gtk::GtkDropDown;
    pub fn he_dropdown_set_dropdown(self_: *mut HeDropdown, value: *mut gtk::GtkDropDown);

    //=========================================================================
    // HeDynamicColor
    //=========================================================================
    pub fn he_dynamic_color_get_type() -> GType;
    pub fn he_dynamic_color_new(
        name: *const c_char,
        palette: HePaletteFunc,
        palette_target: *mut c_void,
        tonev: HeToneFunc,
        tonev_target: *mut c_void,
        is_background: *mut gboolean,
        background: HeBackgroundFunc,
        background_target: *mut c_void,
        second_background: HeBackgroundFunc,
        second_background_target: *mut c_void,
        contrast_curve: *mut HeContrastCurve,
        tone_delta_pair: HeToneDeltaPairFunc,
        tone_delta_pair_target: *mut c_void,
    ) -> *mut HeDynamicColor;
    pub fn he_dynamic_color_new_from_palette(
        name: *const c_char,
        palette: HePaletteFunc,
        palette_target: *mut c_void,
        tonev: HeToneFunc,
        tonev_target: *mut c_void,
    ) -> *mut HeDynamicColor;
    pub fn he_dynamic_color_get_hct(
        self_: *mut HeDynamicColor,
        scheme: *mut HeDynamicScheme,
        result: *mut HeHCTColor,
    );
    pub fn he_dynamic_color_get_tone(
        self_: *mut HeDynamicColor,
        scheme: *mut HeDynamicScheme,
    ) -> c_double;
    pub fn he_dynamic_color_foreground_tone(
        self_: *mut HeDynamicColor,
        bg_tone: c_double,
        ratio: c_double,
    ) -> c_double;
    pub fn he_dynamic_color_enable_light_foreground(tone: c_double) -> c_double;
    pub fn he_dynamic_color_tone_prefers_light_foreground(tone: c_double) -> gboolean;
    pub fn he_dynamic_color_tone_allows_light_foreground(tone: c_double) -> gboolean;
    pub fn he_dynamic_color_get_name(self_: *mut HeDynamicColor) -> *const c_char;
    pub fn he_dynamic_color_set_name(self_: *mut HeDynamicColor, value: *const c_char);
    pub fn he_dynamic_color_get_is_background(self_: *mut HeDynamicColor) -> gboolean;
    pub fn he_dynamic_color_set_is_background(self_: *mut HeDynamicColor, value: gboolean);
    pub fn he_dynamic_color_get_contrast_curve(self_: *mut HeDynamicColor) -> *mut HeContrastCurve;
    pub fn he_dynamic_color_set_contrast_curve(
        self_: *mut HeDynamicColor,
        value: *mut HeContrastCurve,
    );

    //=========================================================================
    // HeDynamicScheme
    //=========================================================================
    pub fn he_dynamic_scheme_get_type() -> GType;
    pub fn he_dynamic_scheme_new(
        hct: *mut HeHCTColor,
        variant: HeSchemeVariant,
        is_dark: gboolean,
        contrast_level: c_double,
        primary: *mut HeTonalPalette,
        secondary: *mut HeTonalPalette,
        tertiary: *mut HeTonalPalette,
        neutral: *mut HeTonalPalette,
        neutral_variant: *mut HeTonalPalette,
        _error_: *mut HeTonalPalette,
    ) -> *mut HeDynamicScheme;
    pub fn he_dynamic_scheme_get_hct(
        self_: *mut HeDynamicScheme,
        dynamic_color: *mut HeDynamicColor,
        result: *mut HeHCTColor,
    );
    pub fn he_dynamic_scheme_get_primary_key(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_secondary_key(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_tertiary_key(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_neutral_key(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_neutral_variant_key(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_background(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_on_background(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_surface(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_surface_dim(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_surface_bright(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_surface_container_lowest(
        self_: *mut HeDynamicScheme,
    ) -> *mut c_char;
    pub fn he_dynamic_scheme_get_surface_container_low(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_surface_container(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_surface_container_high(self_: *mut HeDynamicScheme)
        -> *mut c_char;
    pub fn he_dynamic_scheme_get_surface_container_highest(
        self_: *mut HeDynamicScheme,
    ) -> *mut c_char;
    pub fn he_dynamic_scheme_get_on_surface(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_surface_variant(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_on_surface_variant(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_inverse_surface(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_inverse_on_surface(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_outline(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_outline_variant(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_shadow(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_scrim(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_primary(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_on_primary(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_primary_container(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_on_primary_container(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_inverse_primary(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_secondary(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_on_secondary(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_secondary_container(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_on_secondary_container(self_: *mut HeDynamicScheme)
        -> *mut c_char;
    pub fn he_dynamic_scheme_get_tertiary(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_on_tertiary(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_tertiary_container(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_on_tertiary_container(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_error(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_on_error(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_error_container(self_: *mut HeDynamicScheme) -> *mut c_char;
    pub fn he_dynamic_scheme_get_on_error_container(self_: *mut HeDynamicScheme) -> *mut c_char;

    //=========================================================================
    // HeEmptyPage
    //=========================================================================
    pub fn he_empty_page_get_type() -> GType;
    pub fn he_empty_page_new() -> *mut HeEmptyPage;
    pub fn he_empty_page_get_title(self_: *mut HeEmptyPage) -> *const c_char;
    pub fn he_empty_page_set_title(self_: *mut HeEmptyPage, value: *const c_char);
    pub fn he_empty_page_get_description(self_: *mut HeEmptyPage) -> *const c_char;
    pub fn he_empty_page_set_description(self_: *mut HeEmptyPage, value: *const c_char);
    pub fn he_empty_page_get_icon(self_: *mut HeEmptyPage) -> *const c_char;
    pub fn he_empty_page_set_icon(self_: *mut HeEmptyPage, value: *const c_char);
    pub fn he_empty_page_set_resource(self_: *mut HeEmptyPage, value: *const c_char);
    pub fn he_empty_page_get_button(self_: *mut HeEmptyPage) -> *const c_char;
    pub fn he_empty_page_set_button(self_: *mut HeEmptyPage, value: *const c_char);

    //=========================================================================
    // HeKeyColor
    //=========================================================================
    pub fn he_key_color_get_type() -> GType;
    pub fn he_key_color_new(hue: c_double, requested_chroma: c_double) -> *mut HeKeyColor;
    pub fn he_key_color_create(self_: *mut HeKeyColor, result: *mut HeHCTColor);
    pub fn he_key_color_get_hue(self_: *mut HeKeyColor) -> c_double;
    pub fn he_key_color_set_hue(self_: *mut HeKeyColor, value: c_double);
    pub fn he_key_color_get_requested_chroma(self_: *mut HeKeyColor) -> c_double;
    pub fn he_key_color_set_requested_chroma(self_: *mut HeKeyColor, value: c_double);

    //=========================================================================
    // HeMiniContentBlock
    //=========================================================================
    pub fn he_mini_content_block_get_type() -> GType;
    pub fn he_mini_content_block_new_with_details(
        t: *const c_char,
        s: *const c_char,
        pb: *mut HeButton,
        w: *mut gtk::GtkWidget,
    ) -> *mut HeMiniContentBlock;
    pub fn he_mini_content_block_new() -> *mut HeMiniContentBlock;
    pub fn he_mini_content_block_get_widget(self_: *mut HeMiniContentBlock) -> *mut gtk::GtkWidget;
    pub fn he_mini_content_block_set_widget(
        self_: *mut HeMiniContentBlock,
        value: *mut gtk::GtkWidget,
    );
    pub fn he_mini_content_block_get_title(self_: *mut HeMiniContentBlock) -> *const c_char;
    pub fn he_mini_content_block_set_title(self_: *mut HeMiniContentBlock, value: *const c_char);
    pub fn he_mini_content_block_get_subtitle(self_: *mut HeMiniContentBlock) -> *const c_char;
    pub fn he_mini_content_block_set_subtitle(self_: *mut HeMiniContentBlock, value: *const c_char);
    pub fn he_mini_content_block_get_icon(self_: *mut HeMiniContentBlock) -> *const c_char;
    pub fn he_mini_content_block_set_icon(self_: *mut HeMiniContentBlock, value: *const c_char);
    pub fn he_mini_content_block_set_gicon(self_: *mut HeMiniContentBlock, value: *mut gio::GIcon);
    pub fn he_mini_content_block_set_paintable(
        self_: *mut HeMiniContentBlock,
        value: *mut gdk::GdkPaintable,
    );
    pub fn he_mini_content_block_get_primary_button(
        self_: *mut HeMiniContentBlock,
    ) -> *mut HeButton;
    pub fn he_mini_content_block_set_primary_button(
        self_: *mut HeMiniContentBlock,
        value: *mut HeButton,
    );

    //=========================================================================
    // HeModifierBadge
    //=========================================================================
    pub fn he_modifier_badge_get_type() -> GType;
    pub fn he_modifier_badge_new(label: *const c_char) -> *mut HeModifierBadge;
    pub fn he_modifier_badge_get_color(self_: *mut HeModifierBadge) -> HeColors;
    pub fn he_modifier_badge_set_color(self_: *mut HeModifierBadge, value: HeColors);
    pub fn he_modifier_badge_get_tinted(self_: *mut HeModifierBadge) -> gboolean;
    pub fn he_modifier_badge_set_tinted(self_: *mut HeModifierBadge, value: gboolean);
    pub fn he_modifier_badge_get_label(self_: *mut HeModifierBadge) -> *const c_char;
    pub fn he_modifier_badge_set_label(self_: *mut HeModifierBadge, value: *const c_char);
    pub fn he_modifier_badge_get_alignment(self_: *mut HeModifierBadge)
        -> HeModifierBadgeAlignment;
    pub fn he_modifier_badge_set_alignment(
        self_: *mut HeModifierBadge,
        value: HeModifierBadgeAlignment,
    );

    //=========================================================================
    // HeMonochromaticScheme
    //=========================================================================
    pub fn he_monochromatic_scheme_get_type() -> GType;
    pub fn he_monochromatic_scheme_generate(
        self_: *mut HeMonochromaticScheme,
        hct: *mut HeHCTColor,
        is_dark: gboolean,
        contrast: c_double,
    ) -> *mut HeDynamicScheme;
    pub fn he_monochromatic_scheme_new() -> *mut HeMonochromaticScheme;

    //=========================================================================
    // HeMutedScheme
    //=========================================================================
    pub fn he_muted_scheme_get_type() -> GType;
    pub fn he_muted_scheme_generate(
        self_: *mut HeMutedScheme,
        hct: *mut HeHCTColor,
        is_dark: gboolean,
        contrast: c_double,
    ) -> *mut HeDynamicScheme;
    pub fn he_muted_scheme_new() -> *mut HeMutedScheme;

    //=========================================================================
    // HeNavigationRail
    //=========================================================================
    pub fn he_navigation_rail_get_type() -> GType;
    pub fn he_navigation_rail_new() -> *mut HeNavigationRail;
    pub fn he_navigation_rail_get_stack(self_: *mut HeNavigationRail) -> *mut gtk::GtkStack;
    pub fn he_navigation_rail_set_stack(self_: *mut HeNavigationRail, value: *mut gtk::GtkStack);
    pub fn he_navigation_rail_get_orientation(self_: *mut HeNavigationRail) -> gtk::GtkOrientation;
    pub fn he_navigation_rail_set_orientation(
        self_: *mut HeNavigationRail,
        value: gtk::GtkOrientation,
    );
    pub fn he_navigation_rail_get_hide_labels(self_: *mut HeNavigationRail) -> gboolean;
    pub fn he_navigation_rail_set_hide_labels(self_: *mut HeNavigationRail, value: gboolean);

    //=========================================================================
    // HeNavigationSection
    //=========================================================================
    pub fn he_navigation_section_get_type() -> GType;
    pub fn he_navigation_section_new() -> *mut HeNavigationSection;
    pub fn he_navigation_section_get_stack(self_: *mut HeNavigationSection) -> *mut gtk::GtkStack;
    pub fn he_navigation_section_set_stack(
        self_: *mut HeNavigationSection,
        value: *mut gtk::GtkStack,
    );
    pub fn he_navigation_section_get_orientation(
        self_: *mut HeNavigationSection,
    ) -> gtk::GtkOrientation;
    pub fn he_navigation_section_set_orientation(
        self_: *mut HeNavigationSection,
        value: gtk::GtkOrientation,
    );

    //=========================================================================
    // HeOverlayButton
    //=========================================================================
    pub fn he_overlay_button_get_type() -> GType;
    pub fn he_overlay_button_new(
        icon: *const c_char,
        label: *const c_char,
        secondary_icon: *const c_char,
    ) -> *mut HeOverlayButton;
    pub fn he_overlay_button_get_size(self_: *mut HeOverlayButton) -> HeOverlayButtonSize;
    pub fn he_overlay_button_set_size(self_: *mut HeOverlayButton, value: HeOverlayButtonSize);
    pub fn he_overlay_button_get_typeb(self_: *mut HeOverlayButton) -> HeOverlayButtonTypeButton;
    pub fn he_overlay_button_set_typeb(
        self_: *mut HeOverlayButton,
        value: HeOverlayButtonTypeButton,
    );
    pub fn he_overlay_button_get_typeb2(self_: *mut HeOverlayButton) -> HeOverlayButtonTypeButton;
    pub fn he_overlay_button_set_typeb2(
        self_: *mut HeOverlayButton,
        value: HeOverlayButtonTypeButton,
    );
    pub fn he_overlay_button_get_color(self_: *mut HeOverlayButton) -> HeColors;
    pub fn he_overlay_button_set_color(self_: *mut HeOverlayButton, value: HeColors);
    pub fn he_overlay_button_get_secondary_color(self_: *mut HeOverlayButton) -> HeColors;
    pub fn he_overlay_button_set_secondary_color(self_: *mut HeOverlayButton, value: HeColors);
    pub fn he_overlay_button_get_secondary_icon(self_: *mut HeOverlayButton) -> *mut c_char;
    pub fn he_overlay_button_set_secondary_icon(self_: *mut HeOverlayButton, value: *const c_char);
    pub fn he_overlay_button_get_icon(self_: *mut HeOverlayButton) -> *mut c_char;
    pub fn he_overlay_button_set_icon(self_: *mut HeOverlayButton, value: *const c_char);
    pub fn he_overlay_button_get_label(self_: *mut HeOverlayButton) -> *const c_char;
    pub fn he_overlay_button_set_label(self_: *mut HeOverlayButton, value: *const c_char);
    pub fn he_overlay_button_get_primary_tooltip(self_: *mut HeOverlayButton) -> *mut c_char;
    pub fn he_overlay_button_set_primary_tooltip(self_: *mut HeOverlayButton, value: *const c_char);
    pub fn he_overlay_button_get_secondary_tooltip(self_: *mut HeOverlayButton) -> *mut c_char;
    pub fn he_overlay_button_set_secondary_tooltip(
        self_: *mut HeOverlayButton,
        value: *const c_char,
    );
    pub fn he_overlay_button_get_child(self_: *mut HeOverlayButton) -> *mut gtk::GtkWidget;
    pub fn he_overlay_button_set_child(self_: *mut HeOverlayButton, value: *mut gtk::GtkWidget);
    pub fn he_overlay_button_get_alignment(self_: *mut HeOverlayButton)
        -> HeOverlayButtonAlignment;
    pub fn he_overlay_button_set_alignment(
        self_: *mut HeOverlayButton,
        value: HeOverlayButtonAlignment,
    );

    //=========================================================================
    // HeProgressBar
    //=========================================================================
    pub fn he_progress_bar_get_type() -> GType;
    pub fn he_progress_bar_new() -> *mut HeProgressBar;
    pub fn he_progress_bar_get_stop_indicator_visibility(self_: *mut HeProgressBar) -> gboolean;
    pub fn he_progress_bar_set_stop_indicator_visibility(
        self_: *mut HeProgressBar,
        value: gboolean,
    );
    pub fn he_progress_bar_get_is_osd(self_: *mut HeProgressBar) -> gboolean;
    pub fn he_progress_bar_set_is_osd(self_: *mut HeProgressBar, value: gboolean);

    //=========================================================================
    // HePropertyAnimationTarget
    //=========================================================================
    pub fn he_property_animation_target_get_type() -> GType;
    pub fn he_property_animation_target_new() -> *mut HePropertyAnimationTarget;
    pub fn he_property_animation_target_animate_property(
        self_: *mut HePropertyAnimationTarget,
        value: c_double,
    );
    pub fn he_property_animation_target_get_object(
        self_: *mut HePropertyAnimationTarget,
    ) -> *mut gobject::GObject;
    pub fn he_property_animation_target_set_object(
        self_: *mut HePropertyAnimationTarget,
        value: *mut gobject::GObject,
    );
    pub fn he_property_animation_target_get_pspec(
        self_: *mut HePropertyAnimationTarget,
    ) -> *mut gobject::GParamSpec;
    pub fn he_property_animation_target_set_pspec(
        self_: *mut HePropertyAnimationTarget,
        value: *mut gobject::GParamSpec,
    );

    //=========================================================================
    // HeQuantizer
    //=========================================================================
    pub fn he_quantizer_get_type() -> GType;
    pub fn he_quantizer_quantize(
        self_: *mut HeQuantizer,
        pixels: *mut c_int,
        pixels_length1: c_int,
        max_colors: c_int,
    ) -> *mut HeQuantizerResult;

    //=========================================================================
    // HeQuantizerCelebi
    //=========================================================================
    pub fn he_quantizer_celebi_get_type() -> GType;
    pub fn he_quantizer_celebi_new() -> *mut HeQuantizerCelebi;
    pub fn he_quantizer_celebi_quantize(
        self_: *mut HeQuantizerCelebi,
        pixels: *mut c_int,
        pixels_length1: c_int,
        max_colors: c_int,
    ) -> *mut glib::GHashTable;

    //=========================================================================
    // HeQuantizerMap
    //=========================================================================
    pub fn he_quantizer_map_get_type() -> GType;
    pub fn he_quantizer_map_get_color_to_count(self_: *mut HeQuantizerMap)
        -> *mut glib::GHashTable;
    pub fn he_quantizer_map_new() -> *mut HeQuantizerMap;

    //=========================================================================
    // HeQuantizerResult
    //=========================================================================
    pub fn he_quantizer_result_get_type() -> GType;
    pub fn he_quantizer_result_new(color_to_count: *mut glib::GHashTable)
        -> *mut HeQuantizerResult;

    //=========================================================================
    // HeQuantizerWsmeans
    //=========================================================================
    pub fn he_quantizer_wsmeans_get_type() -> GType;
    pub fn he_quantizer_wsmeans_quantize(
        input_pixels: *mut c_int,
        input_pixels_length1: c_int,
        starting_clusters: *mut c_int,
        starting_clusters_length1: c_int,
        max_colors: c_int,
    ) -> *mut glib::GHashTable;

    //=========================================================================
    // HeQuantizerWu
    //=========================================================================
    pub fn he_quantizer_wu_get_type() -> GType;
    pub fn he_quantizer_wu_new() -> *mut HeQuantizerWu;

    //=========================================================================
    // HeSaladScheme
    //=========================================================================
    pub fn he_salad_scheme_get_type() -> GType;
    pub fn he_salad_scheme_generate(
        self_: *mut HeSaladScheme,
        hct: *mut HeHCTColor,
        is_dark: gboolean,
        contrast: c_double,
    ) -> *mut HeDynamicScheme;
    pub fn he_salad_scheme_new() -> *mut HeSaladScheme;

    //=========================================================================
    // HeScheme
    //=========================================================================
    pub fn he_scheme_get_type() -> GType;
    pub fn he_scheme_new() -> *mut HeScheme;
    pub fn he_scheme_highest_surface(
        self_: *mut HeScheme,
        s: *mut HeDynamicScheme,
    ) -> *mut HeDynamicColor;
    pub fn he_scheme_primary_key(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_secondary_key(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_tertiary_key(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_neutral_key(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_neutral_variant_key(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_background(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_on_background(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_surface(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_surface_variant(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_on_surface(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_on_surface_variant(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_outline(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_outline_variant(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_inverse_surface(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_inverse_on_surface(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_inverse_primary(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_surface_bright(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_surface_dim(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_surface_container_lowest(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_surface_container_low(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_surface_container(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_surface_container_high(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_surface_container_highest(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_primary(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_on_primary(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_primary_container(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_on_primary_container(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_secondary(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_on_secondary(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_secondary_container(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_on_secondary_container(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_tertiary(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_on_tertiary(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_tertiary_container(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_on_tertiary_container(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_shadow(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_scrim(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_error(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_on_error(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_error_container(self_: *mut HeScheme) -> *mut HeDynamicColor;
    pub fn he_scheme_on_error_container(self_: *mut HeScheme) -> *mut HeDynamicColor;

    //=========================================================================
    // HeScore
    //=========================================================================
    pub fn he_score_get_type() -> GType;
    pub fn he_score_score(
        self_: *mut HeScore,
        colors_to_population: *mut glib::GHashTable,
        desired: *mut c_int,
    ) -> *mut glib::GArray;
    pub fn he_score_new() -> *mut HeScore;

    //=========================================================================
    // HeScoreAnnotatedColor
    //=========================================================================
    pub fn he_score_annotated_color_get_type() -> GType;
    pub fn he_score_annotated_color_new() -> *mut HeScoreAnnotatedColor;

    //=========================================================================
    // HeSegmentedButton
    //=========================================================================
    pub fn he_segmented_button_get_type() -> GType;
    pub fn he_segmented_button_add_child(
        self_: *mut HeSegmentedButton,
        builder: *mut gtk::GtkBuilder,
        child: *mut gobject::GObject,
        type_: *const c_char,
    );
    pub fn he_segmented_button_new() -> *mut HeSegmentedButton;

    //=========================================================================
    // HeSettingsList
    //=========================================================================
    pub fn he_settings_list_get_type() -> GType;
    pub fn he_settings_list_add(self_: *mut HeSettingsList, child: *mut gtk::GtkWidget);
    pub fn he_settings_list_remove(self_: *mut HeSettingsList, child: *mut gtk::GtkWidget);
    pub fn he_settings_list_new() -> *mut HeSettingsList;
    pub fn he_settings_list_get_title(self_: *mut HeSettingsList) -> *const c_char;
    pub fn he_settings_list_set_title(self_: *mut HeSettingsList, value: *const c_char);
    pub fn he_settings_list_get_description(self_: *mut HeSettingsList) -> *const c_char;
    pub fn he_settings_list_set_description(self_: *mut HeSettingsList, value: *const c_char);

    //=========================================================================
    // HeSettingsPage
    //=========================================================================
    pub fn he_settings_page_get_type() -> GType;
    pub fn he_settings_page_add_list(self_: *mut HeSettingsPage, list: *mut HeSettingsList);
    pub fn he_settings_page_new(title: *const c_char) -> *mut HeSettingsPage;
    pub fn he_settings_page_get_title(self_: *mut HeSettingsPage) -> *const c_char;
    pub fn he_settings_page_set_title(self_: *mut HeSettingsPage, value: *const c_char);

    //=========================================================================
    // HeSettingsRow
    //=========================================================================
    pub fn he_settings_row_get_type() -> GType;
    pub fn he_settings_row_add(self_: *mut HeSettingsRow, child: *mut gtk::GtkWidget);
    pub fn he_settings_row_new_with_details(
        title: *const c_char,
        subtitle: *const c_char,
        primary_button: *mut HeButton,
    ) -> *mut HeSettingsRow;
    pub fn he_settings_row_new() -> *mut HeSettingsRow;
    pub fn he_settings_row_get_title(self_: *mut HeSettingsRow) -> *const c_char;
    pub fn he_settings_row_set_title(self_: *mut HeSettingsRow, value: *const c_char);
    pub fn he_settings_row_get_subtitle(self_: *mut HeSettingsRow) -> *const c_char;
    pub fn he_settings_row_set_subtitle(self_: *mut HeSettingsRow, value: *const c_char);
    pub fn he_settings_row_get_icon(self_: *mut HeSettingsRow) -> *const c_char;
    pub fn he_settings_row_set_icon(self_: *mut HeSettingsRow, value: *const c_char);
    pub fn he_settings_row_set_gicon(self_: *mut HeSettingsRow, value: *mut gio::GIcon);
    pub fn he_settings_row_set_paintable(self_: *mut HeSettingsRow, value: *mut gdk::GdkPaintable);
    pub fn he_settings_row_get_primary_button(self_: *mut HeSettingsRow) -> *mut HeButton;
    pub fn he_settings_row_set_primary_button(self_: *mut HeSettingsRow, value: *mut HeButton);
    pub fn he_settings_row_get_activatable_widget(self_: *mut HeSettingsRow)
        -> *mut gtk::GtkWidget;
    pub fn he_settings_row_set_activatable_widget(
        self_: *mut HeSettingsRow,
        value: *mut gtk::GtkWidget,
    );

    //=========================================================================
    // HeSettingsWindow
    //=========================================================================
    pub fn he_settings_window_get_type() -> GType;
    pub fn he_settings_window_add_page(self_: *mut HeSettingsWindow, page: *mut HeSettingsPage);
    pub fn he_settings_window_add_list(self_: *mut HeSettingsWindow, list: *mut HeSettingsList);
    pub fn he_settings_window_new(parent: *mut gtk::GtkWindow) -> *mut HeSettingsWindow;

    //=========================================================================
    // HeSideBar
    //=========================================================================
    pub fn he_side_bar_get_type() -> GType;
    pub fn he_side_bar_new(title: *mut gtk::GtkWidget, subtitle: *const c_char) -> *mut HeSideBar;
    pub fn he_side_bar_get_title(self_: *mut HeSideBar) -> *mut gtk::GtkWidget;
    pub fn he_side_bar_set_title(self_: *mut HeSideBar, value: *mut gtk::GtkWidget);
    pub fn he_side_bar_get_titlewidget(self_: *mut HeSideBar) -> *mut gtk::GtkWidget;
    pub fn he_side_bar_set_titlewidget(self_: *mut HeSideBar, value: *mut gtk::GtkWidget);
    pub fn he_side_bar_get_subtitle(self_: *mut HeSideBar) -> *const c_char;
    pub fn he_side_bar_set_subtitle(self_: *mut HeSideBar, value: *const c_char);
    pub fn he_side_bar_get_show_right_title_buttons(self_: *mut HeSideBar) -> gboolean;
    pub fn he_side_bar_set_show_right_title_buttons(self_: *mut HeSideBar, value: gboolean);
    pub fn he_side_bar_get_show_left_title_buttons(self_: *mut HeSideBar) -> gboolean;
    pub fn he_side_bar_set_show_left_title_buttons(self_: *mut HeSideBar, value: gboolean);
    pub fn he_side_bar_get_show_back(self_: *mut HeSideBar) -> gboolean;
    pub fn he_side_bar_set_show_back(self_: *mut HeSideBar, value: gboolean);
    pub fn he_side_bar_get_stack(self_: *mut HeSideBar) -> *mut gtk::GtkStack;
    pub fn he_side_bar_set_stack(self_: *mut HeSideBar, value: *mut gtk::GtkStack);
    pub fn he_side_bar_get_scroller(self_: *mut HeSideBar) -> *mut gtk::GtkScrolledWindow;
    pub fn he_side_bar_set_scroller(self_: *mut HeSideBar, value: *mut gtk::GtkScrolledWindow);
    pub fn he_side_bar_get_has_margins(self_: *mut HeSideBar) -> gboolean;
    pub fn he_side_bar_set_has_margins(self_: *mut HeSideBar, value: gboolean);

    //=========================================================================
    // HeSlider
    //=========================================================================
    pub fn he_slider_get_type() -> GType;
    pub fn he_slider_new() -> *mut HeSlider;
    pub fn he_slider_add_mark(self_: *mut HeSlider, value: c_double, text: *const c_char);
    pub fn he_slider_get_left_icon(self_: *mut HeSlider) -> *const c_char;
    pub fn he_slider_set_left_icon(self_: *mut HeSlider, value: *const c_char);
    pub fn he_slider_get_right_icon(self_: *mut HeSlider) -> *const c_char;
    pub fn he_slider_set_right_icon(self_: *mut HeSlider, value: *const c_char);
    pub fn he_slider_get_stop_indicator_visibility(self_: *mut HeSlider) -> gboolean;
    pub fn he_slider_set_stop_indicator_visibility(self_: *mut HeSlider, value: gboolean);

    //=========================================================================
    // HeSpringAnimation
    //=========================================================================
    pub fn he_spring_animation_get_type() -> GType;
    pub fn he_spring_animation_new(
        widget: *mut gtk::GtkWidget,
        from: c_double,
        to: c_double,
        sparams: *mut HeSpringParams,
        target: *mut HeAnimationTarget,
    ) -> *mut HeSpringAnimation;
    pub fn he_spring_animation_get_epsilon(self_: *mut HeSpringAnimation) -> c_double;
    pub fn he_spring_animation_set_epsilon(self_: *mut HeSpringAnimation, value: c_double);
    pub fn he_spring_animation_get_estimated_duration(self_: *mut HeSpringAnimation) -> c_uint;
    pub fn he_spring_animation_set_estimated_duration(self_: *mut HeSpringAnimation, value: c_uint);
    pub fn he_spring_animation_get_initial_velocity(self_: *mut HeSpringAnimation) -> c_double;
    pub fn he_spring_animation_set_initial_velocity(self_: *mut HeSpringAnimation, value: c_double);
    pub fn he_spring_animation_get_latch(self_: *mut HeSpringAnimation) -> gboolean;
    pub fn he_spring_animation_set_latch(self_: *mut HeSpringAnimation, value: gboolean);
    pub fn he_spring_animation_get_spring_params(
        self_: *mut HeSpringAnimation,
    ) -> *mut HeSpringParams;
    pub fn he_spring_animation_set_spring_params(
        self_: *mut HeSpringAnimation,
        value: *mut HeSpringParams,
    );
    pub fn he_spring_animation_get_value_from(self_: *mut HeSpringAnimation) -> c_double;
    pub fn he_spring_animation_set_value_from(self_: *mut HeSpringAnimation, value: c_double);
    pub fn he_spring_animation_get_value_to(self_: *mut HeSpringAnimation) -> c_double;
    pub fn he_spring_animation_set_value_to(self_: *mut HeSpringAnimation, value: c_double);
    pub fn he_spring_animation_get_velocity(self_: *mut HeSpringAnimation) -> c_double;
    pub fn he_spring_animation_set_velocity(self_: *mut HeSpringAnimation, value: c_double);

    //=========================================================================
    // HeSpringParams
    //=========================================================================
    pub fn he_spring_params_get_type() -> GType;
    pub fn he_spring_params_new(
        damping_ratio: c_double,
        mass: c_double,
        stiffness: c_double,
    ) -> *mut HeSpringParams;
    pub fn he_spring_params_new_full(
        damping: c_double,
        mass: c_double,
        stiffness: c_double,
    ) -> *mut HeSpringParams;
    pub fn he_spring_params_get_damping(self_: *mut HeSpringParams) -> c_double;
    pub fn he_spring_params_set_damping(self_: *mut HeSpringParams, value: c_double);
    pub fn he_spring_params_get_damping_ratio(self_: *mut HeSpringParams) -> c_double;
    pub fn he_spring_params_set_damping_ratio(self_: *mut HeSpringParams, value: c_double);
    pub fn he_spring_params_get_mass(self_: *mut HeSpringParams) -> c_double;
    pub fn he_spring_params_set_mass(self_: *mut HeSpringParams, value: c_double);
    pub fn he_spring_params_get_stiffness(self_: *mut HeSpringParams) -> c_double;
    pub fn he_spring_params_set_stiffness(self_: *mut HeSpringParams, value: c_double);

    //=========================================================================
    // HeStyleManager
    //=========================================================================
    pub fn he_style_manager_get_type() -> GType;
    pub fn he_style_manager_update(self_: *mut HeStyleManager);
    pub fn he_style_manager_style_refresh(
        self_: *mut HeStyleManager,
        scheme_factory: *mut HeDynamicScheme,
    ) -> *mut c_char;
    pub fn he_style_manager_weight_refresh(
        self_: *mut HeStyleManager,
        font_weight: c_double,
    ) -> *mut c_char;
    pub fn he_style_manager_register(self_: *mut HeStyleManager);
    pub fn he_style_manager_unregister(self_: *mut HeStyleManager);
    pub fn he_style_manager_new() -> *mut HeStyleManager;
    pub fn he_style_manager_get_is_registered(self_: *mut HeStyleManager) -> gboolean;
    pub fn he_style_manager_get_user_base(self_: *mut HeStyleManager) -> *mut gtk::GtkCssProvider;
    pub fn he_style_manager_get_user_dark(self_: *mut HeStyleManager) -> *mut gtk::GtkCssProvider;

    //=========================================================================
    // HeSwitch
    //=========================================================================
    pub fn he_switch_get_type() -> GType;
    pub fn he_switch_new() -> *mut HeSwitch;
    pub fn he_switch_get_left_icon(self_: *mut HeSwitch) -> *const c_char;
    pub fn he_switch_set_left_icon(self_: *mut HeSwitch, value: *const c_char);
    pub fn he_switch_get_right_icon(self_: *mut HeSwitch) -> *const c_char;
    pub fn he_switch_set_right_icon(self_: *mut HeSwitch, value: *const c_char);

    //=========================================================================
    // HeSwitchBar
    //=========================================================================
    pub fn he_switch_bar_get_type() -> GType;
    pub fn he_switch_bar_new() -> *mut HeSwitchBar;
    pub fn he_switch_bar_get_title(self_: *mut HeSwitchBar) -> *const c_char;
    pub fn he_switch_bar_set_title(self_: *mut HeSwitchBar, value: *const c_char);
    pub fn he_switch_bar_get_subtitle(self_: *mut HeSwitchBar) -> *const c_char;
    pub fn he_switch_bar_set_subtitle(self_: *mut HeSwitchBar, value: *const c_char);
    pub fn he_switch_bar_get_sensitive_widget(self_: *mut HeSwitchBar) -> *mut gtk::GtkWidget;
    pub fn he_switch_bar_set_sensitive_widget(self_: *mut HeSwitchBar, value: *mut gtk::GtkWidget);

    //=========================================================================
    // HeTab
    //=========================================================================
    pub fn he_tab_get_type() -> GType;
    pub fn he_tab_new(label: *const c_char, page: *mut gtk::GtkWidget) -> *mut HeTab;
    pub fn he_tab_get_label(self_: *mut HeTab) -> *const c_char;
    pub fn he_tab_set_label(self_: *mut HeTab, value: *const c_char);
    pub fn he_tab_set_tooltip(self_: *mut HeTab, value: *const c_char);
    pub fn he_tab_get_pinned(self_: *mut HeTab) -> gboolean;
    pub fn he_tab_set_pinned(self_: *mut HeTab, value: gboolean);
    pub fn he_tab_get_can_pin(self_: *mut HeTab) -> gboolean;
    pub fn he_tab_set_can_pin(self_: *mut HeTab, value: gboolean);
    pub fn he_tab_get_can_close(self_: *mut HeTab) -> gboolean;
    pub fn he_tab_set_can_close(self_: *mut HeTab, value: gboolean);
    pub fn he_tab_get_page(self_: *mut HeTab) -> *mut gtk::GtkWidget;
    pub fn he_tab_set_page(self_: *mut HeTab, value: *mut gtk::GtkWidget);
    pub fn he_tab_get_menu(self_: *mut HeTab) -> *mut gio::GMenu;
    pub fn he_tab_get_actions(self_: *mut HeTab) -> *mut gio::GSimpleActionGroup;

    //=========================================================================
    // HeTabPage
    //=========================================================================
    pub fn he_tab_page_get_type() -> GType;
    pub fn he_tab_page_new(tab: *mut HeTab) -> *mut HeTabPage;
    pub fn he_tab_page_get_tab(self_: *mut HeTabPage) -> *mut HeTab;
    pub fn he_tab_page_set_tab(self_: *mut HeTabPage, value: *mut HeTab);

    //=========================================================================
    // HeTabSwitcher
    //=========================================================================
    pub fn he_tab_switcher_get_type() -> GType;
    pub fn he_tab_switcher_get_tab_position(self_: *mut HeTabSwitcher, tab: *mut HeTab) -> c_int;
    pub fn he_tab_switcher_insert_tab(
        self_: *mut HeTabSwitcher,
        tab: *mut HeTab,
        index: c_int,
    ) -> c_uint;
    pub fn he_tab_switcher_remove_tab(self_: *mut HeTabSwitcher, tab: *mut HeTab);
    pub fn he_tab_switcher_new() -> *mut HeTabSwitcher;
    pub fn he_tab_switcher_get_n_tabs(self_: *mut HeTabSwitcher) -> c_int;
    pub fn he_tab_switcher_get_tabs(self_: *mut HeTabSwitcher) -> *mut glib::GList;
    pub fn he_tab_switcher_get_tab_bar_behavior(
        self_: *mut HeTabSwitcher,
    ) -> HeTabSwitcherTabBarBehavior;
    pub fn he_tab_switcher_set_tab_bar_behavior(
        self_: *mut HeTabSwitcher,
        value: HeTabSwitcherTabBarBehavior,
    );
    pub fn he_tab_switcher_get_allow_duplicate_tabs(self_: *mut HeTabSwitcher) -> gboolean;
    pub fn he_tab_switcher_set_allow_duplicate_tabs(self_: *mut HeTabSwitcher, value: gboolean);
    pub fn he_tab_switcher_get_allow_drag(self_: *mut HeTabSwitcher) -> gboolean;
    pub fn he_tab_switcher_set_allow_drag(self_: *mut HeTabSwitcher, value: gboolean);
    pub fn he_tab_switcher_get_allow_pinning(self_: *mut HeTabSwitcher) -> gboolean;
    pub fn he_tab_switcher_set_allow_pinning(self_: *mut HeTabSwitcher, value: gboolean);
    pub fn he_tab_switcher_get_allow_closing(self_: *mut HeTabSwitcher) -> gboolean;
    pub fn he_tab_switcher_set_allow_closing(self_: *mut HeTabSwitcher, value: gboolean);
    pub fn he_tab_switcher_get_allow_new_window(self_: *mut HeTabSwitcher) -> gboolean;
    pub fn he_tab_switcher_set_allow_new_window(self_: *mut HeTabSwitcher, value: gboolean);
    pub fn he_tab_switcher_get_current(self_: *mut HeTabSwitcher) -> *mut HeTab;
    pub fn he_tab_switcher_set_current(self_: *mut HeTabSwitcher, value: *mut HeTab);
    pub fn he_tab_switcher_get_menu(self_: *mut HeTabSwitcher) -> *mut gio::GMenu;
    pub fn he_tab_switcher_get_actions(self_: *mut HeTabSwitcher) -> *mut gio::GSimpleActionGroup;

    //=========================================================================
    // HeTemperatureCache
    //=========================================================================
    pub fn he_temperature_cache_get_type() -> GType;
    pub fn he_temperature_cache_new(input: *mut HeHCTColor) -> *mut HeTemperatureCache;
    pub fn he_temperature_cache_get_hcts_by_temp(
        self_: *mut HeTemperatureCache,
    ) -> *mut glib::GList;
    pub fn he_temperature_cache_diff_temps(
        self_: *mut HeTemperatureCache,
        a: *mut HeHCTColor,
        b: *mut HeHCTColor,
    ) -> c_int;
    pub fn he_temperature_cache_get_warmest(
        self_: *mut HeTemperatureCache,
        result: *mut HeHCTColor,
    );
    pub fn he_temperature_cache_get_coldest(
        self_: *mut HeTemperatureCache,
        result: *mut HeHCTColor,
    );
    pub fn he_temperature_cache_get_complement(
        self_: *mut HeTemperatureCache,
        result: *mut HeHCTColor,
    );
    pub fn he_temperature_cache_analogous(
        self_: *mut HeTemperatureCache,
        count: c_int,
        divisions: c_int,
    ) -> *mut glib::GList;
    pub fn he_temperature_cache_get_input_relative_temperature(
        self_: *mut HeTemperatureCache,
    ) -> c_double;
    pub fn he_temperature_cache_get_temp(
        self_: *mut HeTemperatureCache,
        hct: *mut HeHCTColor,
    ) -> c_double;
    pub fn he_temperature_cache_get_input(self_: *mut HeTemperatureCache, result: *mut HeHCTColor);
    pub fn he_temperature_cache_set_input(self_: *mut HeTemperatureCache, value: *mut HeHCTColor);

    //=========================================================================
    // HeTextField
    //=========================================================================
    pub fn he_text_field_get_type() -> GType;
    pub fn he_text_field_get_internal_entry(self_: *mut HeTextField) -> *mut gtk::GtkText;
    pub fn he_text_field_new_from_regex(regex_arg: *mut glib::GRegex) -> *mut HeTextField;
    pub fn he_text_field_new() -> *mut HeTextField;
    pub fn he_text_field_get_is_valid(self_: *mut HeTextField) -> gboolean;
    pub fn he_text_field_set_is_valid(self_: *mut HeTextField, value: gboolean);
    pub fn he_text_field_get_needs_validation(self_: *mut HeTextField) -> gboolean;
    pub fn he_text_field_set_needs_validation(self_: *mut HeTextField, value: gboolean);
    pub fn he_text_field_get_min_length(self_: *mut HeTextField) -> c_int;
    pub fn he_text_field_set_min_length(self_: *mut HeTextField, value: c_int);
    pub fn he_text_field_get_regex(self_: *mut HeTextField) -> *mut glib::GRegex;
    pub fn he_text_field_set_regex(self_: *mut HeTextField, value: *mut glib::GRegex);
    pub fn he_text_field_get_is_search(self_: *mut HeTextField) -> gboolean;
    pub fn he_text_field_set_is_search(self_: *mut HeTextField, value: gboolean);
    pub fn he_text_field_get_is_outline(self_: *mut HeTextField) -> gboolean;
    pub fn he_text_field_set_is_outline(self_: *mut HeTextField, value: gboolean);
    pub fn he_text_field_get_entry(self_: *mut HeTextField) -> *mut gtk::GtkText;
    pub fn he_text_field_get_text(self_: *mut HeTextField) -> *const c_char;
    pub fn he_text_field_set_text(self_: *mut HeTextField, value: *const c_char);
    pub fn he_text_field_get_suffix_icon(self_: *mut HeTextField) -> *const c_char;
    pub fn he_text_field_set_suffix_icon(self_: *mut HeTextField, value: *const c_char);
    pub fn he_text_field_get_prefix_icon(self_: *mut HeTextField) -> *const c_char;
    pub fn he_text_field_set_prefix_icon(self_: *mut HeTextField, value: *const c_char);
    pub fn he_text_field_get_support_text(self_: *mut HeTextField) -> *const c_char;
    pub fn he_text_field_set_support_text(self_: *mut HeTextField, value: *const c_char);
    pub fn he_text_field_get_placeholder_text(self_: *mut HeTextField) -> *const c_char;
    pub fn he_text_field_set_placeholder_text(self_: *mut HeTextField, value: *const c_char);
    pub fn he_text_field_get_max_length(self_: *mut HeTextField) -> c_int;
    pub fn he_text_field_set_max_length(self_: *mut HeTextField, value: c_int);
    pub fn he_text_field_get_visibility(self_: *mut HeTextField) -> gboolean;
    pub fn he_text_field_set_visibility(self_: *mut HeTextField, value: gboolean);

    //=========================================================================
    // HeTimePicker
    //=========================================================================
    pub fn he_time_picker_get_type() -> GType;
    pub fn he_time_picker_new_with_format(
        format_12: *const c_char,
        format_24: *const c_char,
    ) -> *mut HeTimePicker;
    pub fn he_time_picker_new() -> *mut HeTimePicker;
    pub fn he_time_picker_get_format_12(self_: *mut HeTimePicker) -> *const c_char;
    pub fn he_time_picker_get_format_24(self_: *mut HeTimePicker) -> *const c_char;
    pub fn he_time_picker_get_time(self_: *mut HeTimePicker) -> *mut glib::GDateTime;
    pub fn he_time_picker_set_time(self_: *mut HeTimePicker, value: *mut glib::GDateTime);

    //=========================================================================
    // HeTimedAnimation
    //=========================================================================
    pub fn he_timed_animation_get_type() -> GType;
    pub fn he_timed_animation_new(
        widget: *mut gtk::GtkWidget,
        from: c_double,
        to: c_double,
        duration: c_uint,
        target: *mut HeAnimationTarget,
    ) -> *mut HeTimedAnimation;
    pub fn he_timed_animation_get_value_from(self_: *mut HeTimedAnimation) -> c_double;
    pub fn he_timed_animation_set_value_from(self_: *mut HeTimedAnimation, value: c_double);
    pub fn he_timed_animation_get_value_to(self_: *mut HeTimedAnimation) -> c_double;
    pub fn he_timed_animation_set_value_to(self_: *mut HeTimedAnimation, value: c_double);
    pub fn he_timed_animation_get_duration(self_: *mut HeTimedAnimation) -> c_uint;
    pub fn he_timed_animation_set_duration(self_: *mut HeTimedAnimation, value: c_uint);
    pub fn he_timed_animation_get_easing(self_: *mut HeTimedAnimation) -> HeEasing;
    pub fn he_timed_animation_set_easing(self_: *mut HeTimedAnimation, value: HeEasing);
    pub fn he_timed_animation_get_repeat_count(self_: *mut HeTimedAnimation) -> c_uint;
    pub fn he_timed_animation_set_repeat_count(self_: *mut HeTimedAnimation, value: c_uint);
    pub fn he_timed_animation_get_reverse(self_: *mut HeTimedAnimation) -> gboolean;
    pub fn he_timed_animation_set_reverse(self_: *mut HeTimedAnimation, value: gboolean);
    pub fn he_timed_animation_get_alternate(self_: *mut HeTimedAnimation) -> gboolean;
    pub fn he_timed_animation_set_alternate(self_: *mut HeTimedAnimation, value: gboolean);

    //=========================================================================
    // HeTip
    //=========================================================================
    pub fn he_tip_get_type() -> GType;
    pub fn he_tip_new(
        title: *const c_char,
        image: *const c_char,
        message: *const c_char,
        action_label: *const c_char,
    ) -> *mut HeTip;
    pub fn he_tip_get_title(self_: *mut HeTip) -> *const c_char;
    pub fn he_tip_set_title(self_: *mut HeTip, value: *const c_char);
    pub fn he_tip_get_image(self_: *mut HeTip) -> *const c_char;
    pub fn he_tip_set_image(self_: *mut HeTip, value: *const c_char);
    pub fn he_tip_get_message(self_: *mut HeTip) -> *const c_char;
    pub fn he_tip_set_message(self_: *mut HeTip, value: *const c_char);
    pub fn he_tip_get_action_label(self_: *mut HeTip) -> *const c_char;
    pub fn he_tip_set_action_label(self_: *mut HeTip, value: *const c_char);

    //=========================================================================
    // HeTipView
    //=========================================================================
    pub fn he_tip_view_get_type() -> GType;
    pub fn he_tip_view_new(tip: *mut HeTip, tip_style: *mut HeTipViewStyle) -> *mut HeTipView;
    pub fn he_tip_view_get_tip_style(self_: *mut HeTipView) -> HeTipViewStyle;
    pub fn he_tip_view_set_tip_style(self_: *mut HeTipView, value: HeTipViewStyle);
    pub fn he_tip_view_get_tip(self_: *mut HeTipView) -> *mut HeTip;
    pub fn he_tip_view_set_tip(self_: *mut HeTipView, value: *mut HeTip);

    //=========================================================================
    // HeToast
    //=========================================================================
    pub fn he_toast_get_type() -> GType;
    pub fn he_toast_new(label: *const c_char) -> *mut HeToast;
    pub fn he_toast_send_notification(self_: *mut HeToast);
    pub fn he_toast_get_label(self_: *mut HeToast) -> *const c_char;
    pub fn he_toast_set_label(self_: *mut HeToast, value: *const c_char);
    pub fn he_toast_get_default_action(self_: *mut HeToast) -> *const c_char;
    pub fn he_toast_set_default_action(self_: *mut HeToast, value: *const c_char);

    //=========================================================================
    // HeTonalPalette
    //=========================================================================
    pub fn he_tonal_palette_get_type() -> GType;
    pub fn he_tonal_palette_new(
        hue: c_double,
        chroma: c_double,
        key_color: *mut HeHCTColor,
    ) -> *mut HeTonalPalette;
    pub fn he_tonal_palette_from_int(argb: c_int) -> *mut HeTonalPalette;
    pub fn he_tonal_palette_from_hct(hct: *mut HeHCTColor) -> *mut HeTonalPalette;
    pub fn he_tonal_palette_from_hue_and_chroma(
        hue: c_double,
        chroma: c_double,
    ) -> *mut HeTonalPalette;
    pub fn he_tonal_palette_get_tone(self_: *mut HeTonalPalette, tone: c_int) -> c_int;
    pub fn he_tonal_palette_get_hct(
        self_: *mut HeTonalPalette,
        tone: c_double,
        result: *mut HeHCTColor,
    );
    pub fn he_tonal_palette_get_hue(self_: *mut HeTonalPalette) -> c_double;
    pub fn he_tonal_palette_set_hue(self_: *mut HeTonalPalette, value: c_double);
    pub fn he_tonal_palette_get_chroma(self_: *mut HeTonalPalette) -> c_double;
    pub fn he_tonal_palette_set_chroma(self_: *mut HeTonalPalette, value: c_double);
    pub fn he_tonal_palette_get_key_color(self_: *mut HeTonalPalette, result: *mut HeHCTColor);
    pub fn he_tonal_palette_set_key_color(self_: *mut HeTonalPalette, value: *mut HeHCTColor);

    //=========================================================================
    // HeToneDeltaPair
    //=========================================================================
    pub fn he_tone_delta_pair_get_type() -> GType;
    pub fn he_tone_delta_pair_new(
        role_a: *mut HeDynamicColor,
        role_b: *mut HeDynamicColor,
        delta: c_double,
        polarity: *mut HeTonePolarity,
        stay_together: gboolean,
    ) -> *mut HeToneDeltaPair;

    //=========================================================================
    // HeVibrantScheme
    //=========================================================================
    pub fn he_vibrant_scheme_get_type() -> GType;
    pub fn he_vibrant_scheme_generate(
        self_: *mut HeVibrantScheme,
        hct: *mut HeHCTColor,
        is_dark: gboolean,
        contrast: c_double,
    ) -> *mut HeDynamicScheme;
    pub fn he_vibrant_scheme_new() -> *mut HeVibrantScheme;

    //=========================================================================
    // HeView
    //=========================================================================
    pub fn he_view_get_type() -> GType;
    pub fn he_view_add_child(
        self_: *mut HeView,
        builder: *mut gtk::GtkBuilder,
        child: *mut gobject::GObject,
        type_: *const c_char,
    );
    pub fn he_view_add(self_: *mut HeView, widget: *mut gtk::GtkWidget);
    pub fn he_view_get_title(self_: *mut HeView) -> *const c_char;
    pub fn he_view_set_title(self_: *mut HeView, value: *const c_char);
    pub fn he_view_get_stack(self_: *mut HeView) -> *mut gtk::GtkStack;
    pub fn he_view_set_stack(self_: *mut HeView, value: *mut gtk::GtkStack);
    pub fn he_view_get_subtitle(self_: *mut HeView) -> *const c_char;
    pub fn he_view_set_subtitle(self_: *mut HeView, value: *const c_char);
    pub fn he_view_get_has_margins(self_: *mut HeView) -> gboolean;
    pub fn he_view_set_has_margins(self_: *mut HeView, value: gboolean);

    //=========================================================================
    // HeViewAux
    //=========================================================================
    pub fn he_view_aux_get_type() -> GType;
    pub fn he_view_aux_new() -> *mut HeViewAux;
    pub fn he_view_aux_get_show_aux(self_: *mut HeViewAux) -> gboolean;
    pub fn he_view_aux_set_show_aux(self_: *mut HeViewAux, value: gboolean);

    //=========================================================================
    // HeViewChooser
    //=========================================================================
    pub fn he_view_chooser_get_type() -> GType;
    pub fn he_view_chooser_new() -> *mut HeViewChooser;
    pub fn he_view_chooser_stack_clear(self_: *mut HeViewChooser);
    pub fn he_view_chooser_get_stack(self_: *mut HeViewChooser) -> *mut gtk::GtkStack;
    pub fn he_view_chooser_set_stack(self_: *mut HeViewChooser, value: *mut gtk::GtkStack);

    //=========================================================================
    // HeViewDual
    //=========================================================================
    pub fn he_view_dual_get_type() -> GType;
    pub fn he_view_dual_new(
        orientation: gtk::GtkOrientation,
        show_handle: gboolean,
    ) -> *mut HeViewDual;
    pub fn he_view_dual_get_orientation(self_: *mut HeViewDual) -> gtk::GtkOrientation;
    pub fn he_view_dual_set_orientation(self_: *mut HeViewDual, value: gtk::GtkOrientation);
    pub fn he_view_dual_get_show_handle(self_: *mut HeViewDual) -> gboolean;
    pub fn he_view_dual_set_show_handle(self_: *mut HeViewDual, value: gboolean);
    pub fn he_view_dual_get_child_start(self_: *mut HeViewDual) -> *mut gtk::GtkWidget;
    pub fn he_view_dual_set_child_start(self_: *mut HeViewDual, value: *mut gtk::GtkWidget);
    pub fn he_view_dual_get_child_end(self_: *mut HeViewDual) -> *mut gtk::GtkWidget;
    pub fn he_view_dual_set_child_end(self_: *mut HeViewDual, value: *mut gtk::GtkWidget);

    //=========================================================================
    // HeViewMono
    //=========================================================================
    pub fn he_view_mono_get_type() -> GType;
    pub fn he_view_mono_new(title: *mut gtk::GtkWidget, subtitle: *const c_char)
        -> *mut HeViewMono;
    pub fn he_view_mono_add_titlebar_button(self_: *mut HeViewMono, child: *mut gtk::GtkButton);
    pub fn he_view_mono_add_titlebar_menu(self_: *mut HeViewMono, child: *mut gtk::GtkMenuButton);
    pub fn he_view_mono_add_titlebar_toggle(
        self_: *mut HeViewMono,
        child: *mut gtk::GtkToggleButton,
    );
    pub fn he_view_mono_append(self_: *mut HeViewMono, child: *mut gtk::GtkWidget);
    pub fn he_view_mono_get_title(self_: *mut HeViewMono) -> *mut gtk::GtkWidget;
    pub fn he_view_mono_set_title(self_: *mut HeViewMono, value: *mut gtk::GtkWidget);
    pub fn he_view_mono_get_titlewidget(self_: *mut HeViewMono) -> *mut gtk::GtkWidget;
    pub fn he_view_mono_set_titlewidget(self_: *mut HeViewMono, value: *mut gtk::GtkWidget);
    pub fn he_view_mono_get_subtitle(self_: *mut HeViewMono) -> *const c_char;
    pub fn he_view_mono_set_subtitle(self_: *mut HeViewMono, value: *const c_char);
    pub fn he_view_mono_get_show_right_title_buttons(self_: *mut HeViewMono) -> gboolean;
    pub fn he_view_mono_set_show_right_title_buttons(self_: *mut HeViewMono, value: gboolean);
    pub fn he_view_mono_get_show_left_title_buttons(self_: *mut HeViewMono) -> gboolean;
    pub fn he_view_mono_set_show_left_title_buttons(self_: *mut HeViewMono, value: gboolean);
    pub fn he_view_mono_get_show_back(self_: *mut HeViewMono) -> gboolean;
    pub fn he_view_mono_set_show_back(self_: *mut HeViewMono, value: gboolean);
    pub fn he_view_mono_get_stack(self_: *mut HeViewMono) -> *mut gtk::GtkStack;
    pub fn he_view_mono_set_stack(self_: *mut HeViewMono, value: *mut gtk::GtkStack);
    pub fn he_view_mono_get_scroller(self_: *mut HeViewMono) -> *mut gtk::GtkScrolledWindow;
    pub fn he_view_mono_set_scroller(self_: *mut HeViewMono, value: *mut gtk::GtkScrolledWindow);
    pub fn he_view_mono_get_has_margins(self_: *mut HeViewMono) -> gboolean;
    pub fn he_view_mono_set_has_margins(self_: *mut HeViewMono, value: gboolean);

    //=========================================================================
    // HeViewSubTitle
    //=========================================================================
    pub fn he_view_sub_title_get_type() -> GType;
    pub fn he_view_sub_title_new() -> *mut HeViewSubTitle;
    pub fn he_view_sub_title_get_label(self_: *mut HeViewSubTitle) -> *const c_char;
    pub fn he_view_sub_title_set_label(self_: *mut HeViewSubTitle, value: *const c_char);

    //=========================================================================
    // HeViewSwitcher
    //=========================================================================
    pub fn he_view_switcher_get_type() -> GType;
    pub fn he_view_switcher_new() -> *mut HeViewSwitcher;
    pub fn he_view_switcher_get_stack(self_: *mut HeViewSwitcher) -> *mut gtk::GtkStack;
    pub fn he_view_switcher_set_stack(self_: *mut HeViewSwitcher, value: *mut gtk::GtkStack);

    //=========================================================================
    // HeViewTitle
    //=========================================================================
    pub fn he_view_title_get_type() -> GType;
    pub fn he_view_title_new() -> *mut HeViewTitle;
    pub fn he_view_title_get_label(self_: *mut HeViewTitle) -> *const c_char;
    pub fn he_view_title_set_label(self_: *mut HeViewTitle, value: *const c_char);

    //=========================================================================
    // HeViewingConditions
    //=========================================================================
    pub fn he_viewing_conditions_get_type() -> GType;
    pub fn he_viewing_conditions_lerp(
        start: c_double,
        stop: c_double,
        amount: c_double,
    ) -> c_double;
    pub fn he_viewing_conditions_make(
        white_point: *mut c_double,
        white_point_length1: c_int,
        adapting_luminance: c_double,
        bg_lstar: c_double,
        surround: c_double,
        discount_illuminant: gboolean,
    ) -> *mut HeViewingConditions;
    pub fn he_viewing_conditions_with_lstar(lstar: c_double) -> *mut HeViewingConditions;
    pub fn he_viewing_conditions_get_aw(self_: *mut HeViewingConditions) -> c_double;
    pub fn he_viewing_conditions_set_aw(self_: *mut HeViewingConditions, value: c_double);
    pub fn he_viewing_conditions_get_nbb(self_: *mut HeViewingConditions) -> c_double;
    pub fn he_viewing_conditions_set_nbb(self_: *mut HeViewingConditions, value: c_double);
    pub fn he_viewing_conditions_get_ncb(self_: *mut HeViewingConditions) -> c_double;
    pub fn he_viewing_conditions_set_ncb(self_: *mut HeViewingConditions, value: c_double);
    pub fn he_viewing_conditions_get_c(self_: *mut HeViewingConditions) -> c_double;
    pub fn he_viewing_conditions_set_c(self_: *mut HeViewingConditions, value: c_double);
    pub fn he_viewing_conditions_get_nc(self_: *mut HeViewingConditions) -> c_double;
    pub fn he_viewing_conditions_set_nc(self_: *mut HeViewingConditions, value: c_double);
    pub fn he_viewing_conditions_get_n(self_: *mut HeViewingConditions) -> c_double;
    pub fn he_viewing_conditions_set_n(self_: *mut HeViewingConditions, value: c_double);
    pub fn he_viewing_conditions_get_fl(self_: *mut HeViewingConditions) -> c_double;
    pub fn he_viewing_conditions_set_fl(self_: *mut HeViewingConditions, value: c_double);
    pub fn he_viewing_conditions_get_fl_root(self_: *mut HeViewingConditions) -> c_double;
    pub fn he_viewing_conditions_set_fl_root(self_: *mut HeViewingConditions, value: c_double);
    pub fn he_viewing_conditions_get_z(self_: *mut HeViewingConditions) -> c_double;
    pub fn he_viewing_conditions_set_z(self_: *mut HeViewingConditions, value: c_double);

    //=========================================================================
    // HeWelcomeScreen
    //=========================================================================
    pub fn he_welcome_screen_get_type() -> GType;
    pub fn he_welcome_screen_add_child(
        self_: *mut HeWelcomeScreen,
        builder: *mut gtk::GtkBuilder,
        child: *mut gobject::GObject,
        type_: *const c_char,
    );
    pub fn he_welcome_screen_new(
        appname: *const c_char,
        description: *const c_char,
    ) -> *mut HeWelcomeScreen;
    pub fn he_welcome_screen_get_appname(self_: *mut HeWelcomeScreen) -> *const c_char;
    pub fn he_welcome_screen_set_appname(self_: *mut HeWelcomeScreen, value: *const c_char);
    pub fn he_welcome_screen_get_description(self_: *mut HeWelcomeScreen) -> *const c_char;
    pub fn he_welcome_screen_set_description(self_: *mut HeWelcomeScreen, value: *const c_char);

    //=========================================================================
    // HeWindow
    //=========================================================================
    pub fn he_window_get_type() -> GType;
    pub fn he_window_new() -> *mut HeWindow;
    pub fn he_window_get_parent(self_: *mut HeWindow) -> *mut gtk::GtkWindow;
    pub fn he_window_set_parent(self_: *mut HeWindow, value: *mut gtk::GtkWindow);
    pub fn he_window_get_has_title(self_: *mut HeWindow) -> gboolean;
    pub fn he_window_set_has_title(self_: *mut HeWindow, value: gboolean);
    pub fn he_window_get_has_back_button(self_: *mut HeWindow) -> gboolean;
    pub fn he_window_set_has_back_button(self_: *mut HeWindow, value: gboolean);

    //=========================================================================
    // Other functions
    //=========================================================================
    pub fn he_ensor_accent_from_pixels_async(
        pixels: *mut u8,
        pixels_length1: c_int,
        alpha: gboolean,
        _callback_: gio::GAsyncReadyCallback,
        _callback__target: *mut c_void,
    );
    pub fn he_ensor_accent_from_pixels_finish(_res_: *mut gio::GAsyncResult) -> *mut glib::GArray;
    pub fn he_math_utils_clamp_double(min: c_double, max: c_double, input: c_double) -> c_double;
    pub fn he_math_utils_signum(x: c_double) -> c_int;
    pub fn he_math_utils_to_degrees(radians: c_double) -> c_double;
    pub fn he_math_utils_to_radians(degrees: c_double) -> c_double;
    pub fn he_math_utils_chromatic_adaptation(component: c_double) -> c_double;
    pub fn he_math_utils_inverse_chromatic_adaptation(adapted: c_double) -> c_double;
    pub fn he_math_utils_lerp_point(
        source: *mut c_double,
        source_length1: c_int,
        t: c_double,
        target: *mut c_double,
        target_length1: c_int,
        result_length1: *mut c_int,
    ) -> *mut c_double;
    pub fn he_math_utils_lerp(a: c_double, b: c_double, t: c_double) -> c_double;
    pub fn he_math_utils_sanitize_radians(angle: c_double) -> c_double;
    pub fn he_math_utils_is_bounded_rgb(x: c_double) -> gboolean;
    pub fn he_math_utils_adapt(color_channel: c_double) -> c_double;
    pub fn he_math_utils_elem_mul(
        row: *mut c_double,
        row_length1: c_int,
        matrix: *mut c_double,
        matrix_length1: c_int,
        matrix_length2: c_int,
        result_length1: *mut c_int,
    ) -> *mut c_double;
    pub fn he_math_utils_lab_inverse_fovea(ft: c_double) -> c_double;
    pub fn he_math_utils_lab_fovea(t: c_double) -> c_double;
    pub fn he_math_utils_sanitize_degrees(degrees: c_double) -> c_double;
    pub fn he_math_utils_sanitize_degrees_int(degrees: c_int) -> c_int;
    pub fn he_math_utils_rotate_direction(from: c_double, to: c_double) -> c_double;
    pub fn he_math_utils_difference_degrees(a: c_double, b: c_double) -> c_double;
    pub fn he_math_utils_abs(n: c_double) -> c_double;
    pub fn he_math_utils_max(n: c_double, m: c_double) -> c_double;
    pub fn he_math_utils_min(n: c_double, m: c_double) -> c_double;
    pub fn he_math_utils_linearized(rgb_component: c_int) -> c_double;
    pub fn he_math_utils_delinearized(rgb_component: c_double) -> c_int;
    pub fn he_math_utils_double_delinearized(rgb_component: c_double) -> c_double;
    pub fn he_math_utils_midpoint(
        a: *mut c_double,
        a_length1: c_int,
        b: *mut c_double,
        b_length1: c_int,
        result_length1: *mut c_int,
    ) -> *mut c_double;
    pub fn he_math_utils_intercept(source: c_double, mid: c_double, target: c_double) -> c_double;
    pub fn he_math_utils_hue_of(linrgb: *mut c_double, linrgb_length1: c_int) -> c_double;
    pub fn he_math_utils_nth_vertex(
        y: c_double,
        n: c_int,
        result_length1: *mut c_int,
    ) -> *mut c_double;
    pub fn he_math_utils_are_in_cyclic_order(a: c_double, b: c_double, c: c_double) -> gboolean;
    pub fn he_math_utils_set_coordinate(
        source: *mut c_double,
        source_length1: c_int,
        coordinate: c_double,
        target: *mut c_double,
        target_length1: c_int,
        axis: c_int,
        result_length1: *mut c_int,
    ) -> *mut c_double;
    pub fn he_math_utils_convert(value: c_double) -> c_double;
    pub fn he_math_utils_bisect_to_segment(
        y: c_double,
        target_hue: c_double,
        result_length1: *mut c_int,
    ) -> *mut c_double;
    pub fn he_math_utils_bisect_to_limit(
        y: c_double,
        target_hue: c_double,
        result_length1: *mut c_int,
    ) -> *mut c_double;
    pub fn he_math_utils_y_from_lstar(lstar: c_double) -> c_double;
    pub fn he_math_utils_argb_from_lstar(lstar: c_double) -> c_int;
    pub fn he_math_utils_lstar_from_argb(argb: c_int) -> c_double;
    pub fn he_math_utils_lstar_from_y(y: c_double) -> c_double;
    pub fn he_math_utils_clamp(start: c_double, end: c_double, value: c_double) -> c_double;
    pub fn he_misc_find_ancestor_of_type(
        t_type: GType,
        t_dup_func: gobject::GBoxedCopyFunc,
        t_destroy_func: glib::GDestroyNotify,
        widget: *mut gtk::GtkWidget,
    ) -> gpointer;
    pub fn he_misc_contrast_ratio(
        red: c_double,
        green: c_double,
        blue: c_double,
        red2: c_double,
        green2: c_double,
        blue2: c_double,
    ) -> c_double;
    pub fn he_misc_fix_fg_contrast(
        red: c_double,
        green: c_double,
        blue: c_double,
        red2: c_double,
        green2: c_double,
        blue2: c_double,
        result_length1: *mut c_int,
    ) -> *mut c_double;
    pub fn he_misc_accel_label(accel: *const c_char) -> *mut c_char;
    pub fn he_misc_accel_string(
        accels: *mut *mut c_char,
        accels_length1: c_int,
        description: *const c_char,
    ) -> *mut c_char;
    pub fn he_colors_to_css_class(self_: HeColors) -> *mut c_char;
    pub fn he_colors_to_string(self_: HeColors) -> *mut c_char;
    pub fn he_tip_view_style_to_css_class(self_: HeTipViewStyle) -> *mut c_char;
    pub fn he_tip_view_style_to_string(self_: HeTipViewStyle) -> *mut c_char;
    pub fn he_desktop_ensor_scheme_to_variant(self_: HeDesktopEnsorScheme) -> HeSchemeVariant;
    pub fn he_about_window_licenses_get_url(self_: HeAboutWindowLicenses) -> *mut c_char;
    pub fn he_about_window_licenses_get_name(self_: HeAboutWindowLicenses) -> *mut c_char;
    pub fn he_content_block_image_cluster_image_position_get_column(
        self_: HeContentBlockImageClusterImagePosition,
    ) -> c_int;
    pub fn he_content_block_image_cluster_image_position_get_row(
        self_: HeContentBlockImageClusterImagePosition,
    ) -> c_int;
    pub fn he_modifier_badge_alignment_to_gtk_align(
        self_: HeModifierBadgeAlignment,
    ) -> gtk::GtkAlign;
    pub fn he_modifier_badge_alignment_from_gtk_align(
        align: gtk::GtkAlign,
    ) -> HeModifierBadgeAlignment;
    pub fn he_overlay_button_size_to_css_class(self_: HeOverlayButtonSize) -> *mut c_char;
    pub fn he_overlay_button_type_button_to_css_class(
        self_: HeOverlayButtonTypeButton,
    ) -> *mut c_char;
    pub fn he_overlay_button_alignment_to_gtk_align(
        self_: HeOverlayButtonAlignment,
    ) -> gtk::GtkAlign;
    pub fn he_overlay_button_alignment_from_gtk_align(
        align: gtk::GtkAlign,
    ) -> HeOverlayButtonAlignment;
    pub fn he_rgb_to_argb_int(color: *mut HeRGBColor) -> c_int;
    pub fn he_lab_to_argb_int(lab: *mut HeLABColor) -> c_int;
    pub fn he_argb_from_rgb_int(red: c_int, green: c_int, blue: c_int) -> c_int;
    pub fn he_xyz_to_argb(xyz: *mut HeXYZColor) -> c_int;
    pub fn he_argb_to_rgb(argb: c_int, result_length1: *mut c_int) -> *mut c_double;
    pub fn he_alpha_from_rgba_int(argb: c_int) -> c_int;
    pub fn he_red_from_rgba_int(argb: c_int) -> c_int;
    pub fn he_green_from_rgba_int(argb: c_int) -> c_int;
    pub fn he_blue_from_rgba_int(argb: c_int) -> c_int;
    pub fn he_xyz_to_cam16(color: *mut HeXYZColor, result: *mut HeCAM16Color);
    pub fn he_cam16_from_int(argb: c_int, result: *mut HeCAM16Color);
    pub fn he_to_gdk_rgba(color: *mut HeRGBColor, result: *mut gdk::GdkRGBA);
    pub fn he_critical_plane_below(x: c_double) -> c_int;
    pub fn he_critical_plane_above(x: c_double) -> c_int;
    pub fn he_from_params(hue: c_double, chroma: c_double, tone: c_double, result: *mut HeHCTColor);
    pub fn he_disliked(hct: *mut HeHCTColor) -> gboolean;
    pub fn he_fix_disliked(hct: *mut HeHCTColor, result: *mut HeHCTColor);
    pub fn he_hct_from_int(argb: c_int, result: *mut HeHCTColor);
    pub fn he_hct_to_hex(hue: c_double, chroma: c_double, lstar: c_double) -> *mut c_char;
    pub fn he_hex_from_hct_with_contrast(hct: *mut HeHCTColor, contrast: c_double) -> *mut c_char;
    pub fn he_hex_from_hct(hct: *mut HeHCTColor) -> *mut c_char;
    pub fn he_hct_to_argb(hue: c_double, chroma: c_double, lstar: c_double) -> c_int;
    pub fn he_hct_blend(a: *mut HeHCTColor, b: *mut HeHCTColor, result: *mut HeHCTColor);
    pub fn he_get_rotated_hue(
        hue: c_double,
        hues: *mut c_double,
        hues_length1: c_int,
        rotations: *mut c_double,
        rotations_length1: c_int,
    ) -> c_double;
    pub fn he_rgb_from_linrgb(red: c_int, green: c_int, blue: c_int) -> c_int;
    pub fn he_argb_from_linrgb(linrgb: *mut c_double, linrgb_length1: c_int) -> c_int;
    pub fn he_find_result_by_j(hr: c_double, c: c_double, y: c_double) -> c_int;
    pub fn he_hexcode(r: c_double, g: c_double, b: c_double) -> *mut c_char;
    pub fn he_hexcode_argb(color: c_int) -> *mut c_char;
    pub fn he_xyz_value_to_lab(v: c_double) -> c_double;
    pub fn he_xyz_to_lab(color: *mut HeXYZColor, result: *mut HeLABColor);
    pub fn he_lch_to_lab(color: *mut HeLCHColor, result: *mut HeLABColor);
    pub fn he_rgb_to_lab(color: *mut HeRGBColor, result: *mut HeLABColor);
    pub fn he_lab_from_argb(argb: c_int, result: *mut HeLABColor);
    pub fn he_rgb_to_lch(color: *mut HeRGBColor, result: *mut HeLCHColor);
    pub fn he_lab_to_lch(color: *mut HeLABColor, result: *mut HeLCHColor);
    pub fn he_hct_to_lch(color: *mut HeHCTColor, result: *mut HeLCHColor);
    pub fn he_xyz_to_rgb(color: *mut HeXYZColor, result: *mut HeRGBColor);
    pub fn he_lab_to_rgb(color: *mut HeLABColor, result: *mut HeRGBColor);
    pub fn he_lch_to_rgb(color: *mut HeLCHColor, result: *mut HeRGBColor);
    pub fn he_from_gdk_rgba(color: *mut gdk::GdkRGBA, result: *mut HeRGBColor);
    pub fn he_from_hex(color: *const c_char, result: *mut HeRGBColor);
    pub fn he_from_argb_int(argb: c_int, result: *mut HeRGBColor);
    pub fn he_argb_to_xyz(argb: c_int, result: *mut HeXYZColor);
    pub fn he_rgb_value_to_xyz(v: c_double) -> c_double;
    pub fn he_rgb_to_xyz(color: *mut HeRGBColor, result: *mut HeXYZColor);
    pub fn he_cam16_to_xyz(color: *mut HeCAM16Color, result: *mut HeXYZColor);
    pub fn he_lab_to_xyz(color: *mut HeLABColor, result: *mut HeXYZColor);
    pub fn he_init();

}