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
|
/* AUTOGENERATED, DO NOT EDIT DIRECTLY
* See gtk-priv/README.md for more information
*
* This file is part of gtk-layer-shell
*
* Copyright (C) 2009 Carlos Garnacho <carlosg@gnome.org>
* Copyright © 2024 gtk-priv/scripts/code.py
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef GDK_WAYLAND_SEAT_PRIV_H
#define GDK_WAYLAND_SEAT_PRIV_H
#include "common.h"
typedef struct _GdkWaylandSeat GdkWaylandSeat;
// Version ID 0
// Valid for GTK v3.22.0 - v3.22.8
struct _GdkWaylandSeat_v3_22_0
{
GdkSeat parent_instance;
guint32 id;
struct wl_seat *wl_seat;
struct wl_pointer *wl_pointer;
struct wl_keyboard *wl_keyboard;
struct wl_touch *wl_touch;
struct zwp_pointer_gesture_swipe_v1 *wp_pointer_gesture_swipe;
struct zwp_pointer_gesture_pinch_v1 *wp_pointer_gesture_pinch;
struct zwp_tablet_seat_v2 *wp_tablet_seat;
GdkDisplay *display;
GdkDeviceManager *device_manager;
GdkDevice *master_pointer;
GdkDevice *master_keyboard;
GdkDevice *pointer;
GdkDevice *wheel_scrolling;
GdkDevice *finger_scrolling;
GdkDevice *continuous_scrolling;
GdkDevice *keyboard;
GdkDevice *touch_master;
GdkDevice *touch;
GdkCursor *cursor;
GdkKeymap *keymap;
GHashTable *touches;
GList *tablets;
GList *tablet_tools;
GList *tablet_pads;
struct _GdkWaylandPointerData_v3_22_0 pointer_info;
struct _GdkWaylandPointerData_v3_22_0 touch_info;
GdkModifierType key_modifiers;
GdkWindow *keyboard_focus;
GdkAtom pending_selection;
GdkWindow *grab_window;
uint32_t grab_time;
gboolean have_server_repeat;
uint32_t server_repeat_rate;
uint32_t server_repeat_delay;
struct wl_callback *repeat_callback;
guint32 repeat_timer;
guint32 repeat_key;
guint32 repeat_count;
gint64 repeat_deadline;
GSettings *keyboard_settings;
uint32_t keyboard_time;
uint32_t keyboard_key_serial;
struct gtk_primary_selection_device *primary_data_device;
struct wl_data_device *data_device;
GdkDragContext *drop_context;
GdkWindow *foreign_dnd_window;
guint gesture_n_fingers;
gdouble gesture_scale;
GdkCursor *grab_cursor;
};
// Version ID 1
// Diff from previous version:
// + gint32 nkeys;
// Valid for GTK v3.22.9 - v3.22.15
struct _GdkWaylandSeat_v3_22_9
{
GdkSeat parent_instance;
guint32 id;
struct wl_seat *wl_seat;
struct wl_pointer *wl_pointer;
struct wl_keyboard *wl_keyboard;
struct wl_touch *wl_touch;
struct zwp_pointer_gesture_swipe_v1 *wp_pointer_gesture_swipe;
struct zwp_pointer_gesture_pinch_v1 *wp_pointer_gesture_pinch;
struct zwp_tablet_seat_v2 *wp_tablet_seat;
GdkDisplay *display;
GdkDeviceManager *device_manager;
GdkDevice *master_pointer;
GdkDevice *master_keyboard;
GdkDevice *pointer;
GdkDevice *wheel_scrolling;
GdkDevice *finger_scrolling;
GdkDevice *continuous_scrolling;
GdkDevice *keyboard;
GdkDevice *touch_master;
GdkDevice *touch;
GdkCursor *cursor;
GdkKeymap *keymap;
GHashTable *touches;
GList *tablets;
GList *tablet_tools;
GList *tablet_pads;
struct _GdkWaylandPointerData_v3_22_0 pointer_info;
struct _GdkWaylandPointerData_v3_22_0 touch_info;
GdkModifierType key_modifiers;
GdkWindow *keyboard_focus;
GdkAtom pending_selection;
GdkWindow *grab_window;
uint32_t grab_time;
gboolean have_server_repeat;
uint32_t server_repeat_rate;
uint32_t server_repeat_delay;
struct wl_callback *repeat_callback;
guint32 repeat_timer;
guint32 repeat_key;
guint32 repeat_count;
gint64 repeat_deadline;
gint32 nkeys;
GSettings *keyboard_settings;
uint32_t keyboard_time;
uint32_t keyboard_key_serial;
struct gtk_primary_selection_device *primary_data_device;
struct wl_data_device *data_device;
GdkDragContext *drop_context;
GdkWindow *foreign_dnd_window;
guint gesture_n_fingers;
gdouble gesture_scale;
GdkCursor *grab_cursor;
};
// Version ID 2
// Diff from previous version:
// - gint32 nkeys;
// Valid for GTK v3.22.16 - v3.24.23
struct _GdkWaylandSeat_v3_22_16
{
GdkSeat parent_instance;
guint32 id;
struct wl_seat *wl_seat;
struct wl_pointer *wl_pointer;
struct wl_keyboard *wl_keyboard;
struct wl_touch *wl_touch;
struct zwp_pointer_gesture_swipe_v1 *wp_pointer_gesture_swipe;
struct zwp_pointer_gesture_pinch_v1 *wp_pointer_gesture_pinch;
struct zwp_tablet_seat_v2 *wp_tablet_seat;
GdkDisplay *display;
GdkDeviceManager *device_manager;
GdkDevice *master_pointer;
GdkDevice *master_keyboard;
GdkDevice *pointer;
GdkDevice *wheel_scrolling;
GdkDevice *finger_scrolling;
GdkDevice *continuous_scrolling;
GdkDevice *keyboard;
GdkDevice *touch_master;
GdkDevice *touch;
GdkCursor *cursor;
GdkKeymap *keymap;
GHashTable *touches;
GList *tablets;
GList *tablet_tools;
GList *tablet_pads;
struct _GdkWaylandPointerData_v3_22_0 pointer_info;
struct _GdkWaylandPointerData_v3_22_0 touch_info;
GdkModifierType key_modifiers;
GdkWindow *keyboard_focus;
GdkAtom pending_selection;
GdkWindow *grab_window;
uint32_t grab_time;
gboolean have_server_repeat;
uint32_t server_repeat_rate;
uint32_t server_repeat_delay;
struct wl_callback *repeat_callback;
guint32 repeat_timer;
guint32 repeat_key;
guint32 repeat_count;
gint64 repeat_deadline;
GSettings *keyboard_settings;
uint32_t keyboard_time;
uint32_t keyboard_key_serial;
struct gtk_primary_selection_device *primary_data_device;
struct wl_data_device *data_device;
GdkDragContext *drop_context;
GdkWindow *foreign_dnd_window;
guint gesture_n_fingers;
gdouble gesture_scale;
GdkCursor *grab_cursor;
};
// Version ID 3
// Diff from previous version:
// - struct gtk_primary_selection_device *primary_data_device;
// + struct gtk_primary_selection_device *gtk_primary_data_device;
// + struct zwp_primary_selection_device_v1 *zwp_primary_data_device_v1;
// Valid for GTK v3.24.24 - v3.24.44 (unreleased)
struct _GdkWaylandSeat_v3_24_24
{
GdkSeat parent_instance;
guint32 id;
struct wl_seat *wl_seat;
struct wl_pointer *wl_pointer;
struct wl_keyboard *wl_keyboard;
struct wl_touch *wl_touch;
struct zwp_pointer_gesture_swipe_v1 *wp_pointer_gesture_swipe;
struct zwp_pointer_gesture_pinch_v1 *wp_pointer_gesture_pinch;
struct zwp_tablet_seat_v2 *wp_tablet_seat;
GdkDisplay *display;
GdkDeviceManager *device_manager;
GdkDevice *master_pointer;
GdkDevice *master_keyboard;
GdkDevice *pointer;
GdkDevice *wheel_scrolling;
GdkDevice *finger_scrolling;
GdkDevice *continuous_scrolling;
GdkDevice *keyboard;
GdkDevice *touch_master;
GdkDevice *touch;
GdkCursor *cursor;
GdkKeymap *keymap;
GHashTable *touches;
GList *tablets;
GList *tablet_tools;
GList *tablet_pads;
struct _GdkWaylandPointerData_v3_22_0 pointer_info;
struct _GdkWaylandPointerData_v3_22_0 touch_info;
GdkModifierType key_modifiers;
GdkWindow *keyboard_focus;
GdkAtom pending_selection;
GdkWindow *grab_window;
uint32_t grab_time;
gboolean have_server_repeat;
uint32_t server_repeat_rate;
uint32_t server_repeat_delay;
struct wl_callback *repeat_callback;
guint32 repeat_timer;
guint32 repeat_key;
guint32 repeat_count;
gint64 repeat_deadline;
GSettings *keyboard_settings;
uint32_t keyboard_time;
uint32_t keyboard_key_serial;
struct gtk_primary_selection_device *gtk_primary_data_device;
struct zwp_primary_selection_device_v1 *zwp_primary_data_device_v1;
struct wl_data_device *data_device;
GdkDragContext *drop_context;
GdkWindow *foreign_dnd_window;
guint gesture_n_fingers;
gdouble gesture_scale;
GdkCursor *grab_cursor;
};
// For internal use only
int gdk_wayland_seat_priv_get_version_id() {
static int version_id = -1;
if (version_id == -1) {
gtk_priv_assert_gtk_version_valid();
int combo = gtk_get_minor_version() * 1000 + gtk_get_micro_version();
switch (combo) {
case 22000:
case 22001:
case 22002:
case 22003:
case 22004:
case 22005:
case 22006:
case 22007:
case 22008:
case 22009:
case 22010:
case 22011:
case 22012:
case 22013:
case 22014:
case 22015:
case 22016:
case 22017:
case 22018:
case 22019:
case 22020:
case 22021:
case 22022:
case 22023:
case 22024:
case 22025:
case 22026:
case 22027:
case 22028:
case 22029:
case 22030:
case 23000:
case 23001:
case 23002:
case 23003:
case 24000:
case 24001:
case 24002:
case 24003:
case 24004:
case 24005:
case 24006:
case 24007:
case 24008:
case 24009:
case 24010:
case 24011:
case 24012:
case 24013:
case 24014:
case 24015:
case 24016:
case 24017:
case 24018:
case 24020:
case 24021:
case 24022:
case 24023:
case 24024:
case 24025:
case 24026:
case 24027:
case 24028:
case 24029:
case 24030:
case 24031:
case 24032:
case 24033:
case 24034:
case 24035:
case 24036:
case 24037:
case 24038:
case 24039:
case 24040:
case 24041:
case 24042:
case 24043:
break;
default:
gtk_priv_warn_gtk_version_may_be_unsupported();
}
if (combo >= 24024) {
version_id = 3;
} else if (combo >= 22016) {
version_id = 2;
} else if (combo >= 22009) {
version_id = 1;
} else {
version_id = 0;
}
}
return version_id;
}
// GdkWaylandSeat::parent_instance
GdkSeat * gdk_wayland_seat_priv_get_parent_instance_ptr(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return (GdkSeat *)&((struct _GdkWaylandSeat_v3_22_0*)self)->parent_instance;
case 1: return (GdkSeat *)&((struct _GdkWaylandSeat_v3_22_9*)self)->parent_instance;
case 2: return (GdkSeat *)&((struct _GdkWaylandSeat_v3_22_16*)self)->parent_instance;
case 3: return (GdkSeat *)&((struct _GdkWaylandSeat_v3_24_24*)self)->parent_instance;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::id
guint32 * gdk_wayland_seat_priv_get_id_ptr(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return (guint32 *)&((struct _GdkWaylandSeat_v3_22_0*)self)->id;
case 1: return (guint32 *)&((struct _GdkWaylandSeat_v3_22_9*)self)->id;
case 2: return (guint32 *)&((struct _GdkWaylandSeat_v3_22_16*)self)->id;
case 3: return (guint32 *)&((struct _GdkWaylandSeat_v3_24_24*)self)->id;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::wl_seat
struct wl_seat * gdk_wayland_seat_priv_get_wl_seat(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->wl_seat;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->wl_seat;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->wl_seat;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->wl_seat;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_wl_seat(GdkWaylandSeat * self, struct wl_seat * wl_seat) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->wl_seat = wl_seat; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->wl_seat = wl_seat; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->wl_seat = wl_seat; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->wl_seat = wl_seat; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::wl_pointer
struct wl_pointer * gdk_wayland_seat_priv_get_wl_pointer(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->wl_pointer;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->wl_pointer;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->wl_pointer;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->wl_pointer;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_wl_pointer(GdkWaylandSeat * self, struct wl_pointer * wl_pointer) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->wl_pointer = wl_pointer; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->wl_pointer = wl_pointer; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->wl_pointer = wl_pointer; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->wl_pointer = wl_pointer; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::wl_keyboard
struct wl_keyboard * gdk_wayland_seat_priv_get_wl_keyboard(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->wl_keyboard;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->wl_keyboard;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->wl_keyboard;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->wl_keyboard;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_wl_keyboard(GdkWaylandSeat * self, struct wl_keyboard * wl_keyboard) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->wl_keyboard = wl_keyboard; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->wl_keyboard = wl_keyboard; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->wl_keyboard = wl_keyboard; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->wl_keyboard = wl_keyboard; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::wl_touch
struct wl_touch * gdk_wayland_seat_priv_get_wl_touch(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->wl_touch;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->wl_touch;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->wl_touch;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->wl_touch;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_wl_touch(GdkWaylandSeat * self, struct wl_touch * wl_touch) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->wl_touch = wl_touch; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->wl_touch = wl_touch; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->wl_touch = wl_touch; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->wl_touch = wl_touch; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::wp_pointer_gesture_swipe
struct zwp_pointer_gesture_swipe_v1 * gdk_wayland_seat_priv_get_wp_pointer_gesture_swipe(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->wp_pointer_gesture_swipe;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->wp_pointer_gesture_swipe;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->wp_pointer_gesture_swipe;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->wp_pointer_gesture_swipe;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_wp_pointer_gesture_swipe(GdkWaylandSeat * self, struct zwp_pointer_gesture_swipe_v1 * wp_pointer_gesture_swipe) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->wp_pointer_gesture_swipe = wp_pointer_gesture_swipe; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->wp_pointer_gesture_swipe = wp_pointer_gesture_swipe; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->wp_pointer_gesture_swipe = wp_pointer_gesture_swipe; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->wp_pointer_gesture_swipe = wp_pointer_gesture_swipe; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::wp_pointer_gesture_pinch
struct zwp_pointer_gesture_pinch_v1 * gdk_wayland_seat_priv_get_wp_pointer_gesture_pinch(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->wp_pointer_gesture_pinch;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->wp_pointer_gesture_pinch;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->wp_pointer_gesture_pinch;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->wp_pointer_gesture_pinch;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_wp_pointer_gesture_pinch(GdkWaylandSeat * self, struct zwp_pointer_gesture_pinch_v1 * wp_pointer_gesture_pinch) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->wp_pointer_gesture_pinch = wp_pointer_gesture_pinch; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->wp_pointer_gesture_pinch = wp_pointer_gesture_pinch; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->wp_pointer_gesture_pinch = wp_pointer_gesture_pinch; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->wp_pointer_gesture_pinch = wp_pointer_gesture_pinch; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::wp_tablet_seat
struct zwp_tablet_seat_v2 * gdk_wayland_seat_priv_get_wp_tablet_seat(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->wp_tablet_seat;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->wp_tablet_seat;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->wp_tablet_seat;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->wp_tablet_seat;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_wp_tablet_seat(GdkWaylandSeat * self, struct zwp_tablet_seat_v2 * wp_tablet_seat) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->wp_tablet_seat = wp_tablet_seat; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->wp_tablet_seat = wp_tablet_seat; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->wp_tablet_seat = wp_tablet_seat; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->wp_tablet_seat = wp_tablet_seat; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::display
GdkDisplay * gdk_wayland_seat_priv_get_display(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->display;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->display;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->display;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->display;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_display(GdkWaylandSeat * self, GdkDisplay * display) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->display = display; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->display = display; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->display = display; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->display = display; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::device_manager
GdkDeviceManager * gdk_wayland_seat_priv_get_device_manager(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->device_manager;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->device_manager;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->device_manager;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->device_manager;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_device_manager(GdkWaylandSeat * self, GdkDeviceManager * device_manager) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->device_manager = device_manager; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->device_manager = device_manager; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->device_manager = device_manager; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->device_manager = device_manager; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::master_pointer
GdkDevice * gdk_wayland_seat_priv_get_master_pointer(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->master_pointer;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->master_pointer;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->master_pointer;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->master_pointer;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_master_pointer(GdkWaylandSeat * self, GdkDevice * master_pointer) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->master_pointer = master_pointer; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->master_pointer = master_pointer; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->master_pointer = master_pointer; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->master_pointer = master_pointer; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::master_keyboard
GdkDevice * gdk_wayland_seat_priv_get_master_keyboard(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->master_keyboard;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->master_keyboard;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->master_keyboard;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->master_keyboard;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_master_keyboard(GdkWaylandSeat * self, GdkDevice * master_keyboard) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->master_keyboard = master_keyboard; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->master_keyboard = master_keyboard; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->master_keyboard = master_keyboard; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->master_keyboard = master_keyboard; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::pointer
GdkDevice * gdk_wayland_seat_priv_get_pointer(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->pointer;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->pointer;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->pointer;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->pointer;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_pointer(GdkWaylandSeat * self, GdkDevice * pointer) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->pointer = pointer; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->pointer = pointer; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->pointer = pointer; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->pointer = pointer; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::wheel_scrolling
GdkDevice * gdk_wayland_seat_priv_get_wheel_scrolling(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->wheel_scrolling;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->wheel_scrolling;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->wheel_scrolling;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->wheel_scrolling;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_wheel_scrolling(GdkWaylandSeat * self, GdkDevice * wheel_scrolling) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->wheel_scrolling = wheel_scrolling; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->wheel_scrolling = wheel_scrolling; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->wheel_scrolling = wheel_scrolling; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->wheel_scrolling = wheel_scrolling; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::finger_scrolling
GdkDevice * gdk_wayland_seat_priv_get_finger_scrolling(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->finger_scrolling;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->finger_scrolling;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->finger_scrolling;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->finger_scrolling;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_finger_scrolling(GdkWaylandSeat * self, GdkDevice * finger_scrolling) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->finger_scrolling = finger_scrolling; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->finger_scrolling = finger_scrolling; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->finger_scrolling = finger_scrolling; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->finger_scrolling = finger_scrolling; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::continuous_scrolling
GdkDevice * gdk_wayland_seat_priv_get_continuous_scrolling(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->continuous_scrolling;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->continuous_scrolling;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->continuous_scrolling;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->continuous_scrolling;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_continuous_scrolling(GdkWaylandSeat * self, GdkDevice * continuous_scrolling) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->continuous_scrolling = continuous_scrolling; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->continuous_scrolling = continuous_scrolling; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->continuous_scrolling = continuous_scrolling; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->continuous_scrolling = continuous_scrolling; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::keyboard
GdkDevice * gdk_wayland_seat_priv_get_keyboard(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->keyboard;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->keyboard;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->keyboard;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->keyboard;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_keyboard(GdkWaylandSeat * self, GdkDevice * keyboard) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->keyboard = keyboard; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->keyboard = keyboard; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->keyboard = keyboard; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->keyboard = keyboard; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::touch_master
GdkDevice * gdk_wayland_seat_priv_get_touch_master(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->touch_master;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->touch_master;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->touch_master;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->touch_master;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_touch_master(GdkWaylandSeat * self, GdkDevice * touch_master) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->touch_master = touch_master; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->touch_master = touch_master; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->touch_master = touch_master; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->touch_master = touch_master; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::touch
GdkDevice * gdk_wayland_seat_priv_get_touch(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->touch;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->touch;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->touch;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->touch;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_touch(GdkWaylandSeat * self, GdkDevice * touch) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->touch = touch; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->touch = touch; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->touch = touch; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->touch = touch; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::cursor
GdkCursor * gdk_wayland_seat_priv_get_cursor(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->cursor;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->cursor;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->cursor;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->cursor;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_cursor(GdkWaylandSeat * self, GdkCursor * cursor) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->cursor = cursor; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->cursor = cursor; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->cursor = cursor; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->cursor = cursor; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::keymap
GdkKeymap * gdk_wayland_seat_priv_get_keymap(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->keymap;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->keymap;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->keymap;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->keymap;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_keymap(GdkWaylandSeat * self, GdkKeymap * keymap) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->keymap = keymap; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->keymap = keymap; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->keymap = keymap; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->keymap = keymap; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::touches
GHashTable * gdk_wayland_seat_priv_get_touches(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->touches;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->touches;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->touches;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->touches;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_touches(GdkWaylandSeat * self, GHashTable * touches) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->touches = touches; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->touches = touches; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->touches = touches; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->touches = touches; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::tablets
GList * gdk_wayland_seat_priv_get_tablets(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->tablets;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->tablets;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->tablets;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->tablets;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_tablets(GdkWaylandSeat * self, GList * tablets) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->tablets = tablets; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->tablets = tablets; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->tablets = tablets; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->tablets = tablets; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::tablet_tools
GList * gdk_wayland_seat_priv_get_tablet_tools(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->tablet_tools;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->tablet_tools;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->tablet_tools;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->tablet_tools;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_tablet_tools(GdkWaylandSeat * self, GList * tablet_tools) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->tablet_tools = tablet_tools; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->tablet_tools = tablet_tools; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->tablet_tools = tablet_tools; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->tablet_tools = tablet_tools; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::tablet_pads
GList * gdk_wayland_seat_priv_get_tablet_pads(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->tablet_pads;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->tablet_pads;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->tablet_pads;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->tablet_pads;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_tablet_pads(GdkWaylandSeat * self, GList * tablet_pads) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->tablet_pads = tablet_pads; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->tablet_pads = tablet_pads; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->tablet_pads = tablet_pads; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->tablet_pads = tablet_pads; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::pointer_info
GdkWaylandPointerData * gdk_wayland_seat_priv_get_pointer_info_ptr(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return (GdkWaylandPointerData *)&((struct _GdkWaylandSeat_v3_22_0*)self)->pointer_info;
case 1: return (GdkWaylandPointerData *)&((struct _GdkWaylandSeat_v3_22_9*)self)->pointer_info;
case 2: return (GdkWaylandPointerData *)&((struct _GdkWaylandSeat_v3_22_16*)self)->pointer_info;
case 3: return (GdkWaylandPointerData *)&((struct _GdkWaylandSeat_v3_24_24*)self)->pointer_info;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::touch_info
GdkWaylandPointerData * gdk_wayland_seat_priv_get_touch_info_ptr(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return (GdkWaylandPointerData *)&((struct _GdkWaylandSeat_v3_22_0*)self)->touch_info;
case 1: return (GdkWaylandPointerData *)&((struct _GdkWaylandSeat_v3_22_9*)self)->touch_info;
case 2: return (GdkWaylandPointerData *)&((struct _GdkWaylandSeat_v3_22_16*)self)->touch_info;
case 3: return (GdkWaylandPointerData *)&((struct _GdkWaylandSeat_v3_24_24*)self)->touch_info;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::key_modifiers
GdkModifierType * gdk_wayland_seat_priv_get_key_modifiers_ptr(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return (GdkModifierType *)&((struct _GdkWaylandSeat_v3_22_0*)self)->key_modifiers;
case 1: return (GdkModifierType *)&((struct _GdkWaylandSeat_v3_22_9*)self)->key_modifiers;
case 2: return (GdkModifierType *)&((struct _GdkWaylandSeat_v3_22_16*)self)->key_modifiers;
case 3: return (GdkModifierType *)&((struct _GdkWaylandSeat_v3_24_24*)self)->key_modifiers;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::keyboard_focus
GdkWindow * gdk_wayland_seat_priv_get_keyboard_focus(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->keyboard_focus;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->keyboard_focus;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->keyboard_focus;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->keyboard_focus;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_keyboard_focus(GdkWaylandSeat * self, GdkWindow * keyboard_focus) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->keyboard_focus = keyboard_focus; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->keyboard_focus = keyboard_focus; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->keyboard_focus = keyboard_focus; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->keyboard_focus = keyboard_focus; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::pending_selection
GdkAtom * gdk_wayland_seat_priv_get_pending_selection_ptr(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return (GdkAtom *)&((struct _GdkWaylandSeat_v3_22_0*)self)->pending_selection;
case 1: return (GdkAtom *)&((struct _GdkWaylandSeat_v3_22_9*)self)->pending_selection;
case 2: return (GdkAtom *)&((struct _GdkWaylandSeat_v3_22_16*)self)->pending_selection;
case 3: return (GdkAtom *)&((struct _GdkWaylandSeat_v3_24_24*)self)->pending_selection;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::grab_window
GdkWindow * gdk_wayland_seat_priv_get_grab_window(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->grab_window;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->grab_window;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->grab_window;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->grab_window;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_grab_window(GdkWaylandSeat * self, GdkWindow * grab_window) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->grab_window = grab_window; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->grab_window = grab_window; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->grab_window = grab_window; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->grab_window = grab_window; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::grab_time
uint32_t gdk_wayland_seat_priv_get_grab_time(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->grab_time;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->grab_time;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->grab_time;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->grab_time;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_grab_time(GdkWaylandSeat * self, uint32_t grab_time) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->grab_time = grab_time; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->grab_time = grab_time; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->grab_time = grab_time; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->grab_time = grab_time; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::have_server_repeat
gboolean gdk_wayland_seat_priv_get_have_server_repeat(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->have_server_repeat;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->have_server_repeat;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->have_server_repeat;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->have_server_repeat;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_have_server_repeat(GdkWaylandSeat * self, gboolean have_server_repeat) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->have_server_repeat = have_server_repeat; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->have_server_repeat = have_server_repeat; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->have_server_repeat = have_server_repeat; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->have_server_repeat = have_server_repeat; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::server_repeat_rate
uint32_t gdk_wayland_seat_priv_get_server_repeat_rate(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->server_repeat_rate;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->server_repeat_rate;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->server_repeat_rate;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->server_repeat_rate;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_server_repeat_rate(GdkWaylandSeat * self, uint32_t server_repeat_rate) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->server_repeat_rate = server_repeat_rate; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->server_repeat_rate = server_repeat_rate; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->server_repeat_rate = server_repeat_rate; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->server_repeat_rate = server_repeat_rate; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::server_repeat_delay
uint32_t gdk_wayland_seat_priv_get_server_repeat_delay(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->server_repeat_delay;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->server_repeat_delay;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->server_repeat_delay;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->server_repeat_delay;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_server_repeat_delay(GdkWaylandSeat * self, uint32_t server_repeat_delay) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->server_repeat_delay = server_repeat_delay; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->server_repeat_delay = server_repeat_delay; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->server_repeat_delay = server_repeat_delay; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->server_repeat_delay = server_repeat_delay; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::repeat_callback
struct wl_callback * gdk_wayland_seat_priv_get_repeat_callback(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->repeat_callback;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->repeat_callback;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->repeat_callback;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->repeat_callback;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_repeat_callback(GdkWaylandSeat * self, struct wl_callback * repeat_callback) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->repeat_callback = repeat_callback; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->repeat_callback = repeat_callback; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->repeat_callback = repeat_callback; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->repeat_callback = repeat_callback; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::repeat_timer
guint32 * gdk_wayland_seat_priv_get_repeat_timer_ptr(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return (guint32 *)&((struct _GdkWaylandSeat_v3_22_0*)self)->repeat_timer;
case 1: return (guint32 *)&((struct _GdkWaylandSeat_v3_22_9*)self)->repeat_timer;
case 2: return (guint32 *)&((struct _GdkWaylandSeat_v3_22_16*)self)->repeat_timer;
case 3: return (guint32 *)&((struct _GdkWaylandSeat_v3_24_24*)self)->repeat_timer;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::repeat_key
guint32 * gdk_wayland_seat_priv_get_repeat_key_ptr(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return (guint32 *)&((struct _GdkWaylandSeat_v3_22_0*)self)->repeat_key;
case 1: return (guint32 *)&((struct _GdkWaylandSeat_v3_22_9*)self)->repeat_key;
case 2: return (guint32 *)&((struct _GdkWaylandSeat_v3_22_16*)self)->repeat_key;
case 3: return (guint32 *)&((struct _GdkWaylandSeat_v3_24_24*)self)->repeat_key;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::repeat_count
guint32 * gdk_wayland_seat_priv_get_repeat_count_ptr(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return (guint32 *)&((struct _GdkWaylandSeat_v3_22_0*)self)->repeat_count;
case 1: return (guint32 *)&((struct _GdkWaylandSeat_v3_22_9*)self)->repeat_count;
case 2: return (guint32 *)&((struct _GdkWaylandSeat_v3_22_16*)self)->repeat_count;
case 3: return (guint32 *)&((struct _GdkWaylandSeat_v3_24_24*)self)->repeat_count;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::repeat_deadline
gint64 * gdk_wayland_seat_priv_get_repeat_deadline_ptr(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return (gint64 *)&((struct _GdkWaylandSeat_v3_22_0*)self)->repeat_deadline;
case 1: return (gint64 *)&((struct _GdkWaylandSeat_v3_22_9*)self)->repeat_deadline;
case 2: return (gint64 *)&((struct _GdkWaylandSeat_v3_22_16*)self)->repeat_deadline;
case 3: return (gint64 *)&((struct _GdkWaylandSeat_v3_24_24*)self)->repeat_deadline;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::keyboard_settings
GSettings * gdk_wayland_seat_priv_get_keyboard_settings(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->keyboard_settings;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->keyboard_settings;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->keyboard_settings;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->keyboard_settings;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_keyboard_settings(GdkWaylandSeat * self, GSettings * keyboard_settings) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->keyboard_settings = keyboard_settings; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->keyboard_settings = keyboard_settings; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->keyboard_settings = keyboard_settings; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->keyboard_settings = keyboard_settings; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::keyboard_time
uint32_t gdk_wayland_seat_priv_get_keyboard_time(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->keyboard_time;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->keyboard_time;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->keyboard_time;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->keyboard_time;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_keyboard_time(GdkWaylandSeat * self, uint32_t keyboard_time) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->keyboard_time = keyboard_time; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->keyboard_time = keyboard_time; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->keyboard_time = keyboard_time; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->keyboard_time = keyboard_time; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::keyboard_key_serial
uint32_t gdk_wayland_seat_priv_get_keyboard_key_serial(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->keyboard_key_serial;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->keyboard_key_serial;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->keyboard_key_serial;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->keyboard_key_serial;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_keyboard_key_serial(GdkWaylandSeat * self, uint32_t keyboard_key_serial) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->keyboard_key_serial = keyboard_key_serial; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->keyboard_key_serial = keyboard_key_serial; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->keyboard_key_serial = keyboard_key_serial; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->keyboard_key_serial = keyboard_key_serial; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::primary_data_device
gboolean gdk_wayland_seat_priv_get_primary_data_device_supported() {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return TRUE;
case 1: return TRUE;
case 2: return TRUE;
case 3: return FALSE;
default: g_error("Invalid version ID"); g_abort();
}
}
struct gtk_primary_selection_device * gdk_wayland_seat_priv_get_primary_data_device_or_abort(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->primary_data_device;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->primary_data_device;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->primary_data_device;
case 3: g_error("GdkWaylandSeat::primary_data_device not supported on this GTK"); g_abort();
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_primary_data_device_or_abort(GdkWaylandSeat * self, struct gtk_primary_selection_device * primary_data_device) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->primary_data_device = primary_data_device; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->primary_data_device = primary_data_device; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->primary_data_device = primary_data_device; break;
case 3: g_error("GdkWaylandSeat::primary_data_device not supported on this GTK"); g_abort();
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::data_device
struct wl_data_device * gdk_wayland_seat_priv_get_data_device(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->data_device;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->data_device;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->data_device;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->data_device;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_data_device(GdkWaylandSeat * self, struct wl_data_device * data_device) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->data_device = data_device; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->data_device = data_device; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->data_device = data_device; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->data_device = data_device; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::drop_context
GdkDragContext * gdk_wayland_seat_priv_get_drop_context(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->drop_context;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->drop_context;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->drop_context;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->drop_context;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_drop_context(GdkWaylandSeat * self, GdkDragContext * drop_context) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->drop_context = drop_context; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->drop_context = drop_context; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->drop_context = drop_context; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->drop_context = drop_context; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::foreign_dnd_window
GdkWindow * gdk_wayland_seat_priv_get_foreign_dnd_window(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->foreign_dnd_window;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->foreign_dnd_window;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->foreign_dnd_window;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->foreign_dnd_window;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_foreign_dnd_window(GdkWaylandSeat * self, GdkWindow * foreign_dnd_window) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->foreign_dnd_window = foreign_dnd_window; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->foreign_dnd_window = foreign_dnd_window; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->foreign_dnd_window = foreign_dnd_window; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->foreign_dnd_window = foreign_dnd_window; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::gesture_n_fingers
guint gdk_wayland_seat_priv_get_gesture_n_fingers(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->gesture_n_fingers;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->gesture_n_fingers;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->gesture_n_fingers;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->gesture_n_fingers;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_gesture_n_fingers(GdkWaylandSeat * self, guint gesture_n_fingers) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->gesture_n_fingers = gesture_n_fingers; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->gesture_n_fingers = gesture_n_fingers; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->gesture_n_fingers = gesture_n_fingers; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->gesture_n_fingers = gesture_n_fingers; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::gesture_scale
gdouble * gdk_wayland_seat_priv_get_gesture_scale_ptr(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return (gdouble *)&((struct _GdkWaylandSeat_v3_22_0*)self)->gesture_scale;
case 1: return (gdouble *)&((struct _GdkWaylandSeat_v3_22_9*)self)->gesture_scale;
case 2: return (gdouble *)&((struct _GdkWaylandSeat_v3_22_16*)self)->gesture_scale;
case 3: return (gdouble *)&((struct _GdkWaylandSeat_v3_24_24*)self)->gesture_scale;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::grab_cursor
GdkCursor * gdk_wayland_seat_priv_get_grab_cursor(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return ((struct _GdkWaylandSeat_v3_22_0*)self)->grab_cursor;
case 1: return ((struct _GdkWaylandSeat_v3_22_9*)self)->grab_cursor;
case 2: return ((struct _GdkWaylandSeat_v3_22_16*)self)->grab_cursor;
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->grab_cursor;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_grab_cursor(GdkWaylandSeat * self, GdkCursor * grab_cursor) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: ((struct _GdkWaylandSeat_v3_22_0*)self)->grab_cursor = grab_cursor; break;
case 1: ((struct _GdkWaylandSeat_v3_22_9*)self)->grab_cursor = grab_cursor; break;
case 2: ((struct _GdkWaylandSeat_v3_22_16*)self)->grab_cursor = grab_cursor; break;
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->grab_cursor = grab_cursor; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::nkeys
gboolean gdk_wayland_seat_priv_get_nkeys_supported() {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return FALSE;
case 1: return TRUE;
case 2: return FALSE;
case 3: return FALSE;
default: g_error("Invalid version ID"); g_abort();
}
}
gint32 * gdk_wayland_seat_priv_get_nkeys_ptr_or_null(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return NULL;
case 1: return (gint32 *)&((struct _GdkWaylandSeat_v3_22_9*)self)->nkeys;
case 2: return NULL;
case 3: return NULL;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::gtk_primary_data_device
gboolean gdk_wayland_seat_priv_get_gtk_primary_data_device_supported() {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return FALSE;
case 1: return FALSE;
case 2: return FALSE;
case 3: return TRUE;
default: g_error("Invalid version ID"); g_abort();
}
}
struct gtk_primary_selection_device * gdk_wayland_seat_priv_get_gtk_primary_data_device_or_abort(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: g_error("GdkWaylandSeat::gtk_primary_data_device not supported on this GTK"); g_abort();
case 1: g_error("GdkWaylandSeat::gtk_primary_data_device not supported on this GTK"); g_abort();
case 2: g_error("GdkWaylandSeat::gtk_primary_data_device not supported on this GTK"); g_abort();
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->gtk_primary_data_device;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_gtk_primary_data_device_or_abort(GdkWaylandSeat * self, struct gtk_primary_selection_device * gtk_primary_data_device) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: g_error("GdkWaylandSeat::gtk_primary_data_device not supported on this GTK"); g_abort();
case 1: g_error("GdkWaylandSeat::gtk_primary_data_device not supported on this GTK"); g_abort();
case 2: g_error("GdkWaylandSeat::gtk_primary_data_device not supported on this GTK"); g_abort();
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->gtk_primary_data_device = gtk_primary_data_device; break;
default: g_error("Invalid version ID"); g_abort();
}
}
// GdkWaylandSeat::zwp_primary_data_device_v1
gboolean gdk_wayland_seat_priv_get_zwp_primary_data_device_v1_supported() {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: return FALSE;
case 1: return FALSE;
case 2: return FALSE;
case 3: return TRUE;
default: g_error("Invalid version ID"); g_abort();
}
}
struct zwp_primary_selection_device_v1 * gdk_wayland_seat_priv_get_zwp_primary_data_device_v1_or_abort(GdkWaylandSeat * self) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: g_error("GdkWaylandSeat::zwp_primary_data_device_v1 not supported on this GTK"); g_abort();
case 1: g_error("GdkWaylandSeat::zwp_primary_data_device_v1 not supported on this GTK"); g_abort();
case 2: g_error("GdkWaylandSeat::zwp_primary_data_device_v1 not supported on this GTK"); g_abort();
case 3: return ((struct _GdkWaylandSeat_v3_24_24*)self)->zwp_primary_data_device_v1;
default: g_error("Invalid version ID"); g_abort();
}
}
void gdk_wayland_seat_priv_set_zwp_primary_data_device_v1_or_abort(GdkWaylandSeat * self, struct zwp_primary_selection_device_v1 * zwp_primary_data_device_v1) {
switch (gdk_wayland_seat_priv_get_version_id()) {
case 0: g_error("GdkWaylandSeat::zwp_primary_data_device_v1 not supported on this GTK"); g_abort();
case 1: g_error("GdkWaylandSeat::zwp_primary_data_device_v1 not supported on this GTK"); g_abort();
case 2: g_error("GdkWaylandSeat::zwp_primary_data_device_v1 not supported on this GTK"); g_abort();
case 3: ((struct _GdkWaylandSeat_v3_24_24*)self)->zwp_primary_data_device_v1 = zwp_primary_data_device_v1; break;
default: g_error("Invalid version ID"); g_abort();
}
}
#endif // GDK_WAYLAND_SEAT_PRIV_H
|