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
|
/* libmutter-11.vapi generated by vapigen, do not modify. */
[CCode (cprefix = "Meta", gir_namespace = "Meta", gir_version = "11", lower_case_cprefix = "meta_")]
namespace Meta {
namespace Compositor {
[CCode (cheader_filename = "meta/compositor-mutter.h", cname = "meta_disable_unredirect_for_display")]
public static void disable_unredirect_for_display (Meta.Display display);
[CCode (cheader_filename = "meta/compositor-mutter.h", cname = "meta_enable_unredirect_for_display")]
public static void enable_unredirect_for_display (Meta.Display display);
[CCode (cheader_filename = "meta/compositor-mutter.h", cname = "meta_focus_stage_window")]
public static void focus_stage_window (Meta.Display display, uint32 timestamp);
[CCode (cheader_filename = "meta/compositor-mutter.h", cname = "meta_get_feedback_group_for_display")]
public static unowned Clutter.Actor get_feedback_group_for_display (Meta.Display display);
[CCode (cheader_filename = "meta/compositor-mutter.h", cname = "meta_get_stage_for_display")]
public static unowned Clutter.Actor get_stage_for_display (Meta.Display display);
[CCode (cheader_filename = "meta/compositor-mutter.h", cname = "meta_get_top_window_group_for_display")]
public static unowned Clutter.Actor get_top_window_group_for_display (Meta.Display display);
[CCode (cheader_filename = "meta/compositor-mutter.h", cname = "meta_get_window_actors")]
public static unowned GLib.List<Clutter.Actor> get_window_actors (Meta.Display display);
[CCode (cheader_filename = "meta/compositor-mutter.h", cname = "meta_get_window_group_for_display")]
public static unowned Clutter.Actor get_window_group_for_display (Meta.Display display);
}
namespace Prefs {
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_bell_is_audible")]
public static bool prefs_bell_is_audible ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_change_workspace_name")]
public static void prefs_change_workspace_name (int i, string name);
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_action_double_click_titlebar")]
public static GDesktop.TitlebarAction prefs_get_action_double_click_titlebar ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_action_middle_click_titlebar")]
public static GDesktop.TitlebarAction prefs_get_action_middle_click_titlebar ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_action_right_click_titlebar")]
public static GDesktop.TitlebarAction prefs_get_action_right_click_titlebar ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_attach_modal_dialogs")]
public static bool prefs_get_attach_modal_dialogs ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_auto_maximize")]
public static bool prefs_get_auto_maximize ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_auto_raise")]
public static bool prefs_get_auto_raise ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_auto_raise_delay")]
public static int prefs_get_auto_raise_delay ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_button_layout")]
public static Meta.ButtonLayout prefs_get_button_layout ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_center_new_windows")]
public static bool prefs_get_center_new_windows ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_check_alive_timeout")]
public static uint prefs_get_check_alive_timeout ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_compositing_manager")]
public static bool prefs_get_compositing_manager ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_cursor_size")]
public static int prefs_get_cursor_size ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_cursor_theme")]
public static unowned string prefs_get_cursor_theme ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_disable_workarounds")]
public static bool prefs_get_disable_workarounds ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_drag_threshold")]
public static int prefs_get_drag_threshold ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_draggable_border_width")]
public static int prefs_get_draggable_border_width ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_dynamic_workspaces")]
public static bool prefs_get_dynamic_workspaces ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_edge_tiling")]
public static bool prefs_get_edge_tiling ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_focus_change_on_pointer_rest")]
public static bool prefs_get_focus_change_on_pointer_rest ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_focus_mode")]
public static GDesktop.FocusMode prefs_get_focus_mode ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_focus_new_windows")]
public static GDesktop.FocusNewWindows prefs_get_focus_new_windows ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_force_fullscreen")]
public static bool prefs_get_force_fullscreen ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_gnome_accessibility")]
public static bool prefs_get_gnome_accessibility ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_gnome_animations")]
public static bool prefs_get_gnome_animations ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_keybinding_action")]
public static Meta.KeyBindingAction prefs_get_keybinding_action (string name);
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_mouse_button_menu")]
public static int prefs_get_mouse_button_menu ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_mouse_button_mods")]
public static Meta.VirtualModifier prefs_get_mouse_button_mods ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_mouse_button_resize")]
public static int prefs_get_mouse_button_resize ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_num_workspaces")]
public static int prefs_get_num_workspaces ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_raise_on_click")]
public static bool prefs_get_raise_on_click ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_show_fallback_app_menu")]
public static bool prefs_get_show_fallback_app_menu ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_titlebar_font")]
public static unowned Pango.FontDescription prefs_get_titlebar_font ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_visual_bell")]
public static bool prefs_get_visual_bell ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_visual_bell_type")]
public static GDesktop.VisualBellType prefs_get_visual_bell_type ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_workspace_name")]
public static unowned string prefs_get_workspace_name (int i);
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_get_workspaces_only_on_primary")]
public static bool prefs_get_workspaces_only_on_primary ();
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_set_force_fullscreen")]
public static void prefs_set_force_fullscreen (bool whether);
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_set_num_workspaces")]
public static void prefs_set_num_workspaces (int n_workspaces);
[CCode (cheader_filename = "meta/prefs.h", cname = "meta_prefs_set_show_fallback_app_menu")]
public static void prefs_set_show_fallback_app_menu (bool whether);
}
namespace Util {
[CCode (cheader_filename = "meta/util.h", cname = "meta_add_verbose_topic")]
public static void add_verbose_topic (Meta.DebugTopic topic);
[CCode (cheader_filename = "meta/util.h", cname = "meta_external_binding_name_for_action")]
public static string external_binding_name_for_action (uint keybinding_action);
[CCode (cheader_filename = "meta/util.h", cname = "meta_get_locale_direction")]
public static Meta.LocaleDirection get_locale_direction ();
[CCode (cheader_filename = "meta/util.h", cname = "meta_gravity_to_string")]
[Version (replacement = "Gravity.to_string")]
public static unowned string gravity_to_string (Meta.Gravity gravity);
[CCode (cheader_filename = "meta/util.h", cname = "meta_is_verbose")]
public static bool is_verbose ();
[CCode (cheader_filename = "meta/util.h", cname = "meta_is_wayland_compositor")]
public static bool is_wayland_compositor ();
[CCode (cheader_filename = "meta/util.h", cname = "meta_later_add")]
public static uint later_add (Meta.LaterType when, owned GLib.SourceFunc func);
[CCode (cheader_filename = "meta/util.h", cname = "meta_later_remove")]
public static void later_remove (uint later_id);
[CCode (cheader_filename = "meta/util.h", cname = "meta_pop_no_msg_prefix")]
public static void pop_no_msg_prefix ();
[CCode (cheader_filename = "meta/util.h", cname = "meta_push_no_msg_prefix")]
public static void push_no_msg_prefix ();
[CCode (cheader_filename = "meta/util.h", cname = "meta_rect")]
public static Meta.Rectangle? rect (int x, int y, int width, int height);
[CCode (cheader_filename = "meta/util.h", cname = "meta_remove_verbose_topic")]
public static void remove_verbose_topic (Meta.DebugTopic topic);
[CCode (cheader_filename = "meta/util.h", cname = "meta_unsigned_long_equal")]
public static int unsigned_long_equal (void* v1, void* v2);
[CCode (cheader_filename = "meta/util.h", cname = "meta_unsigned_long_hash")]
public static uint unsigned_long_hash (void* v);
[CCode (cheader_filename = "meta/util.h", cname = "meta_x11_error_trap_pop")]
public static void x11_error_trap_pop (Meta.X11Display x11_display);
[CCode (cheader_filename = "meta/util.h", cname = "meta_x11_error_trap_pop_with_return")]
public static int x11_error_trap_pop_with_return (Meta.X11Display x11_display);
[CCode (cheader_filename = "meta/util.h", cname = "meta_x11_error_trap_push")]
public static void x11_error_trap_push (Meta.X11Display x11_display);
}
[CCode (cheader_filename = "meta/meta-backend.h", type_id = "meta_backend_get_type ()")]
public abstract class Backend : GLib.Object, GLib.Initable, GLib.Initable {
[CCode (has_construct_function = false)]
protected Backend ();
[CCode (cheader_filename = "meta/meta-backend.h", cname = "meta_get_backend")]
public static unowned Meta.Backend get_backend ();
public Meta.BackendCapabilities get_capabilities ();
public unowned Meta.Context get_context ();
public unowned Meta.IdleMonitor get_core_idle_monitor ();
public unowned Meta.Dnd get_dnd ();
public unowned Meta.MonitorManager get_monitor_manager ();
public unowned Meta.RemoteAccessController get_remote_access_controller ();
public unowned Meta.Settings get_settings ();
public unowned Clutter.Actor get_stage ();
public bool is_headless ();
public bool is_rendering_hardware_accelerated ();
public void lock_layout_group (uint idx);
public void set_keymap (string layouts, string variants, string options);
public Meta.BackendCapabilities capabilities { get; }
public Meta.Context context { get; construct; }
public signal void keymap_changed ();
public signal void keymap_layout_group_changed (uint object);
public signal void last_device_changed (Clutter.InputDevice object);
public signal void lid_is_closed_changed (bool object);
public signal void prepare_shutdown ();
}
[CCode (cheader_filename = "meta/meta-background.h", type_id = "meta_background_get_type ()")]
public class Background : GLib.Object {
[CCode (has_construct_function = false)]
public Background (Meta.Display display);
public static void refresh_all ();
public void set_blend (GLib.File file1, GLib.File file2, double blend_factor, GDesktop.BackgroundStyle style);
public void set_color (Clutter.Color color);
public void set_file (GLib.File? file, GDesktop.BackgroundStyle style);
public void set_gradient (GDesktop.BackgroundShading shading_direction, Clutter.Color color, Clutter.Color second_color);
[NoAccessorMethod]
public Meta.Display meta_display { owned get; construct; }
public signal void changed ();
}
[CCode (cheader_filename = "meta/meta-background-actor.h", type_id = "meta_background_actor_get_type ()")]
public class BackgroundActor : Clutter.Actor, Atk.Implementor, Clutter.Animatable, Clutter.Container, Clutter.Scriptable {
[CCode (has_construct_function = false, type = "ClutterActor*")]
public BackgroundActor (Meta.Display display, int monitor);
[NoAccessorMethod]
public Meta.Display meta_display { owned get; construct; }
[NoAccessorMethod]
public int monitor { get; construct; }
}
[CCode (cheader_filename = "meta/meta-background-content.h", type_id = "meta_background_content_get_type ()")]
public class BackgroundContent : GLib.Object, Clutter.Content {
[CCode (has_construct_function = false)]
protected BackgroundContent ();
public static Clutter.Content @new (Meta.Display display, int monitor);
public void set_background (Meta.Background background);
public void set_gradient (bool enabled, int height, double tone_start);
public void set_rounded_clip_bounds (Graphene.Rect? bounds);
public void set_rounded_clip_radius (float radius);
public void set_vignette (bool enabled, double brightness, double sharpness);
[NoAccessorMethod]
public Meta.Background background { owned get; set; }
[NoAccessorMethod]
public double brightness { get; set; }
[NoAccessorMethod]
public bool gradient { get; set; }
[NoAccessorMethod]
public int gradient_height { get; set; }
[NoAccessorMethod]
public double gradient_max_darkness { get; set; }
[NoAccessorMethod]
public Meta.Display meta_display { owned get; construct; }
[NoAccessorMethod]
public int monitor { get; construct; }
[NoAccessorMethod]
public float rounded_clip_radius { get; set; }
[NoAccessorMethod]
public bool vignette { get; set; }
[NoAccessorMethod]
public double vignette_sharpness { get; set; }
}
[CCode (cheader_filename = "meta/meta-background-group.h", type_id = "meta_background_group_get_type ()")]
public class BackgroundGroup : Clutter.Actor, Atk.Implementor, Clutter.Animatable, Clutter.Container, Clutter.Scriptable {
[CCode (has_construct_function = false, type = "ClutterActor*")]
public BackgroundGroup ();
}
[CCode (cheader_filename = "meta/meta-background-image.h", type_id = "meta_background_image_get_type ()")]
public class BackgroundImage : GLib.Object {
[CCode (has_construct_function = false)]
protected BackgroundImage ();
public bool get_success ();
public unowned Cogl.Texture get_texture ();
public bool is_loaded ();
public signal void loaded ();
}
[CCode (cheader_filename = "meta/meta-background-image.h", type_id = "meta_background_image_cache_get_type ()")]
public class BackgroundImageCache : GLib.Object {
[CCode (has_construct_function = false)]
protected BackgroundImageCache ();
public static unowned Meta.BackgroundImageCache get_default ();
public Meta.BackgroundImage load (GLib.File file);
public void purge (GLib.File file);
}
[CCode (cheader_filename = "meta/barrier.h", type_id = "meta_barrier_get_type ()")]
public class Barrier : GLib.Object, GLib.Initable {
[CCode (has_construct_function = false)]
public Barrier (Meta.Backend backend, int x1, int y1, int x2, int y2, Meta.BarrierDirection directions) throws GLib.Error;
public void destroy ();
public bool is_active ();
public void release (Meta.BarrierEvent event);
[NoAccessorMethod]
public Meta.Backend backend { owned get; construct; }
[NoAccessorMethod]
public Meta.BarrierDirection directions { get; construct; }
[NoAccessorMethod]
public Meta.Display display { owned get; construct; }
[NoAccessorMethod]
public int x1 { get; construct; }
[NoAccessorMethod]
public int x2 { get; construct; }
[NoAccessorMethod]
public int y1 { get; construct; }
[NoAccessorMethod]
public int y2 { get; construct; }
public signal void hit (Meta.BarrierEvent event);
public signal void left (Meta.BarrierEvent event);
}
[CCode (cheader_filename = "meta/barrier.h", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "meta_barrier_event_get_type ()")]
[Compact]
public class BarrierEvent {
public int dt;
public double dx;
public double dy;
public int event_id;
public bool grabbed;
public bool released;
public uint32 time;
public double x;
public double y;
}
[CCode (cheader_filename = "meta/meta-context.h", type_id = "meta_context_get_type ()")]
public class Context : GLib.Object {
[CCode (has_construct_function = false)]
protected Context ();
public void add_option_entries ([CCode (array_length = false, array_null_terminated = true)] GLib.OptionEntry[] entries, string? translation_domain);
public void add_option_group (owned GLib.OptionGroup group);
public bool configure ([CCode (array_length_cname = "argc", array_length_pos = 0.5)] ref string[]? argv) throws GLib.Error;
[CCode (cname = "meta_context_configure")]
public bool configure_args ([CCode (array_length_pos = 0.9)] ref unowned string[] argv) throws GLib.Error;
public void destroy ();
public unowned Meta.Backend get_backend ();
public Meta.CompositorType get_compositor_type ();
public unowned Meta.Display get_display ();
public bool is_replacing ();
public void notify_ready ();
public bool raise_rlimit_nofile () throws GLib.Error;
public bool restore_rlimit_nofile () throws GLib.Error;
public bool run_main_loop () throws GLib.Error;
public void set_gnome_wm_keybindings (string wm_keybindings);
public void set_plugin_gtype (GLib.Type plugin_gtype);
public void set_plugin_name (string plugin_name);
public bool setup () throws GLib.Error;
public bool start () throws GLib.Error;
public void terminate ();
public void terminate_with_error (GLib.Error error);
[NoAccessorMethod]
public string name { owned get; construct; }
[NoAccessorMethod]
public bool unsafe_mode { get; set; }
}
[CCode (cheader_filename = "meta/meta-cursor-tracker.h", type_id = "meta_cursor_tracker_get_type ()")]
public class CursorTracker : GLib.Object {
[CCode (has_construct_function = false)]
protected CursorTracker ();
public void get_hot (out int x, out int y);
public void get_pointer (out Graphene.Point coords, out Clutter.ModifierType mods);
public bool get_pointer_visible ();
public float get_scale ();
public unowned Cogl.Texture get_sprite ();
public void set_pointer_visible (bool visible);
[NoAccessorMethod]
public Meta.Backend backend { owned get; construct; }
public signal void cursor_changed ();
public signal void position_invalidated ();
public signal void visibility_changed ();
}
[CCode (cheader_filename = "meta/display.h", type_id = "meta_display_get_type ()")]
public class Display : GLib.Object {
[CCode (has_construct_function = false)]
protected Display ();
public void add_ignored_crossing_serial (ulong serial);
public uint add_keybinding (string name, GLib.Settings settings, Meta.KeyBindingFlags flags, owned Meta.KeyHandlerFunc handler);
public bool begin_grab_op (Meta.Window window, Meta.GrabOp op, bool pointer_already_grabbed, bool frame_action, int button, ulong modmask, uint32 timestamp, int root_x, int root_y);
public void clear_mouse_mode ();
public void close (uint32 timestamp);
public void end_grab_op (uint32 timestamp);
public void focus_default_window (uint32 timestamp);
public void freeze_keyboard (uint32 timestamp);
public Clutter.ModifierType get_compositor_modifiers ();
public unowned Meta.Context get_context ();
public int get_current_monitor ();
public uint32 get_current_time ();
public uint32 get_current_time_roundtrip ();
[CCode (cname = "meta_cursor_tracker_get_for_display")]
public unowned Meta.CursorTracker get_cursor_tracker ();
public unowned Meta.Window get_focus_window ();
public Meta.GrabOp get_grab_op ();
public uint get_keybinding_action (uint keycode, ulong mask);
public uint32 get_last_user_time ();
public Meta.Rectangle get_monitor_geometry (int monitor);
public bool get_monitor_in_fullscreen (int monitor);
public int get_monitor_index_for_rect (Meta.Rectangle rect);
public int get_monitor_neighbor_index (int which_monitor, Meta.DisplayDirection dir);
public float get_monitor_scale (int monitor);
public int get_n_monitors ();
public string get_pad_action_label (Clutter.InputDevice pad, Meta.PadActionType action_type, uint action_number);
public int get_primary_monitor ();
public unowned Meta.Selection get_selection ();
public void get_size (out int width, out int height);
public unowned Meta.SoundPlayer get_sound_player ();
public unowned Meta.Window get_tab_current (Meta.TabList type, Meta.Workspace workspace);
public GLib.List<weak Meta.Window> get_tab_list (Meta.TabList type, Meta.Workspace? workspace);
public unowned Meta.Window get_tab_next (Meta.TabList type, Meta.Workspace workspace, Meta.Window? window, bool backward);
public unowned Meta.WorkspaceManager get_workspace_manager ();
public uint grab_accelerator (string accelerator, Meta.KeyBindingFlags flags);
public bool is_pointer_emulating_sequence (Clutter.EventSequence? sequence);
public GLib.List<weak Meta.Window> list_all_windows ();
public bool remove_keybinding (string name);
public void request_pad_osd (Clutter.InputDevice pad, bool edition_mode);
public void set_cursor (Meta.Cursor cursor);
public void set_input_focus (Meta.Window window, bool focus_frame, uint32 timestamp);
public GLib.SList<weak Meta.Window> sort_windows_by_stacking (GLib.SList<Meta.Window> windows);
public bool supports_extended_barriers ();
public void unfreeze_keyboard (uint32 timestamp);
public bool ungrab_accelerator (uint action_id);
public void ungrab_keyboard (uint32 timestamp);
public void unset_input_focus (uint32 timestamp);
public bool xserver_time_is_before (uint32 time1, uint32 time2);
public Clutter.ModifierType compositor_modifiers { get; }
public Meta.Window focus_window { get; }
public signal void accelerator_activated (uint object, Clutter.InputDevice p0, uint p1);
public signal void closing ();
public signal void cursor_updated ();
public signal void gl_video_memory_purged ();
public signal void grab_op_begin (Meta.Window object, Meta.GrabOp p0);
public signal void grab_op_end (Meta.Window object, Meta.GrabOp p0);
public signal void in_fullscreen_changed ();
public signal bool init_xserver (GLib.Task object);
public signal bool modifiers_accelerator_activated ();
public signal void overlay_key ();
public signal void pad_mode_switch (Clutter.InputDevice object, uint p0, uint p1);
public signal void restacked ();
public signal bool restart ();
public signal void show_osd (int object, string p0, string p1);
public signal unowned Clutter.Actor? show_pad_osd (Clutter.InputDevice pad, GLib.Settings settings, string layout_path, bool edition_mode, int monitor_idx);
public signal bool show_resize_popup (bool object, Meta.Rectangle p0, int p1, int p2);
public signal bool show_restart_message (string? message);
public signal void showing_desktop_changed ();
public signal void window_created (Meta.Window object);
public signal void window_demands_attention (Meta.Window object);
public signal void window_entered_monitor (int object, Meta.Window p0);
public signal void window_left_monitor (int object, Meta.Window p0);
public signal void window_marked_urgent (Meta.Window object);
public signal void window_visibility_updated (void* object, void* p0, void* p1);
public signal void workareas_changed ();
public signal void x11_display_closing ();
public signal void x11_display_opened ();
public signal void x11_display_setup ();
}
[CCode (cheader_filename = "meta/meta-dnd.h", type_id = "meta_dnd_get_type ()")]
public class Dnd : GLib.Object {
[CCode (has_construct_function = false)]
protected Dnd ();
public signal void dnd_enter ();
public signal void dnd_leave ();
public signal void dnd_position_change (int object, int p0);
}
[CCode (cheader_filename = "meta/main.h", has_type_id = false)]
[Compact]
public class Frame {
}
[CCode (cheader_filename = "meta/meta-idle-monitor.h", type_id = "meta_idle_monitor_get_type ()")]
public class IdleMonitor : GLib.Object {
[CCode (has_construct_function = false)]
protected IdleMonitor ();
public uint add_idle_watch (uint64 interval_msec, owned Meta.IdleMonitorWatchFunc? callback);
public uint add_user_active_watch (owned Meta.IdleMonitorWatchFunc? callback);
public int64 get_idletime ();
public void remove_watch (uint id);
[NoAccessorMethod]
public Clutter.InputDevice device { owned get; construct; }
}
[CCode (cheader_filename = "meta/main.h", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "meta_key_binding_get_type ()")]
[Compact]
public class KeyBinding {
public uint get_mask ();
public Meta.VirtualModifier get_modifiers ();
public unowned string get_name ();
public bool is_builtin ();
public bool is_reversed ();
[CCode (cname = "meta_keybindings_set_custom_handler")]
public static bool set_custom_handler (string name, owned Meta.KeyHandlerFunc? handler);
}
[CCode (cheader_filename = "meta/main.h", has_type_id = false)]
[Compact]
public class Laters {
public uint add (Meta.LaterType when, owned GLib.SourceFunc func);
public void remove (uint later_id);
}
[CCode (cheader_filename = "meta/meta-launch-context.h", type_id = "meta_launch_context_get_type ()")]
public class LaunchContext : GLib.AppLaunchContext {
[CCode (has_construct_function = false)]
protected LaunchContext ();
public void set_timestamp (uint32 timestamp);
public void set_workspace (Meta.Workspace workspace);
[NoAccessorMethod]
public Meta.Display display { owned get; construct; }
[NoAccessorMethod]
public uint timestamp { get; set; }
[NoAccessorMethod]
public Meta.Workspace workspace { owned get; set; }
}
[CCode (cheader_filename = "meta/meta-monitor-manager.h", type_id = "meta_monitor_manager_get_type ()")]
public class MonitorManager : GLib.Object {
[CCode (has_construct_function = false)]
protected MonitorManager ();
public bool can_switch_config ();
public static unowned Meta.MonitorManager @get ();
public static int get_display_configuration_timeout ();
public bool get_is_builtin_display_on ();
public int get_monitor_for_connector (string connector);
public bool get_panel_orientation_managed ();
public Meta.MonitorSwitchConfigType get_switch_config ();
public void switch_config (Meta.MonitorSwitchConfigType config_type);
[NoAccessorMethod]
public Meta.Backend backend { owned get; construct; }
[NoAccessorMethod]
public bool has_builtin_panel { get; }
[NoAccessorMethod]
public bool night_light_supported { get; }
public bool panel_orientation_managed { get; }
public signal void confirm_display_change ();
public signal void monitors_changed ();
public signal void monitors_changed_internal ();
public signal void power_save_mode_changed ();
}
[CCode (cheader_filename = "meta/meta-plugin.h", type_id = "meta_plugin_get_type ()")]
public abstract class Plugin : GLib.Object {
[CCode (has_construct_function = false)]
protected Plugin ();
public void complete_display_change (bool ok);
[NoWrapper]
public virtual void confirm_display_change ();
[NoWrapper]
public virtual void destroy (Meta.WindowActor actor);
public void destroy_completed (Meta.WindowActor actor);
public unowned Meta.Display get_display ();
public unowned Meta.PluginInfo? get_info ();
[NoWrapper]
public virtual void hide_tile_preview ();
[NoWrapper]
public virtual bool keybinding_filter (Meta.KeyBinding binding);
[NoWrapper]
public virtual void kill_switch_workspace ();
[NoWrapper]
public virtual void kill_window_effects (Meta.WindowActor actor);
[NoWrapper]
public virtual void locate_pointer ();
public static void manager_set_plugin_type (GLib.Type gtype);
[NoWrapper]
public virtual void map (Meta.WindowActor actor);
public void map_completed (Meta.WindowActor actor);
[NoWrapper]
public virtual void minimize (Meta.WindowActor actor);
public void minimize_completed (Meta.WindowActor actor);
[NoWrapper]
public virtual unowned Meta.PluginInfo? plugin_info ();
[NoWrapper]
public virtual void show_tile_preview (Meta.Window window, Meta.Rectangle tile_rect, int tile_monitor_number);
[NoWrapper]
public virtual void show_window_menu (Meta.Window window, Meta.WindowMenuType menu, int x, int y);
[NoWrapper]
public virtual void show_window_menu_for_rect (Meta.Window window, Meta.WindowMenuType menu, Meta.Rectangle rect);
[NoWrapper]
public virtual void size_change (Meta.WindowActor actor, Meta.SizeChange which_change, Meta.Rectangle old_frame_rect, Meta.Rectangle old_buffer_rect);
public void size_change_completed (Meta.WindowActor actor);
[NoWrapper]
public virtual void size_changed (Meta.WindowActor actor);
[NoWrapper]
public virtual void start ();
[NoWrapper]
public virtual void switch_workspace (int from, int to, Meta.MotionDirection direction);
public void switch_workspace_completed ();
[NoWrapper]
public virtual void unminimize (Meta.WindowActor actor);
public void unminimize_completed (Meta.WindowActor actor);
[NoWrapper]
public virtual bool xevent_filter (X.Event event);
}
[CCode (cheader_filename = "meta/meta-remote-access-controller.h", type_id = "meta_remote_access_controller_get_type ()")]
public class RemoteAccessController : GLib.Object {
[CCode (has_construct_function = false)]
protected RemoteAccessController ();
public void inhibit_remote_access ();
public void uninhibit_remote_access ();
public signal void new_handle (Meta.RemoteAccessHandle object);
}
[CCode (cheader_filename = "meta/meta-remote-access-controller.h", type_id = "meta_remote_access_handle_get_type ()")]
public class RemoteAccessHandle : GLib.Object {
[CCode (has_construct_function = false)]
protected RemoteAccessHandle ();
public bool get_disable_animations ();
public virtual void stop ();
[NoAccessorMethod]
public bool is_recording { get; construct; }
public signal void stopped ();
}
[CCode (cheader_filename = "meta/meta-selection.h", type_id = "meta_selection_get_type ()")]
public class Selection : GLib.Object {
[CCode (has_construct_function = false)]
public Selection (Meta.Display display);
public GLib.List<string> get_mimetypes (Meta.SelectionType selection_type);
public void set_owner (Meta.SelectionType selection_type, Meta.SelectionSource owner);
public async bool transfer_async (Meta.SelectionType selection_type, string mimetype, ssize_t size, GLib.OutputStream output, GLib.Cancellable? cancellable) throws GLib.Error;
public void unset_owner (Meta.SelectionType selection_type, Meta.SelectionSource owner);
public signal void owner_changed (uint object, Meta.SelectionSource p0);
}
[CCode (cheader_filename = "meta/meta-selection.h", type_id = "meta_selection_source_get_type ()")]
public class SelectionSource : GLib.Object {
[CCode (has_construct_function = false)]
protected SelectionSource ();
public virtual GLib.List<string> get_mimetypes ();
public bool is_active ();
public virtual async GLib.InputStream read_async (string mimetype, GLib.Cancellable? cancellable) throws GLib.Error;
public virtual signal void activated ();
public virtual signal void deactivated ();
}
[CCode (cheader_filename = "meta/meta-selection-source-memory.h", type_id = "meta_selection_source_memory_get_type ()")]
public class SelectionSourceMemory : Meta.SelectionSource {
[CCode (has_construct_function = false, type = "MetaSelectionSource*")]
public SelectionSourceMemory (string mimetype, GLib.Bytes content);
}
[CCode (cheader_filename = "meta/meta-settings.h", has_type_id = false)]
[Compact]
public class Settings {
public int get_font_dpi ();
public int get_ui_scaling_factor ();
}
[CCode (cheader_filename = "meta/main.h", ref_function = "meta_shadow_ref", type_id = "meta_shadow_get_type ()", unref_function = "meta_shadow_unref")]
[Compact]
public class Shadow {
public void get_bounds (int window_x, int window_y, int window_width, int window_height, Cairo.RectangleInt bounds);
public void paint (Cogl.Framebuffer framebuffer, int window_x, int window_y, int window_width, int window_height, uint8 opacity, Cairo.Region? clip, bool clip_strictly);
public Meta.Shadow @ref ();
public void unref ();
}
[CCode (cheader_filename = "meta/meta-shadow-factory.h", type_id = "meta_shadow_factory_get_type ()")]
public class ShadowFactory : GLib.Object {
[CCode (has_construct_function = false)]
public ShadowFactory ();
public static unowned Meta.ShadowFactory get_default ();
public Meta.ShadowParams get_params (string class_name, bool focused);
public Meta.Shadow get_shadow (Meta.WindowShape shape, int width, int height, string class_name, bool focused);
public void set_params (string class_name, bool focused, Meta.ShadowParams @params);
public signal void changed ();
}
[CCode (cheader_filename = "meta/meta-shaped-texture.h", type_id = "meta_shaped_texture_get_type ()")]
public class ShapedTexture : GLib.Object, Clutter.Content {
[CCode (has_construct_function = false)]
protected ShapedTexture ();
public Cairo.Surface? get_image (Cairo.RectangleInt? clip);
public unowned Cogl.Texture get_texture ();
public void set_create_mipmaps (bool create_mipmaps);
public void set_mask_texture (Cogl.Texture mask_texture);
public signal void size_changed ();
}
[CCode (cheader_filename = "meta/meta-sound-player.h", type_id = "meta_sound_player_get_type ()")]
public class SoundPlayer : GLib.Object {
[CCode (has_construct_function = false)]
protected SoundPlayer ();
public void play_from_file (GLib.File file, string description, GLib.Cancellable? cancellable = null);
public void play_from_theme (string name, string description, GLib.Cancellable? cancellable = null);
}
[CCode (cheader_filename = "meta/meta-stage.h", type_id = "meta_stage_get_type ()")]
public class Stage : Clutter.Stage, Atk.Implementor, Clutter.Animatable, Clutter.Container, Clutter.Scriptable {
[CCode (has_construct_function = false)]
protected Stage ();
public static bool is_focused (Meta.Display display);
public signal void actors_painted ();
}
[CCode (cheader_filename = "meta/meta-startup-notification.h", type_id = "meta_startup_notification_get_type ()")]
public class StartupNotification : GLib.Object {
[CCode (has_construct_function = false)]
protected StartupNotification ();
public Meta.LaunchContext create_launcher ();
public unowned GLib.SList<Meta.StartupSequence> get_sequences ();
[NoAccessorMethod]
public Meta.Display display { owned get; construct; }
public signal void changed (Meta.StartupSequence object);
}
[CCode (cheader_filename = "meta/main.h", type_id = "meta_startup_sequence_get_type ()")]
public class StartupSequence : GLib.Object {
[CCode (has_construct_function = false)]
protected StartupSequence ();
public unowned string? get_application_id ();
public bool get_completed ();
public unowned string? get_icon_name ();
public unowned string get_id ();
public unowned string get_name ();
public uint64 get_timestamp ();
public unowned string? get_wmclass ();
public int get_workspace ();
public string application_id { get; construct; }
public string icon_name { get; construct; }
public string id { get; construct; }
public string name { get; construct; }
public uint64 timestamp { get; construct; }
public string wmclass { get; construct; }
public int workspace { get; construct; }
[HasEmitter]
public signal void complete ();
public signal void timeout ();
}
[CCode (cheader_filename = "meta/theme.h", has_type_id = false)]
[Compact]
public class Theme {
public void free ();
}
[CCode (cheader_filename = "meta/meta-wayland-client.h", type_id = "meta_wayland_client_get_type ()")]
public class WaylandClient : GLib.Object {
[CCode (has_construct_function = false)]
public WaylandClient (GLib.SubprocessLauncher launcher) throws GLib.Error;
public void hide_from_window_list (Meta.Window window);
public bool owns_window (Meta.Window window);
public void show_in_window_list (Meta.Window window);
public GLib.Subprocess spawnv (Meta.Display display, [CCode (array_length = false, array_null_terminated = true)] string[] argv) throws GLib.Error;
}
[CCode (cheader_filename = "meta/window.h", type_id = "meta_window_get_type ()")]
public abstract class Window : GLib.Object {
[CCode (has_construct_function = false)]
protected Window ();
public void activate (uint32 current_time);
public void activate_with_workspace (uint32 current_time, Meta.Workspace workspace);
public bool allows_move ();
public bool allows_resize ();
public void begin_grab_op (Meta.GrabOp op, bool frame_action, uint32 timestamp);
public bool can_close ();
public bool can_maximize ();
public bool can_minimize ();
public bool can_shade ();
public void change_workspace (Meta.Workspace workspace);
public void change_workspace_by_index (int space_index, bool append);
public void check_alive (uint32 timestamp);
public Meta.Rectangle client_rect_to_frame_rect (Meta.Rectangle client_rect);
public void compute_group ();
public void @delete (uint32 timestamp);
public unowned Meta.Window find_root_ancestor ();
public void focus (uint32 timestamp);
public void foreach_ancestor (Meta.WindowForeachFunc func);
public void foreach_transient (Meta.WindowForeachFunc func);
public Meta.Rectangle frame_rect_to_client_rect (Meta.Rectangle frame_rect);
public Meta.Rectangle get_buffer_rect ();
public unowned string? get_client_machine ();
public Meta.WindowClientType get_client_type ();
public unowned GLib.Object get_compositor_private ();
public unowned string get_description ();
public unowned Meta.Display get_display ();
public unowned Cairo.Region? get_frame_bounds ();
public Meta.Rectangle get_frame_rect ();
public Meta.FrameType get_frame_type ();
public unowned string? get_gtk_app_menu_object_path ();
public unowned string? get_gtk_application_id ();
public unowned string? get_gtk_application_object_path ();
public unowned string? get_gtk_menubar_object_path ();
public unowned string? get_gtk_theme_variant ();
public unowned string? get_gtk_unique_bus_name ();
public unowned string? get_gtk_window_object_path ();
public bool get_icon_geometry (out Meta.Rectangle rect);
public uint64 get_id ();
public Meta.StackLayer get_layer ();
public Meta.MaximizeFlags get_maximized ();
public int get_monitor ();
public unowned string? get_mutter_hints ();
public int get_pid ();
public unowned string get_role ();
public unowned string? get_sandboxed_app_id ();
public uint get_stable_sequence ();
public unowned string? get_startup_id ();
public unowned Meta.Window? get_tile_match ();
public unowned string get_title ();
public unowned Meta.Window? get_transient_for ();
public uint32 get_user_time ();
public Meta.WindowType get_window_type ();
public unowned string? get_wm_class ();
public unowned string? get_wm_class_instance ();
public Meta.Rectangle get_work_area_all_monitors ();
public Meta.Rectangle get_work_area_current_monitor ();
public Meta.Rectangle get_work_area_for_monitor (int which_monitor);
public unowned Meta.Workspace get_workspace ();
public X.Window get_xwindow ();
public void group_leader_changed ();
public bool has_attached_dialogs ();
public bool has_focus ();
public bool is_above ();
public bool is_always_on_all_workspaces ();
public bool is_ancestor_of_transient (Meta.Window transient);
public bool is_attached_dialog ();
public bool is_client_decorated ();
public bool is_fullscreen ();
public bool is_hidden ();
public bool is_monitor_sized ();
public bool is_on_all_workspaces ();
public bool is_on_primary_monitor ();
public bool is_override_redirect ();
public bool is_remote ();
public bool is_screen_sized ();
public bool is_shaded ();
public bool is_skip_taskbar ();
public void kill ();
public bool located_on_workspace (Meta.Workspace workspace);
public void lower ();
public void lower_with_transients (uint32 timestamp);
public void make_above ();
public void make_fullscreen ();
public void maximize (Meta.MaximizeFlags directions);
public void minimize ();
public void move_frame (bool user_op, int root_x_nw, int root_y_nw);
public void move_resize_frame (bool user_op, int root_x_nw, int root_y_nw, int w, int h);
public void move_to_monitor (int monitor);
public void raise ();
public void set_compositor_private (GLib.Object priv);
public void set_demands_attention ();
public void set_icon_geometry (Meta.Rectangle? rect);
public void shade (uint32 timestamp);
public void shove_titlebar_onscreen ();
public bool showing_on_its_workspace ();
public void shutdown_group ();
public void stick ();
public bool titlebar_is_onscreen ();
public void unmake_above ();
public void unmake_fullscreen ();
public void unmaximize (Meta.MaximizeFlags directions);
public void unminimize ();
public void unset_demands_attention ();
public void unshade (uint32 timestamp);
public void unstick ();
[NoAccessorMethod]
public bool above { get; }
[NoAccessorMethod]
public bool appears_focused { get; }
[NoAccessorMethod]
public bool decorated { get; }
[NoAccessorMethod]
public bool demands_attention { get; }
[NoAccessorMethod]
public bool fullscreen { get; }
public string gtk_app_menu_object_path { get; }
public string gtk_application_id { get; }
public string gtk_application_object_path { get; }
public string gtk_menubar_object_path { get; }
public string gtk_unique_bus_name { get; }
public string gtk_window_object_path { get; }
[NoAccessorMethod]
public void* icon { get; }
[NoAccessorMethod]
public bool is_alive { get; }
[NoAccessorMethod]
public bool maximized_horizontally { get; }
[NoAccessorMethod]
public bool maximized_vertically { get; }
[NoAccessorMethod]
public void* mini_icon { get; }
[NoAccessorMethod]
public bool minimized { get; }
public string mutter_hints { get; }
[NoAccessorMethod]
public bool on_all_workspaces { get; }
[NoAccessorMethod]
public bool resizeable { get; }
[NoAccessorMethod]
public bool skip_taskbar { get; }
public string title { get; }
[NoAccessorMethod]
public bool urgent { get; }
public uint user_time { get; }
public Meta.WindowType window_type { get; }
public string wm_class { get; }
public signal void monitor_changed (int old_monitor);
public signal void position_changed ();
public signal void raised ();
public signal void shown ();
public signal void size_changed ();
public signal void unmanaged ();
public signal void unmanaging ();
public signal void workspace_changed ();
}
[CCode (cheader_filename = "meta/meta-window-actor.h", type_id = "meta_window_actor_get_type ()")]
public abstract class WindowActor : Clutter.Actor, Atk.Implementor, Clutter.Animatable, Clutter.Container, Clutter.Scriptable {
[CCode (has_construct_function = false)]
protected WindowActor ();
public void freeze ();
public Cairo.Surface? get_image (Cairo.RectangleInt? clip);
public unowned Meta.Window get_meta_window ();
public unowned Meta.ShapedTexture get_texture ();
public bool is_destroyed ();
public Clutter.Content? paint_to_content (Meta.Rectangle? clip) throws GLib.Error;
public void sync_visibility ();
public void thaw ();
public Meta.Window meta_window { get; construct; }
public signal void damaged ();
public signal void effects_completed ();
public signal void first_frame ();
public signal void thawed ();
}
[CCode (cheader_filename = "meta/meta-window-group.h", type_id = "meta_window_group_get_type ()")]
public class WindowGroup : Clutter.Actor, Atk.Implementor, Clutter.Animatable, Clutter.Container, Clutter.Scriptable {
[CCode (has_construct_function = false)]
protected WindowGroup ();
}
[CCode (cheader_filename = "meta/meta-window-shape.h", ref_function = "meta_window_shape_ref", type_id = "meta_window_shape_get_type ()", unref_function = "meta_window_shape_unref")]
[Compact]
public class WindowShape {
[CCode (has_construct_function = false)]
public WindowShape (Cairo.Region region);
public bool equal (Meta.WindowShape shape_b);
public void get_borders (int border_top, int border_right, int border_bottom, int border_left);
public uint hash ();
public Meta.WindowShape @ref ();
public Cairo.Region to_region (int center_width, int center_height);
public void unref ();
}
[CCode (cheader_filename = "meta/workspace.h", type_id = "meta_workspace_get_type ()")]
public class Workspace : GLib.Object {
[CCode (has_construct_function = false)]
protected Workspace ();
public void activate (uint32 timestamp);
public void activate_with_focus (Meta.Window focus_this, uint32 timestamp);
public unowned Meta.Display get_display ();
public unowned Meta.Workspace get_neighbor (Meta.MotionDirection direction);
public Meta.Rectangle get_work_area_all_monitors ();
public Meta.Rectangle get_work_area_for_monitor (int which_monitor);
public int index ();
public GLib.List<weak Meta.Window> list_windows ();
public void set_builtin_struts (GLib.SList<Meta.Strut?> struts);
[NoAccessorMethod]
public bool active { get; }
[NoAccessorMethod]
public uint n_windows { get; }
[NoAccessorMethod]
public uint workspace_index { get; }
public signal void window_added (Meta.Window object);
public signal void window_removed (Meta.Window object);
}
[CCode (cheader_filename = "meta/meta-workspace-manager.h", type_id = "meta_workspace_manager_get_type ()")]
public class WorkspaceManager : GLib.Object {
[CCode (has_construct_function = false)]
protected WorkspaceManager ();
public unowned Meta.Workspace append_new_workspace (bool activate, uint32 timestamp);
public unowned Meta.Workspace get_active_workspace ();
public int get_active_workspace_index ();
public int get_n_workspaces ();
public unowned Meta.Workspace? get_workspace_by_index (int index);
public void override_workspace_layout (Meta.DisplayCorner starting_corner, bool vertical_layout, int n_rows, int n_columns);
public void remove_workspace (Meta.Workspace workspace, uint32 timestamp);
public void reorder_workspace (Meta.Workspace workspace, int new_index);
[NoAccessorMethod]
public int layout_columns { get; }
[NoAccessorMethod]
public int layout_rows { get; }
public int n_workspaces { get; }
public signal void active_workspace_changed ();
public signal void showing_desktop_changed ();
public signal void workspace_added (int object);
public signal void workspace_removed (int object);
public signal void workspace_switched (int object, int p0, Meta.MotionDirection p1);
public signal void workspaces_reordered ();
}
[CCode (cheader_filename = "meta/meta-x11-display.h", type_id = "meta_x11_display_get_type ()")]
public class X11Display : GLib.Object {
[CCode (has_construct_function = false)]
protected X11Display ();
public void clear_stage_input_region ();
public int get_damage_event_base ();
public int get_screen_number ();
public int get_shape_event_base ();
public bool has_shape ();
public void set_cm_selection ();
public void set_stage_input_region (X.XserverRegion region);
public bool xwindow_is_a_no_focus_window (X.Window xwindow);
}
[CCode (cheader_filename = "meta/meta-close-dialog.h", type_cname = "MetaCloseDialogInterface", type_id = "meta_close_dialog_get_type ()")]
public interface CloseDialog : GLib.Object {
public abstract void focus ();
public abstract void hide ();
public bool is_visible ();
public abstract void show ();
[NoAccessorMethod]
public abstract Meta.Window window { owned get; construct; }
[HasEmitter]
public signal void response (Meta.CloseDialogResponse response);
}
[CCode (cheader_filename = "meta/meta-inhibit-shortcuts-dialog.h", type_cname = "MetaInhibitShortcutsDialogInterface", type_id = "meta_inhibit_shortcuts_dialog_get_type ()")]
public interface InhibitShortcutsDialog : GLib.Object {
public abstract void hide ();
public abstract void show ();
[NoAccessorMethod]
public abstract Meta.Window window { owned get; construct; }
[HasEmitter]
public signal void response (Meta.InhibitShortcutsDialogResponse response);
}
[CCode (cheader_filename = "meta/main.h", has_type_id = false)]
public struct ButtonLayout {
[CCode (array_length = false)]
public weak Meta.ButtonFunction left_buttons[4];
[CCode (array_length = false)]
public weak bool left_buttons_has_spacer[4];
[CCode (array_length = false)]
public weak Meta.ButtonFunction right_buttons[4];
[CCode (array_length = false)]
public weak bool right_buttons_has_spacer[4];
}
[CCode (cheader_filename = "meta/main.h", has_type_id = false)]
public struct Edge {
public Meta.Rectangle rect;
public Meta.Side side_type;
public Meta.EdgeType edge_type;
}
[CCode (cheader_filename = "meta/main.h", has_type_id = false)]
public struct FrameBorders {
public Gtk.Border visible;
public Gtk.Border invisible;
public Gtk.Border total;
public void clear ();
}
[CCode (cheader_filename = "meta/meta-plugin.h", has_type_id = false)]
public struct PluginInfo {
public weak string name;
public weak string version;
public weak string author;
public weak string license;
public weak string description;
}
[CCode (cheader_filename = "meta/main.h", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "meta_rectangle_get_type ()")]
public struct Rectangle {
public int x;
public int y;
public int width;
public int height;
public int area ();
public bool contains_rect (Meta.Rectangle inner_rect);
public Meta.Rectangle? copy ();
public bool could_fit_rect (Meta.Rectangle inner_rect);
public bool equal (Meta.Rectangle src2);
public void free ();
public bool horiz_overlap (Meta.Rectangle rect2);
public bool intersect (Meta.Rectangle src2, out Meta.Rectangle dest);
public bool overlap (Meta.Rectangle rect2);
public Meta.Rectangle union (Meta.Rectangle rect2);
public bool vert_overlap (Meta.Rectangle rect2);
}
[CCode (cheader_filename = "meta/main.h", has_type_id = false)]
public struct ShadowParams {
public int radius;
public int top_fade;
public int x_offset;
public int y_offset;
public uint8 opacity;
}
[CCode (cheader_filename = "meta/main.h", has_type_id = false)]
public struct Strut {
public Meta.Rectangle rect;
public Meta.Side side;
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_BACKEND_CAPABILITY_", type_id = "meta_backend_capabilities_get_type ()")]
[Flags]
public enum BackendCapabilities {
NONE,
BARRIERS
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_BARRIER_DIRECTION_", type_id = "meta_barrier_direction_get_type ()")]
[Flags]
public enum BarrierDirection {
POSITIVE_X,
POSITIVE_Y,
NEGATIVE_X,
NEGATIVE_Y
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_BUTTON_FUNCTION_", type_id = "meta_button_function_get_type ()")]
public enum ButtonFunction {
MENU,
MINIMIZE,
MAXIMIZE,
CLOSE,
LAST
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_CLOSE_DIALOG_RESPONSE_", type_id = "meta_close_dialog_response_get_type ()")]
public enum CloseDialogResponse {
WAIT,
FORCE_CLOSE
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_COMP_EFFECT_", type_id = "meta_comp_effect_get_type ()")]
public enum CompEffect {
CREATE,
UNMINIMIZE,
DESTROY,
MINIMIZE,
NONE
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_COMPOSITOR_TYPE_", type_id = "meta_compositor_type_get_type ()")]
public enum CompositorType {
WAYLAND,
X11
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_CURSOR_", type_id = "meta_cursor_get_type ()")]
public enum Cursor {
NONE,
DEFAULT,
NORTH_RESIZE,
SOUTH_RESIZE,
WEST_RESIZE,
EAST_RESIZE,
SE_RESIZE,
SW_RESIZE,
NE_RESIZE,
NW_RESIZE,
MOVE_OR_RESIZE_WINDOW,
BUSY,
DND_IN_DRAG,
DND_MOVE,
DND_COPY,
DND_UNSUPPORTED_TARGET,
POINTING_HAND,
CROSSHAIR,
IBEAM,
BLANK,
LAST
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_DEBUG_PAINT_", type_id = "meta_debug_paint_flag_get_type ()")]
[Flags]
public enum DebugPaintFlag {
NONE,
OPAQUE_REGION
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_DEBUG_", type_id = "meta_debug_topic_get_type ()")]
[Flags]
public enum DebugTopic {
VERBOSE,
FOCUS,
WORKAREA,
STACK,
SM,
EVENTS,
WINDOW_STATE,
WINDOW_OPS,
GEOMETRY,
PLACEMENT,
PING,
KEYBINDINGS,
SYNC,
STARTUP,
PREFS,
GROUPS,
RESIZING,
SHAPES,
EDGE_RESISTANCE,
DBUS,
INPUT,
WAYLAND,
KMS,
SCREEN_CAST,
REMOTE_DESKTOP,
BACKEND,
RENDER,
COLOR
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_DIRECTION_", type_id = "meta_direction_get_type ()")]
[Flags]
public enum Direction {
LEFT,
RIGHT,
TOP,
BOTTOM,
UP,
DOWN,
HORIZONTAL,
VERTICAL
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_DISPLAY_", type_id = "meta_display_corner_get_type ()")]
public enum DisplayCorner {
TOPLEFT,
TOPRIGHT,
BOTTOMLEFT,
BOTTOMRIGHT
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_DISPLAY_", type_id = "meta_display_direction_get_type ()")]
public enum DisplayDirection {
UP,
DOWN,
LEFT,
RIGHT
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_EDGE_", type_id = "meta_edge_type_get_type ()")]
public enum EdgeType {
WINDOW,
MONITOR,
SCREEN
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_EXIT_", type_id = "meta_exit_code_get_type ()")]
public enum ExitCode {
SUCCESS,
ERROR
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_FRAME_", type_id = "meta_frame_flags_get_type ()")]
[Flags]
public enum FrameFlags {
ALLOWS_DELETE,
ALLOWS_MENU,
ALLOWS_MINIMIZE,
ALLOWS_MAXIMIZE,
ALLOWS_VERTICAL_RESIZE,
ALLOWS_HORIZONTAL_RESIZE,
HAS_FOCUS,
SHADED,
STUCK,
MAXIMIZED,
ALLOWS_SHADE,
ALLOWS_MOVE,
FULLSCREEN,
ABOVE,
TILED_LEFT,
TILED_RIGHT
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_FRAME_TYPE_", type_id = "meta_frame_type_get_type ()")]
public enum FrameType {
NORMAL,
DIALOG,
MODAL_DIALOG,
UTILITY,
MENU,
BORDER,
ATTACHED,
LAST;
public unowned string to_string ();
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_GRAB_OP_", type_id = "meta_grab_op_get_type ()")]
public enum GrabOp {
NONE,
WINDOW_BASE,
WAYLAND_POPUP,
FRAME_BUTTON,
MOVING,
RESIZING_NW,
RESIZING_N,
RESIZING_NE,
RESIZING_E,
RESIZING_SW,
RESIZING_S,
RESIZING_SE,
RESIZING_W,
KEYBOARD_MOVING,
KEYBOARD_RESIZING_UNKNOWN,
KEYBOARD_RESIZING_NW,
KEYBOARD_RESIZING_N,
KEYBOARD_RESIZING_NE,
KEYBOARD_RESIZING_E,
KEYBOARD_RESIZING_SW,
KEYBOARD_RESIZING_S,
KEYBOARD_RESIZING_SE,
KEYBOARD_RESIZING_W
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_GRAVITY_", type_id = "meta_gravity_get_type ()")]
public enum Gravity {
NONE,
NORTH_WEST,
NORTH,
NORTH_EAST,
WEST,
CENTER,
EAST,
SOUTH_WEST,
SOUTH,
SOUTH_EAST,
STATIC;
public unowned string to_string ();
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_INHIBIT_SHORTCUTS_DIALOG_RESPONSE_", type_id = "meta_inhibit_shortcuts_dialog_response_get_type ()")]
public enum InhibitShortcutsDialogResponse {
ALLOW,
DENY
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_KEYBINDING_ACTION_", type_id = "meta_key_binding_action_get_type ()")]
public enum KeyBindingAction {
NONE,
WORKSPACE_1,
WORKSPACE_2,
WORKSPACE_3,
WORKSPACE_4,
WORKSPACE_5,
WORKSPACE_6,
WORKSPACE_7,
WORKSPACE_8,
WORKSPACE_9,
WORKSPACE_10,
WORKSPACE_11,
WORKSPACE_12,
WORKSPACE_LEFT,
WORKSPACE_RIGHT,
WORKSPACE_UP,
WORKSPACE_DOWN,
WORKSPACE_LAST,
SWITCH_APPLICATIONS,
SWITCH_APPLICATIONS_BACKWARD,
SWITCH_GROUP,
SWITCH_GROUP_BACKWARD,
SWITCH_WINDOWS,
SWITCH_WINDOWS_BACKWARD,
SWITCH_PANELS,
SWITCH_PANELS_BACKWARD,
CYCLE_GROUP,
CYCLE_GROUP_BACKWARD,
CYCLE_WINDOWS,
CYCLE_WINDOWS_BACKWARD,
CYCLE_PANELS,
CYCLE_PANELS_BACKWARD,
SHOW_DESKTOP,
PANEL_RUN_DIALOG,
TOGGLE_RECORDING,
SET_SPEW_MARK,
ACTIVATE_WINDOW_MENU,
TOGGLE_FULLSCREEN,
TOGGLE_MAXIMIZED,
TOGGLE_TILED_LEFT,
TOGGLE_TILED_RIGHT,
TOGGLE_ABOVE,
MAXIMIZE,
UNMAXIMIZE,
TOGGLE_SHADED,
MINIMIZE,
CLOSE,
BEGIN_MOVE,
BEGIN_RESIZE,
TOGGLE_ON_ALL_WORKSPACES,
MOVE_TO_WORKSPACE_1,
MOVE_TO_WORKSPACE_2,
MOVE_TO_WORKSPACE_3,
MOVE_TO_WORKSPACE_4,
MOVE_TO_WORKSPACE_5,
MOVE_TO_WORKSPACE_6,
MOVE_TO_WORKSPACE_7,
MOVE_TO_WORKSPACE_8,
MOVE_TO_WORKSPACE_9,
MOVE_TO_WORKSPACE_10,
MOVE_TO_WORKSPACE_11,
MOVE_TO_WORKSPACE_12,
MOVE_TO_WORKSPACE_LEFT,
MOVE_TO_WORKSPACE_RIGHT,
MOVE_TO_WORKSPACE_UP,
MOVE_TO_WORKSPACE_DOWN,
MOVE_TO_WORKSPACE_LAST,
MOVE_TO_MONITOR_LEFT,
MOVE_TO_MONITOR_RIGHT,
MOVE_TO_MONITOR_UP,
MOVE_TO_MONITOR_DOWN,
RAISE_OR_LOWER,
RAISE,
LOWER,
MAXIMIZE_VERTICALLY,
MAXIMIZE_HORIZONTALLY,
MOVE_TO_CORNER_NW,
MOVE_TO_CORNER_NE,
MOVE_TO_CORNER_SW,
MOVE_TO_CORNER_SE,
MOVE_TO_SIDE_N,
MOVE_TO_SIDE_S,
MOVE_TO_SIDE_E,
MOVE_TO_SIDE_W,
MOVE_TO_CENTER,
OVERLAY_KEY,
LOCATE_POINTER_KEY,
ISO_NEXT_GROUP,
ALWAYS_ON_TOP,
SWITCH_MONITOR,
ROTATE_MONITOR,
LAST
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_KEY_BINDING_", type_id = "meta_key_binding_flags_get_type ()")]
[Flags]
public enum KeyBindingFlags {
NONE,
PER_WINDOW,
BUILTIN,
IS_REVERSED,
NON_MASKABLE,
IGNORE_AUTOREPEAT,
NO_AUTO_GRAB
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_A11Y_", type_id = "meta_keyboard_a11y_flags_get_type ()")]
[Flags]
public enum KeyboardA11yFlags {
KEYBOARD_ENABLED,
TIMEOUT_ENABLED,
MOUSE_KEYS_ENABLED,
SLOW_KEYS_ENABLED,
SLOW_KEYS_BEEP_PRESS,
SLOW_KEYS_BEEP_ACCEPT,
SLOW_KEYS_BEEP_REJECT,
BOUNCE_KEYS_ENABLED,
BOUNCE_KEYS_BEEP_REJECT,
TOGGLE_KEYS_ENABLED,
STICKY_KEYS_ENABLED,
STICKY_KEYS_TWO_KEY_OFF,
STICKY_KEYS_BEEP,
FEATURE_STATE_CHANGE_BEEP
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_LATER_", type_id = "meta_later_type_get_type ()")]
public enum LaterType {
RESIZE,
CALC_SHOWING,
CHECK_FULLSCREEN,
SYNC_STACK,
BEFORE_REDRAW,
IDLE
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_LOCALE_DIRECTION_", type_id = "meta_locale_direction_get_type ()")]
public enum LocaleDirection {
LTR,
RTL
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_MAXIMIZE_", type_id = "meta_maximize_flags_get_type ()")]
[Flags]
public enum MaximizeFlags {
HORIZONTAL,
VERTICAL,
BOTH
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_MONITOR_SWITCH_CONFIG_", type_id = "meta_monitor_switch_config_type_get_type ()")]
public enum MonitorSwitchConfigType {
ALL_MIRROR,
ALL_LINEAR,
EXTERNAL,
BUILTIN,
UNKNOWN
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_MOTION_", type_id = "meta_motion_direction_get_type ()")]
public enum MotionDirection {
UP,
DOWN,
LEFT,
RIGHT,
UP_LEFT,
UP_RIGHT,
DOWN_LEFT,
DOWN_RIGHT
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_PAD_ACTION_", type_id = "meta_pad_action_type_get_type ()")]
public enum PadActionType {
BUTTON,
RING,
STRIP
}
[CCode (cheader_filename = "meta/prefs.h", cprefix = "META_PREF_", type_id = "meta_preference_get_type ()")]
public enum Preference {
MOUSE_BUTTON_MODS,
FOCUS_MODE,
FOCUS_NEW_WINDOWS,
ATTACH_MODAL_DIALOGS,
RAISE_ON_CLICK,
ACTION_DOUBLE_CLICK_TITLEBAR,
ACTION_MIDDLE_CLICK_TITLEBAR,
ACTION_RIGHT_CLICK_TITLEBAR,
AUTO_RAISE,
AUTO_RAISE_DELAY,
FOCUS_CHANGE_ON_POINTER_REST,
TITLEBAR_FONT,
NUM_WORKSPACES,
DYNAMIC_WORKSPACES,
KEYBINDINGS,
DISABLE_WORKAROUNDS,
BUTTON_LAYOUT,
WORKSPACE_NAMES,
VISUAL_BELL,
AUDIBLE_BELL,
VISUAL_BELL_TYPE,
GNOME_ACCESSIBILITY,
GNOME_ANIMATIONS,
CURSOR_THEME,
CURSOR_SIZE,
RESIZE_WITH_RIGHT_BUTTON,
EDGE_TILING,
FORCE_FULLSCREEN,
WORKSPACES_ONLY_ON_PRIMARY,
DRAGGABLE_BORDER_WIDTH,
AUTO_MAXIMIZE,
CENTER_NEW_WINDOWS,
DRAG_THRESHOLD,
LOCATE_POINTER,
CHECK_ALIVE_TIMEOUT;
public unowned string to_string ();
}
[CCode (cheader_filename = "meta/meta-selection-source.h", cprefix = "META_", type_id = "meta_selection_type_get_type ()")]
public enum SelectionType {
SELECTION_PRIMARY,
SELECTION_CLIPBOARD,
SELECTION_DND,
N_SELECTION_TYPES
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_SHADOW_MODE_", type_id = "meta_shadow_mode_get_type ()")]
public enum ShadowMode {
AUTO,
FORCED_OFF,
FORCED_ON
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_SIDE_", type_id = "meta_side_get_type ()")]
public enum Side {
LEFT,
RIGHT,
TOP,
BOTTOM
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_SIZE_CHANGE_", type_id = "meta_size_change_get_type ()")]
public enum SizeChange {
MAXIMIZE,
UNMAXIMIZE,
FULLSCREEN,
UNFULLSCREEN,
MONITOR_MOVE
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_LAYER_", type_id = "meta_stack_layer_get_type ()")]
public enum StackLayer {
DESKTOP,
BOTTOM,
NORMAL,
TOP,
DOCK,
OVERRIDE_REDIRECT,
LAST
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_TAB_LIST_", type_id = "meta_tab_list_get_type ()")]
public enum TabList {
NORMAL,
DOCKS,
GROUP,
NORMAL_ALL
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_TAB_SHOW_", type_id = "meta_tab_show_type_get_type ()")]
public enum TabShowType {
ICON,
INSTANTLY
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_VIRTUAL_", type_id = "meta_virtual_modifier_get_type ()")]
[Flags]
public enum VirtualModifier {
SHIFT_MASK,
CONTROL_MASK,
ALT_MASK,
META_MASK,
SUPER_MASK,
HYPER_MASK,
MOD2_MASK,
MOD3_MASK,
MOD4_MASK,
MOD5_MASK
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_WINDOW_CLIENT_TYPE_", type_id = "meta_window_client_type_get_type ()")]
public enum WindowClientType {
WAYLAND,
X11
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_WINDOW_MENU_", type_id = "meta_window_menu_type_get_type ()")]
public enum WindowMenuType {
WM,
APP
}
[CCode (cheader_filename = "meta/main.h", cprefix = "META_WINDOW_", type_id = "meta_window_type_get_type ()")]
public enum WindowType {
NORMAL,
DESKTOP,
DOCK,
DIALOG,
MODAL_DIALOG,
TOOLBAR,
MENU,
UTILITY,
SPLASHSCREEN,
DROPDOWN_MENU,
POPUP_MENU,
TOOLTIP,
NOTIFICATION,
COMBO,
DND,
OVERRIDE_OTHER
}
[CCode (cheader_filename = "meta/main.h", instance_pos = 2.9)]
public delegate void IdleMonitorWatchFunc (Meta.IdleMonitor monitor, uint watch_id);
[CCode (cheader_filename = "meta/main.h", instance_pos = 4.9)]
public delegate void KeyHandlerFunc (Meta.Display display, Meta.Window window, [CCode (type = "ClutterKeyEvent*")] Clutter.KeyEvent? event, Meta.KeyBinding binding);
[CCode (cheader_filename = "meta/main.h", instance_pos = 1.9)]
public delegate void PrefsChangedFunc (Meta.Preference pref);
[CCode (cheader_filename = "meta/main.h", instance_pos = 1.9)]
public delegate bool WindowForeachFunc (Meta.Window window);
[CCode (cheader_filename = "meta/main.h", cname = "META_CURRENT_TIME")]
public const int CURRENT_TIME;
[CCode (cheader_filename = "meta/main.h", cname = "META_DEFAULT_ICON_NAME")]
public const string DEFAULT_ICON_NAME;
[CCode (cheader_filename = "meta/main.h", cname = "META_ICON_HEIGHT")]
public const int ICON_HEIGHT;
[CCode (cheader_filename = "meta/main.h", cname = "META_ICON_WIDTH")]
public const int ICON_WIDTH;
[CCode (cheader_filename = "meta/main.h", cname = "META_MINI_ICON_HEIGHT")]
public const int MINI_ICON_HEIGHT;
[CCode (cheader_filename = "meta/main.h", cname = "META_MINI_ICON_WIDTH")]
public const int MINI_ICON_WIDTH;
[CCode (cheader_filename = "meta/main.h", cname = "META_PRIORITY_BEFORE_REDRAW")]
public const int PRIORITY_BEFORE_REDRAW;
[CCode (cheader_filename = "meta/main.h", cname = "META_PRIORITY_PREFS_NOTIFY")]
public const int PRIORITY_PREFS_NOTIFY;
[CCode (cheader_filename = "meta/main.h", cname = "META_PRIORITY_REDRAW")]
public const int PRIORITY_REDRAW;
[CCode (cheader_filename = "meta/main.h", cname = "META_PRIORITY_RESIZE")]
public const int PRIORITY_RESIZE;
[CCode (cheader_filename = "meta/main.h", cname = "META_VIRTUAL_CORE_KEYBOARD_ID")]
public const int VIRTUAL_CORE_KEYBOARD_ID;
[CCode (cheader_filename = "meta/main.h", cname = "META_VIRTUAL_CORE_POINTER_ID")]
public const int VIRTUAL_CORE_POINTER_ID;
[CCode (cheader_filename = "meta/main.h")]
public static void add_clutter_debug_flags (Clutter.DebugFlag debug_flags, Clutter.DrawDebugFlag draw_flags, Clutter.PickDebugFlag pick_flags);
[CCode (cheader_filename = "meta/main.h")]
public static void add_debug_paint_flag (Meta.DebugPaintFlag flag);
[CCode (cheader_filename = "meta/main.h")]
public static void clutter_init ();
[CCode (cheader_filename = "meta/main.h")]
public static Meta.Context create_context (string name);
[CCode (cheader_filename = "meta/main.h")]
public static void exit (Meta.ExitCode code);
[CCode (cheader_filename = "meta/main.h")]
[Version (replacement = "FrameType.to_string")]
public static unowned string frame_type_to_string (Meta.FrameType type);
[CCode (cheader_filename = "meta/main.h")]
public static string g_utf8_strndup (string src, size_t n);
[CCode (cheader_filename = "meta/main.h")]
public static void get_clutter_debug_flags (out Clutter.DebugFlag debug_flags, out Clutter.DrawDebugFlag draw_flags, out Clutter.PickDebugFlag pick_flags);
[CCode (cheader_filename = "meta/main.h")]
public static Meta.DebugPaintFlag get_debug_paint_flags ();
[CCode (cheader_filename = "meta/main.h")]
public static bool is_restart ();
[CCode (cheader_filename = "meta/main.h")]
public static bool is_topic_enabled (Meta.DebugTopic topic);
[CCode (cheader_filename = "meta/main.h")]
[Version (replacement = "Preference.to_string")]
public static unowned string preference_to_string (Meta.Preference pref);
[CCode (cheader_filename = "meta/main.h")]
public static void remove_clutter_debug_flags (Clutter.DebugFlag debug_flags, Clutter.DrawDebugFlag draw_flags, Clutter.PickDebugFlag pick_flags);
[CCode (cheader_filename = "meta/main.h")]
public static void remove_debug_paint_flag (Meta.DebugPaintFlag flag);
[CCode (cheader_filename = "meta/main.h")]
public static void restart (string? message, Meta.Context context);
[CCode (cheader_filename = "meta/main.h")]
public static unowned string topic_to_string (Meta.DebugTopic topic);
[CCode (cheader_filename = "meta/main.h")]
public static bool x11_init_gdk_display () throws GLib.Error;
}
[CCode (cheader_filename = "libmutter-11-custom.h", has_type_id = false)]
public struct before_frame {
}
[CCode (cheader_filename = "libmutter-11-custom.h", has_type_id = false)]
public struct frame {
}
|