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
|
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gtk {
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
#region Autogenerated code
public partial class PadController : Gtk.EventController {
public PadController (IntPtr raw) : base(raw) {}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_pad_controller_new(IntPtr window, IntPtr group, IntPtr pad);
public PadController (Gtk.Window window, GLib.IActionGroup group, Gdk.Device pad) : base (IntPtr.Zero)
{
if (GetType () != typeof (PadController)) {
var vals = new List<GLib.Value> ();
var names = new List<string> ();
if (window != null) {
names.Add ("pad");
vals.Add (new GLib.Value (pad));
}
CreateNativeObject (names.ToArray (), vals.ToArray ());
return;
}
Raw = gtk_pad_controller_new(window == null ? IntPtr.Zero : window.Handle, group == null ? IntPtr.Zero : ((group is GLib.Object) ? (group as GLib.Object).Handle : (group as GLib.ActionGroupAdapter).Handle), pad == null ? IntPtr.Zero : pad.Handle);
}
[GLib.Property ("action-group")]
public GLib.IActionGroup ActionGroup {
get {
GLib.Value val = GetProperty ("action-group");
GLib.IActionGroup ret = GLib.ActionGroupAdapter.GetObject ((GLib.Object) val);
val.Dispose ();
return ret;
}
}
[GLib.Property ("pad")]
public Gdk.Device Pad {
get {
GLib.Value val = GetProperty ("pad");
Gdk.Device ret = (Gdk.Device) val;
val.Dispose ();
return ret;
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_pad_controller_get_type();
public static new GLib.GType GType {
get {
IntPtr raw_ret = gtk_pad_controller_get_type();
GLib.GType ret = new GLib.GType(raw_ret);
return ret;
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_pad_controller_set_action(IntPtr raw, int type, int index, int mode, IntPtr label, IntPtr action_name);
public void SetAction(Gtk.PadActionType type, int index, int mode, string label, string action_name) {
IntPtr native_label = GLib.Marshaller.StringToPtrGStrdup (label);
IntPtr native_action_name = GLib.Marshaller.StringToPtrGStrdup (action_name);
gtk_pad_controller_set_action(Handle, (int) type, index, mode, native_label, native_action_name);
GLib.Marshaller.Free (native_label);
GLib.Marshaller.Free (native_action_name);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_pad_controller_set_action_entries(IntPtr raw, IntPtr entries, int n_entries);
public void SetActionEntries(Gtk.PadActionEntry entries, int n_entries) {
IntPtr native_entries = GLib.Marshaller.StructureToPtrAlloc (entries);
gtk_pad_controller_set_action_entries(Handle, native_entries, n_entries);
Marshal.FreeHGlobal (native_entries);
}
#endregion
}
}
|