no more submodule
This commit is contained in:
54
GtkSharp/Source/Libs/GdkSharp/Generated/Gdk/EventMask.cs
Normal file
54
GtkSharp/Source/Libs/GdkSharp/Generated/Gdk/EventMask.cs
Normal file
@@ -0,0 +1,54 @@
|
||||
// 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 {
|
||||
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
|
||||
delegate IntPtr d_gdk_event_mask_get_type();
|
||||
static d_gdk_event_mask_get_type gdk_event_mask_get_type = FuncLoader.LoadFunction<d_gdk_event_mask_get_type>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gdk), "gdk_event_mask_get_type"));
|
||||
|
||||
public static GLib.GType GType {
|
||||
get {
|
||||
return new GLib.GType (gdk_event_mask_get_type ());
|
||||
}
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user