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
|
// 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.EventMaskGType))]
public enum EventMask {
ExposureMask = 1 << 1,
PointerMotionMask = 1 << 2,
PointerMotionHintMask = 1 << 3,
ButtonMotionMask = 1 << 4,
Button1MotionMask = 1 << 5,
Button2MotionMask = 1 << 6,
Button3MotionMask = 1 << 7,
ButtonPressMask = 1 << 8,
ButtonReleaseMask = 1 << 9,
KeyPressMask = 1 << 10,
KeyReleaseMask = 1 << 11,
EnterNotifyMask = 1 << 12,
LeaveNotifyMask = 1 << 13,
FocusChangeMask = 1 << 14,
StructureMask = 1 << 15,
PropertyChangeMask = 1 << 16,
VisibilityNotifyMask = 1 << 17,
ProximityInMask = 1 << 18,
ProximityOutMask = 1 << 19,
SubstructureMask = 1 << 20,
ScrollMask = 1 << 21,
TouchMask = 1 << 22,
SmoothScrollMask = 1 << 23,
TouchpadGestureMask = 1 << 24,
TabletPadMask = 1 << 25,
AllEventsMask = 0xFFFFFE,
}
internal class EventMaskGType {
[DllImport ("gdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gdk_event_mask_get_type ();
public static GLib.GType GType {
get {
return new GLib.GType (gdk_event_mask_get_type ());
}
}
}
#endregion
}
|