36 lines
978 B
C#
36 lines
978 B
C#
|
|
// This file was generated by the Gtk# code generator.
|
||
|
|
// Any changes made will be lost if regenerated.
|
||
|
|
|
||
|
|
namespace Gdk {
|
||
|
|
|
||
|
|
using System;
|
||
|
|
using System.Runtime.InteropServices;
|
||
|
|
|
||
|
|
#region Autogenerated code
|
||
|
|
[Flags]
|
||
|
|
[GLib.GType (typeof (Gdk.SeatCapabilitiesGType))]
|
||
|
|
public enum SeatCapabilities {
|
||
|
|
|
||
|
|
None,
|
||
|
|
Pointer = 1 << 0,
|
||
|
|
Touch = 1 << 1,
|
||
|
|
TabletStylus = 1 << 2,
|
||
|
|
Keyboard = 1 << 3,
|
||
|
|
AllPointing = Pointer | Touch | TabletStylus,
|
||
|
|
All = AllPointing | Keyboard,
|
||
|
|
}
|
||
|
|
|
||
|
|
internal class SeatCapabilitiesGType {
|
||
|
|
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||
|
|
delegate IntPtr d_gdk_seat_capabilities_get_type();
|
||
|
|
static d_gdk_seat_capabilities_get_type gdk_seat_capabilities_get_type = FuncLoader.LoadFunction<d_gdk_seat_capabilities_get_type>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gdk), "gdk_seat_capabilities_get_type"));
|
||
|
|
|
||
|
|
public static GLib.GType GType {
|
||
|
|
get {
|
||
|
|
return new GLib.GType (gdk_seat_capabilities_get_type ());
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
#endregion
|
||
|
|
}
|