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
|
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gdk {
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
#region Autogenerated code
public partial class Device : GLib.Object {
public Device (IntPtr raw) : base(raw) {}
protected Device() : base(IntPtr.Zero)
{
CreateNativeObject (new string [0], new GLib.Value [0]);
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_device_get_display(IntPtr raw);
[GLib.Property ("display")]
public Gdk.Display Display {
get {
IntPtr raw_ret = gdk_device_get_display(Handle);
Gdk.Display ret = GLib.Object.GetObject(raw_ret) as Gdk.Display;
return ret;
}
}
[GLib.Property ("device-manager")]
public Gdk.DeviceManager DeviceManager {
get {
GLib.Value val = GetProperty ("device-manager");
Gdk.DeviceManager ret = (Gdk.DeviceManager) val;
val.Dispose ();
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_device_get_name(IntPtr raw);
[GLib.Property ("name")]
public string Name {
get {
IntPtr raw_ret = gdk_device_get_name(Handle);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
}
[GLib.Property ("type")]
public Gdk.DeviceType Type {
get {
GLib.Value val = GetProperty ("type");
Gdk.DeviceType ret = (Gdk.DeviceType) (Enum) val;
val.Dispose ();
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_device_get_associated_device(IntPtr raw);
[GLib.Property ("associated-device")]
public Gdk.Device AssociatedDevice {
get {
IntPtr raw_ret = gdk_device_get_associated_device(Handle);
Gdk.Device ret = GLib.Object.GetObject(raw_ret) as Gdk.Device;
return ret;
}
}
[GLib.Property ("input-source")]
public Gdk.InputSource InputSource {
get {
GLib.Value val = GetProperty ("input-source");
Gdk.InputSource ret = (Gdk.InputSource) (Enum) val;
val.Dispose ();
return ret;
}
}
[GLib.Property ("input-mode")]
public Gdk.InputMode InputMode {
get {
GLib.Value val = GetProperty ("input-mode");
Gdk.InputMode ret = (Gdk.InputMode) (Enum) val;
val.Dispose ();
return ret;
}
set {
GLib.Value val = new GLib.Value((Enum) value);
SetProperty("input-mode", val);
val.Dispose ();
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gdk_device_get_has_cursor(IntPtr raw);
[GLib.Property ("has-cursor")]
public bool HasCursor {
get {
bool raw_ret = gdk_device_get_has_cursor(Handle);
bool ret = raw_ret;
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gdk_device_get_n_axes(IntPtr raw);
[GLib.Property ("n-axes")]
public int NumAxes {
get {
int raw_ret = gdk_device_get_n_axes(Handle);
int ret = raw_ret;
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_device_get_vendor_id(IntPtr raw);
[GLib.Property ("vendor-id")]
public string VendorId {
get {
IntPtr raw_ret = gdk_device_get_vendor_id(Handle);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_device_get_product_id(IntPtr raw);
[GLib.Property ("product-id")]
public string ProductId {
get {
IntPtr raw_ret = gdk_device_get_product_id(Handle);
string ret = GLib.Marshaller.Utf8PtrToString (raw_ret);
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_device_get_seat(IntPtr raw);
[GLib.Property ("seat")]
public Gdk.Seat Seat {
get {
IntPtr raw_ret = gdk_device_get_seat(Handle);
Gdk.Seat ret = GLib.Object.GetObject(raw_ret) as Gdk.Seat;
return ret;
}
set {
GLib.Value val = new GLib.Value(value);
SetProperty("seat", val);
val.Dispose ();
}
}
[GLib.Property ("num-touches")]
public uint NumTouches {
get {
GLib.Value val = GetProperty ("num-touches");
uint ret = (uint) val;
val.Dispose ();
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gdk_device_get_axes(IntPtr raw);
[GLib.Property ("axes")]
public Gdk.AxisFlags Axes {
get {
int raw_ret = gdk_device_get_axes(Handle);
Gdk.AxisFlags ret = (Gdk.AxisFlags) raw_ret;
return ret;
}
}
[GLib.Property ("tool")]
public Gdk.DeviceTool Tool {
get {
GLib.Value val = GetProperty ("tool");
Gdk.DeviceTool ret = (Gdk.DeviceTool) val;
val.Dispose ();
return ret;
}
}
[GLib.Signal("tool-changed")]
public event Gdk.ToolChangedHandler ToolChanged {
add {
this.AddSignalHandler ("tool-changed", value, typeof (Gdk.ToolChangedArgs));
}
remove {
this.RemoveSignalHandler ("tool-changed", value);
}
}
[GLib.Signal("changed")]
public event System.EventHandler Changed {
add {
this.AddSignalHandler ("changed", value);
}
remove {
this.RemoveSignalHandler ("changed", value);
}
}
static ChangedNativeDelegate Changed_cb_delegate;
static ChangedNativeDelegate ChangedVMCallback {
get {
if (Changed_cb_delegate == null)
Changed_cb_delegate = new ChangedNativeDelegate (Changed_cb);
return Changed_cb_delegate;
}
}
static void OverrideChanged (GLib.GType gtype)
{
OverrideChanged (gtype, ChangedVMCallback);
}
static void OverrideChanged (GLib.GType gtype, ChangedNativeDelegate callback)
{
OverrideVirtualMethod (gtype, "changed", callback);
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void ChangedNativeDelegate (IntPtr inst);
static void Changed_cb (IntPtr inst)
{
try {
Device __obj = GLib.Object.GetObject (inst, false) as Device;
__obj.OnChanged ();
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gdk.Device), ConnectionMethod="OverrideChanged")]
protected virtual void OnChanged ()
{
InternalChanged ();
}
private void InternalChanged ()
{
GLib.Value ret = GLib.Value.Empty;
GLib.ValueArray inst_and_params = new GLib.ValueArray (1);
GLib.Value[] vals = new GLib.Value [1];
vals [0] = new GLib.Value (this);
inst_and_params.Append (vals [0]);
g_signal_chain_from_overridden (inst_and_params.ArrayPtr, ref ret);
foreach (GLib.Value v in vals)
v.Dispose ();
}
static ToolChangedNativeDelegate ToolChanged_cb_delegate;
static ToolChangedNativeDelegate ToolChangedVMCallback {
get {
if (ToolChanged_cb_delegate == null)
ToolChanged_cb_delegate = new ToolChangedNativeDelegate (ToolChanged_cb);
return ToolChanged_cb_delegate;
}
}
static void OverrideToolChanged (GLib.GType gtype)
{
OverrideToolChanged (gtype, ToolChangedVMCallback);
}
static void OverrideToolChanged (GLib.GType gtype, ToolChangedNativeDelegate callback)
{
OverrideVirtualMethod (gtype, "tool-changed", callback);
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void ToolChangedNativeDelegate (IntPtr inst, IntPtr p0);
static void ToolChanged_cb (IntPtr inst, IntPtr p0)
{
try {
Device __obj = GLib.Object.GetObject (inst, false) as Device;
__obj.OnToolChanged (GLib.Object.GetObject(p0) as Gdk.DeviceTool);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gdk.Device), ConnectionMethod="OverrideToolChanged")]
protected virtual void OnToolChanged (Gdk.DeviceTool p0)
{
InternalToolChanged (p0);
}
private void InternalToolChanged (Gdk.DeviceTool p0)
{
GLib.Value ret = GLib.Value.Empty;
GLib.ValueArray inst_and_params = new GLib.ValueArray (2);
GLib.Value[] vals = new GLib.Value [2];
vals [0] = new GLib.Value (this);
inst_and_params.Append (vals [0]);
vals [1] = new GLib.Value (p0);
inst_and_params.Append (vals [1]);
g_signal_chain_from_overridden (inst_and_params.ArrayPtr, ref ret);
foreach (GLib.Value v in vals)
v.Dispose ();
}
static GetHistoryNativeDelegate GetHistory_cb_delegate;
static GetHistoryNativeDelegate GetHistoryVMCallback {
get {
if (GetHistory_cb_delegate == null)
GetHistory_cb_delegate = new GetHistoryNativeDelegate (GetHistory_cb);
return GetHistory_cb_delegate;
}
}
static void OverrideGetHistory (GLib.GType gtype)
{
OverrideGetHistory (gtype, GetHistoryVMCallback);
}
static void OverrideGetHistory (GLib.GType gtype, GetHistoryNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("get_history"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate bool GetHistoryNativeDelegate (IntPtr inst, IntPtr window, uint start, uint stop, IntPtr events, out int n_events);
static bool GetHistory_cb (IntPtr inst, IntPtr window, uint start, uint stop, IntPtr events, out int n_events)
{
try {
Device __obj = GLib.Object.GetObject (inst, false) as Device;
bool __result;
__result = __obj.OnGetHistory (GLib.Object.GetObject(window) as Gdk.Window, start, stop, Gdk.TimeCoord.New (events), out n_events);
return __result;
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, true);
// NOTREACHED: above call does not return.
throw e;
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gdk.Device), ConnectionMethod="OverrideGetHistory")]
protected virtual bool OnGetHistory (Gdk.Window window, uint start, uint stop, Gdk.TimeCoord events, out int n_events)
{
return InternalGetHistory (window, start, stop, events, out n_events);
}
private bool InternalGetHistory (Gdk.Window window, uint start, uint stop, Gdk.TimeCoord events, out int n_events)
{
GetHistoryNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("get_history"));
unmanaged = (GetHistoryNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(GetHistoryNativeDelegate));
}
if (unmanaged == null) throw new InvalidOperationException ("No base method to invoke");
IntPtr native_events = GLib.Marshaller.StructureToPtrAlloc (events);
bool __result = unmanaged (this.Handle, window == null ? IntPtr.Zero : window.Handle, start, stop, native_events, out n_events);
Marshal.FreeHGlobal (native_events);
return __result;
}
static GetStateNativeDelegate GetState_cb_delegate;
static GetStateNativeDelegate GetStateVMCallback {
get {
if (GetState_cb_delegate == null)
GetState_cb_delegate = new GetStateNativeDelegate (GetState_cb);
return GetState_cb_delegate;
}
}
static void OverrideGetState (GLib.GType gtype)
{
OverrideGetState (gtype, GetStateVMCallback);
}
static void OverrideGetState (GLib.GType gtype, GetStateNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("get_state"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void GetStateNativeDelegate (IntPtr inst, IntPtr window, out double axes, out int mask);
static void GetState_cb (IntPtr inst, IntPtr window, out double axes, out int mask)
{
try {
Device __obj = GLib.Object.GetObject (inst, false) as Device;
Gdk.ModifierType mymask;
__obj.OnGetState (GLib.Object.GetObject(window) as Gdk.Window, out axes, out mymask);
mask = (int) mymask;
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, true);
// NOTREACHED: above call does not return.
throw e;
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gdk.Device), ConnectionMethod="OverrideGetState")]
protected virtual void OnGetState (Gdk.Window window, out double axes, out Gdk.ModifierType mask)
{
InternalGetState (window, out axes, out mask);
}
private void InternalGetState (Gdk.Window window, out double axes, out Gdk.ModifierType mask)
{
GetStateNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("get_state"));
unmanaged = (GetStateNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(GetStateNativeDelegate));
}
if (unmanaged == null) throw new InvalidOperationException ("No base method to invoke");
int native_mask;
unmanaged (this.Handle, window == null ? IntPtr.Zero : window.Handle, out axes, out native_mask);
mask = (Gdk.ModifierType) native_mask;
}
static SetWindowCursorNativeDelegate SetWindowCursor_cb_delegate;
static SetWindowCursorNativeDelegate SetWindowCursorVMCallback {
get {
if (SetWindowCursor_cb_delegate == null)
SetWindowCursor_cb_delegate = new SetWindowCursorNativeDelegate (SetWindowCursor_cb);
return SetWindowCursor_cb_delegate;
}
}
static void OverrideSetWindowCursor (GLib.GType gtype)
{
OverrideSetWindowCursor (gtype, SetWindowCursorVMCallback);
}
static void OverrideSetWindowCursor (GLib.GType gtype, SetWindowCursorNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("set_window_cursor"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void SetWindowCursorNativeDelegate (IntPtr inst, IntPtr window, IntPtr cursor);
static void SetWindowCursor_cb (IntPtr inst, IntPtr window, IntPtr cursor)
{
try {
Device __obj = GLib.Object.GetObject (inst, false) as Device;
__obj.OnSetWindowCursor (GLib.Object.GetObject(window) as Gdk.Window, GLib.Object.GetObject(cursor) as Gdk.Cursor);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gdk.Device), ConnectionMethod="OverrideSetWindowCursor")]
protected virtual void OnSetWindowCursor (Gdk.Window window, Gdk.Cursor cursor)
{
InternalSetWindowCursor (window, cursor);
}
private void InternalSetWindowCursor (Gdk.Window window, Gdk.Cursor cursor)
{
SetWindowCursorNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("set_window_cursor"));
unmanaged = (SetWindowCursorNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(SetWindowCursorNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle, window == null ? IntPtr.Zero : window.Handle, cursor == null ? IntPtr.Zero : cursor.Handle);
}
static WarpNativeDelegate Warp_cb_delegate;
static WarpNativeDelegate WarpVMCallback {
get {
if (Warp_cb_delegate == null)
Warp_cb_delegate = new WarpNativeDelegate (Warp_cb);
return Warp_cb_delegate;
}
}
static void OverrideWarp (GLib.GType gtype)
{
OverrideWarp (gtype, WarpVMCallback);
}
static void OverrideWarp (GLib.GType gtype, WarpNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("warp"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void WarpNativeDelegate (IntPtr inst, IntPtr screen, double x, double y);
static void Warp_cb (IntPtr inst, IntPtr screen, double x, double y)
{
try {
Device __obj = GLib.Object.GetObject (inst, false) as Device;
__obj.OnWarp (GLib.Object.GetObject(screen) as Gdk.Screen, x, y);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gdk.Device), ConnectionMethod="OverrideWarp")]
protected virtual void OnWarp (Gdk.Screen screen, double x, double y)
{
InternalWarp (screen, x, y);
}
private void InternalWarp (Gdk.Screen screen, double x, double y)
{
WarpNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("warp"));
unmanaged = (WarpNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(WarpNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle, screen == null ? IntPtr.Zero : screen.Handle, x, y);
}
static QueryStateNativeDelegate QueryState_cb_delegate;
static QueryStateNativeDelegate QueryStateVMCallback {
get {
if (QueryState_cb_delegate == null)
QueryState_cb_delegate = new QueryStateNativeDelegate (QueryState_cb);
return QueryState_cb_delegate;
}
}
static void OverrideQueryState (GLib.GType gtype)
{
OverrideQueryState (gtype, QueryStateVMCallback);
}
static void OverrideQueryState (GLib.GType gtype, QueryStateNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("query_state"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void QueryStateNativeDelegate (IntPtr inst, IntPtr window, IntPtr root_window, IntPtr child_window, out double root_x, out double root_y, out double win_x, out double win_y, out int mask);
static void QueryState_cb (IntPtr inst, IntPtr window, IntPtr root_window, IntPtr child_window, out double root_x, out double root_y, out double win_x, out double win_y, out int mask)
{
try {
Device __obj = GLib.Object.GetObject (inst, false) as Device;
Gdk.ModifierType mymask;
__obj.OnQueryState (GLib.Object.GetObject(window) as Gdk.Window, GLib.Object.GetObject(root_window) as Gdk.Window, GLib.Object.GetObject(child_window) as Gdk.Window, out root_x, out root_y, out win_x, out win_y, out mymask);
mask = (int) mymask;
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, true);
// NOTREACHED: above call does not return.
throw e;
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gdk.Device), ConnectionMethod="OverrideQueryState")]
protected virtual void OnQueryState (Gdk.Window window, Gdk.Window root_window, Gdk.Window child_window, out double root_x, out double root_y, out double win_x, out double win_y, out Gdk.ModifierType mask)
{
InternalQueryState (window, root_window, child_window, out root_x, out root_y, out win_x, out win_y, out mask);
}
private void InternalQueryState (Gdk.Window window, Gdk.Window root_window, Gdk.Window child_window, out double root_x, out double root_y, out double win_x, out double win_y, out Gdk.ModifierType mask)
{
QueryStateNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("query_state"));
unmanaged = (QueryStateNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(QueryStateNativeDelegate));
}
if (unmanaged == null) throw new InvalidOperationException ("No base method to invoke");
int native_mask;
unmanaged (this.Handle, window == null ? IntPtr.Zero : window.Handle, root_window == null ? IntPtr.Zero : root_window.Handle, child_window == null ? IntPtr.Zero : child_window.Handle, out root_x, out root_y, out win_x, out win_y, out native_mask);
mask = (Gdk.ModifierType) native_mask;
}
static GrabNativeDelegate Grab_cb_delegate;
static GrabNativeDelegate GrabVMCallback {
get {
if (Grab_cb_delegate == null)
Grab_cb_delegate = new GrabNativeDelegate (Grab_cb);
return Grab_cb_delegate;
}
}
static void OverrideGrab (GLib.GType gtype)
{
OverrideGrab (gtype, GrabVMCallback);
}
static void OverrideGrab (GLib.GType gtype, GrabNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("grab"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate int GrabNativeDelegate (IntPtr inst, IntPtr window, bool owner_events, int event_mask, IntPtr confine_to, IntPtr cursor, uint time_);
static int Grab_cb (IntPtr inst, IntPtr window, bool owner_events, int event_mask, IntPtr confine_to, IntPtr cursor, uint time_)
{
try {
Device __obj = GLib.Object.GetObject (inst, false) as Device;
Gdk.GrabStatus __result;
__result = __obj.OnGrab (GLib.Object.GetObject(window) as Gdk.Window, owner_events, (Gdk.EventMask) event_mask, GLib.Object.GetObject(confine_to) as Gdk.Window, GLib.Object.GetObject(cursor) as Gdk.Cursor, time_);
return (int) __result;
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, true);
// NOTREACHED: above call does not return.
throw e;
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gdk.Device), ConnectionMethod="OverrideGrab")]
protected virtual Gdk.GrabStatus OnGrab (Gdk.Window window, bool owner_events, Gdk.EventMask event_mask, Gdk.Window confine_to, Gdk.Cursor cursor, uint time_)
{
return InternalGrab (window, owner_events, event_mask, confine_to, cursor, time_);
}
private Gdk.GrabStatus InternalGrab (Gdk.Window window, bool owner_events, Gdk.EventMask event_mask, Gdk.Window confine_to, Gdk.Cursor cursor, uint time_)
{
GrabNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("grab"));
unmanaged = (GrabNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(GrabNativeDelegate));
}
if (unmanaged == null) return (Gdk.GrabStatus) 0;
int __result = unmanaged (this.Handle, window == null ? IntPtr.Zero : window.Handle, owner_events, (int) event_mask, confine_to == null ? IntPtr.Zero : confine_to.Handle, cursor == null ? IntPtr.Zero : cursor.Handle, time_);
return (Gdk.GrabStatus) __result;
}
static UngrabNativeDelegate Ungrab_cb_delegate;
static UngrabNativeDelegate UngrabVMCallback {
get {
if (Ungrab_cb_delegate == null)
Ungrab_cb_delegate = new UngrabNativeDelegate (Ungrab_cb);
return Ungrab_cb_delegate;
}
}
static void OverrideUngrab (GLib.GType gtype)
{
OverrideUngrab (gtype, UngrabVMCallback);
}
static void OverrideUngrab (GLib.GType gtype, UngrabNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("ungrab"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void UngrabNativeDelegate (IntPtr inst, uint time_);
static void Ungrab_cb (IntPtr inst, uint time_)
{
try {
Device __obj = GLib.Object.GetObject (inst, false) as Device;
__obj.OnUngrab (time_);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gdk.Device), ConnectionMethod="OverrideUngrab")]
protected virtual void OnUngrab (uint time_)
{
InternalUngrab (time_);
}
private void InternalUngrab (uint time_)
{
UngrabNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("ungrab"));
unmanaged = (UngrabNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(UngrabNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle, time_);
}
static WindowAtPositionNativeDelegate WindowAtPosition_cb_delegate;
static WindowAtPositionNativeDelegate WindowAtPositionVMCallback {
get {
if (WindowAtPosition_cb_delegate == null)
WindowAtPosition_cb_delegate = new WindowAtPositionNativeDelegate (WindowAtPosition_cb);
return WindowAtPosition_cb_delegate;
}
}
static void OverrideWindowAtPosition (GLib.GType gtype)
{
OverrideWindowAtPosition (gtype, WindowAtPositionVMCallback);
}
static void OverrideWindowAtPosition (GLib.GType gtype, WindowAtPositionNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("window_at_position"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate IntPtr WindowAtPositionNativeDelegate (IntPtr inst, out double win_x, out double win_y, out int mask, bool get_toplevel);
static IntPtr WindowAtPosition_cb (IntPtr inst, out double win_x, out double win_y, out int mask, bool get_toplevel)
{
try {
Device __obj = GLib.Object.GetObject (inst, false) as Device;
Gdk.Window __result;
Gdk.ModifierType mymask;
__result = __obj.OnWindowAtPosition (out win_x, out win_y, out mymask, get_toplevel);
mask = (int) mymask;
return __result == null ? IntPtr.Zero : __result.Handle;
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, true);
// NOTREACHED: above call does not return.
throw e;
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gdk.Device), ConnectionMethod="OverrideWindowAtPosition")]
protected virtual Gdk.Window OnWindowAtPosition (out double win_x, out double win_y, out Gdk.ModifierType mask, bool get_toplevel)
{
return InternalWindowAtPosition (out win_x, out win_y, out mask, get_toplevel);
}
private Gdk.Window InternalWindowAtPosition (out double win_x, out double win_y, out Gdk.ModifierType mask, bool get_toplevel)
{
WindowAtPositionNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("window_at_position"));
unmanaged = (WindowAtPositionNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(WindowAtPositionNativeDelegate));
}
if (unmanaged == null) throw new InvalidOperationException ("No base method to invoke");
int native_mask;
IntPtr __result = unmanaged (this.Handle, out win_x, out win_y, out native_mask, get_toplevel);
mask = (Gdk.ModifierType) native_mask;
return GLib.Object.GetObject(__result) as Gdk.Window;
}
static SelectWindowEventsNativeDelegate SelectWindowEvents_cb_delegate;
static SelectWindowEventsNativeDelegate SelectWindowEventsVMCallback {
get {
if (SelectWindowEvents_cb_delegate == null)
SelectWindowEvents_cb_delegate = new SelectWindowEventsNativeDelegate (SelectWindowEvents_cb);
return SelectWindowEvents_cb_delegate;
}
}
static void OverrideSelectWindowEvents (GLib.GType gtype)
{
OverrideSelectWindowEvents (gtype, SelectWindowEventsVMCallback);
}
static void OverrideSelectWindowEvents (GLib.GType gtype, SelectWindowEventsNativeDelegate callback)
{
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) gtype.GetClassPtr()) + (long) class_abi.GetFieldOffset("select_window_events"));
*raw_ptr = Marshal.GetFunctionPointerForDelegate((Delegate) callback);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void SelectWindowEventsNativeDelegate (IntPtr inst, IntPtr window, int event_mask);
static void SelectWindowEvents_cb (IntPtr inst, IntPtr window, int event_mask)
{
try {
Device __obj = GLib.Object.GetObject (inst, false) as Device;
__obj.OnSelectWindowEvents (GLib.Object.GetObject(window) as Gdk.Window, (Gdk.EventMask) event_mask);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[GLib.DefaultSignalHandler(Type=typeof(Gdk.Device), ConnectionMethod="OverrideSelectWindowEvents")]
protected virtual void OnSelectWindowEvents (Gdk.Window window, Gdk.EventMask event_mask)
{
InternalSelectWindowEvents (window, event_mask);
}
private void InternalSelectWindowEvents (Gdk.Window window, Gdk.EventMask event_mask)
{
SelectWindowEventsNativeDelegate unmanaged = null;
unsafe {
IntPtr* raw_ptr = (IntPtr*)(((long) this.LookupGType().GetThresholdType().GetClassPtr()) + (long) class_abi.GetFieldOffset("select_window_events"));
unmanaged = (SelectWindowEventsNativeDelegate) Marshal.GetDelegateForFunctionPointer(*raw_ptr, typeof(SelectWindowEventsNativeDelegate));
}
if (unmanaged == null) return;
unmanaged (this.Handle, window == null ? IntPtr.Zero : window.Handle, (int) event_mask);
}
// Internal representation of the wrapped structure ABI.
static GLib.AbiStruct _class_abi = null;
static public new GLib.AbiStruct class_abi {
get {
if (_class_abi == null)
_class_abi = new GLib.AbiStruct (new List<GLib.AbiField>{
new GLib.AbiField("get_history"
, GLib.Object.class_abi.Fields
, (uint) Marshal.SizeOf(typeof(IntPtr)) // get_history
, null
, "get_state"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("get_state"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // get_state
, "get_history"
, "set_window_cursor"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("set_window_cursor"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // set_window_cursor
, "get_state"
, "warp"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("warp"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // warp
, "set_window_cursor"
, "query_state"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("query_state"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // query_state
, "warp"
, "grab"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("grab"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // grab
, "query_state"
, "ungrab"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("ungrab"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // ungrab
, "grab"
, "window_at_position"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("window_at_position"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // window_at_position
, "ungrab"
, "select_window_events"
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
new GLib.AbiField("select_window_events"
, -1
, (uint) Marshal.SizeOf(typeof(IntPtr)) // select_window_events
, "window_at_position"
, null
, (uint) Marshal.SizeOf(typeof(IntPtr))
, 0
),
});
return _class_abi;
}
}
// End of the ABI representation.
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gdk_device_get_axis(IntPtr raw, double[] axes, int use, out double value);
public bool GetAxis(double[] axes, Gdk.AxisUse use, out double value) {
bool raw_ret = gdk_device_get_axis(Handle, axes, (int) use, out value);
bool ret = raw_ret;
return ret;
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gdk_device_get_axis_use(IntPtr raw, uint index_);
public Gdk.AxisUse GetAxisUse(uint index_) {
int raw_ret = gdk_device_get_axis_use(Handle, index_);
Gdk.AxisUse ret = (Gdk.AxisUse) raw_ret;
return ret;
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gdk_device_get_axis_value(IntPtr raw, out double axes, IntPtr axis_label, out double value);
public bool GetAxisValue(out double axes, Gdk.Atom axis_label, out double value) {
bool raw_ret = gdk_device_get_axis_value(Handle, out axes, axis_label == null ? IntPtr.Zero : axis_label.Handle, out value);
bool ret = raw_ret;
return ret;
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gdk_device_get_device_type(IntPtr raw);
public Gdk.DeviceType DeviceType {
get {
int raw_ret = gdk_device_get_device_type(Handle);
Gdk.DeviceType ret = (Gdk.DeviceType) raw_ret;
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gdk_device_get_key(IntPtr raw, uint index_, out uint keyval, out int modifiers);
public bool GetKey(uint index_, out uint keyval, out Gdk.ModifierType modifiers) {
int native_modifiers;
bool raw_ret = gdk_device_get_key(Handle, index_, out keyval, out native_modifiers);
bool ret = raw_ret;
modifiers = (Gdk.ModifierType) native_modifiers;
return ret;
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_device_get_last_event_window(IntPtr raw);
public Gdk.Window LastEventWindow {
get {
IntPtr raw_ret = gdk_device_get_last_event_window(Handle);
Gdk.Window ret = GLib.Object.GetObject(raw_ret) as Gdk.Window;
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gdk_device_get_mode(IntPtr raw);
public Gdk.InputMode Mode {
get {
int raw_ret = gdk_device_get_mode(Handle);
Gdk.InputMode ret = (Gdk.InputMode) raw_ret;
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gdk_device_get_n_keys(IntPtr raw);
public int NKeys {
get {
int raw_ret = gdk_device_get_n_keys(Handle);
int ret = raw_ret;
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gdk_device_get_position(IntPtr raw, IntPtr screen, out int x, out int y);
public void GetPosition(Gdk.Screen screen, out int x, out int y) {
gdk_device_get_position(Handle, screen == null ? IntPtr.Zero : screen.Handle, out x, out y);
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gdk_device_get_position_double(IntPtr raw, IntPtr screen, out double x, out double y);
public void GetPositionDouble(Gdk.Screen screen, out double x, out double y) {
gdk_device_get_position_double(Handle, screen == null ? IntPtr.Zero : screen.Handle, out x, out y);
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gdk_device_get_source(IntPtr raw);
public Gdk.InputSource Source {
get {
int raw_ret = gdk_device_get_source(Handle);
Gdk.InputSource ret = (Gdk.InputSource) raw_ret;
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gdk_device_get_state(IntPtr raw, IntPtr window, out double axes, out int mask);
public void GetState(Gdk.Window window, out double axes, out Gdk.ModifierType mask) {
int native_mask;
gdk_device_get_state(Handle, window == null ? IntPtr.Zero : window.Handle, out axes, out native_mask);
mask = (Gdk.ModifierType) native_mask;
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_device_get_type();
public static new GLib.GType GType {
get {
IntPtr raw_ret = gdk_device_get_type();
GLib.GType ret = new GLib.GType(raw_ret);
return ret;
}
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_device_get_window_at_position(IntPtr raw, out int win_x, out int win_y);
public Gdk.Window GetWindowAtPosition(out int win_x, out int win_y) {
IntPtr raw_ret = gdk_device_get_window_at_position(Handle, out win_x, out win_y);
Gdk.Window ret = GLib.Object.GetObject(raw_ret) as Gdk.Window;
return ret;
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_device_get_window_at_position_double(IntPtr raw, out double win_x, out double win_y);
public Gdk.Window GetWindowAtPositionDouble(out double win_x, out double win_y) {
IntPtr raw_ret = gdk_device_get_window_at_position_double(Handle, out win_x, out win_y);
Gdk.Window ret = GLib.Object.GetObject(raw_ret) as Gdk.Window;
return ret;
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern int gdk_device_grab(IntPtr raw, IntPtr window, int grab_ownership, bool owner_events, int event_mask, IntPtr cursor, uint time_);
[Obsolete]
public Gdk.GrabStatus Grab(Gdk.Window window, Gdk.GrabOwnership grab_ownership, bool owner_events, Gdk.EventMask event_mask, Gdk.Cursor cursor, uint time_) {
int raw_ret = gdk_device_grab(Handle, window == null ? IntPtr.Zero : window.Handle, (int) grab_ownership, owner_events, (int) event_mask, cursor == null ? IntPtr.Zero : cursor.Handle, time_);
Gdk.GrabStatus ret = (Gdk.GrabStatus) raw_ret;
return ret;
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gdk_device_grab_info_libgtk_only(IntPtr display, IntPtr device, IntPtr grab_window, out bool owner_events);
[Obsolete]
public static bool GrabInfoLibgtkOnly(Gdk.Display display, Gdk.Device device, Gdk.Window grab_window, out bool owner_events) {
bool raw_ret = gdk_device_grab_info_libgtk_only(display == null ? IntPtr.Zero : display.Handle, device == null ? IntPtr.Zero : device.Handle, grab_window == null ? IntPtr.Zero : grab_window.Handle, out owner_events);
bool ret = raw_ret;
return ret;
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_device_list_axes(IntPtr raw);
public Gdk.Atom[] ListAxes() {
IntPtr raw_ret = gdk_device_list_axes(Handle);
Gdk.Atom[] ret = (Gdk.Atom[]) GLib.Marshaller.ListPtrToArray (raw_ret, typeof(GLib.List), true, false, typeof(Gdk.Atom));
return ret;
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_device_list_slave_devices(IntPtr raw);
public Gdk.Device[] ListSlaveDevices() {
IntPtr raw_ret = gdk_device_list_slave_devices(Handle);
Gdk.Device[] ret = (Gdk.Device[]) GLib.Marshaller.ListPtrToArray (raw_ret, typeof(GLib.List), true, false, typeof(Gdk.Device));
return ret;
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gdk_device_set_axis_use(IntPtr raw, uint index_, int use);
public void SetAxisUse(uint index_, Gdk.AxisUse use) {
gdk_device_set_axis_use(Handle, index_, (int) use);
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gdk_device_set_key(IntPtr raw, uint index_, uint keyval, int modifiers);
public void SetKey(uint index_, uint keyval, Gdk.ModifierType modifiers) {
gdk_device_set_key(Handle, index_, keyval, (int) modifiers);
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern bool gdk_device_set_mode(IntPtr raw, int mode);
public bool SetMode(Gdk.InputMode mode) {
bool raw_ret = gdk_device_set_mode(Handle, (int) mode);
bool ret = raw_ret;
return ret;
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gdk_device_ungrab(IntPtr raw, uint time_);
[Obsolete]
public void Ungrab(uint time_) {
gdk_device_ungrab(Handle, time_);
}
[DllImport("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gdk_device_warp(IntPtr raw, IntPtr screen, int x, int y);
public void Warp(Gdk.Screen screen, int x, int y) {
gdk_device_warp(Handle, screen == null ? IntPtr.Zero : screen.Handle, x, y);
}
// Internal representation of the wrapped structure ABI.
static GLib.AbiStruct _abi_info = null;
static public new GLib.AbiStruct abi_info {
get {
if (_abi_info == null)
_abi_info = new GLib.AbiStruct (GLib.Object.abi_info.Fields);
return _abi_info;
}
}
// End of the ABI representation.
#endregion
}
}
|