// This file was generated by the Gtk# code generator. // Any changes made will be lost if regenerated. namespace GLib { using System; using System.Collections; using System.Collections.Generic; using System.Runtime.InteropServices; using static GLib.AbiStructExtension; #region Autogenerated code public partial class MenuItem : GLib.Object { public MenuItem (IntPtr raw) : base(raw) {} [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate IntPtr d_g_menu_item_new(IntPtr label, IntPtr detailed_action); static d_g_menu_item_new g_menu_item_new = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_new")); public MenuItem (string label, string detailed_action) : base (IntPtr.Zero) { if (GetType () != typeof (MenuItem)) { var vals = new List (); var names = new List (); CreateNativeObject (names.ToArray (), vals.ToArray ()); return; } IntPtr native_label = GLib.Marshaller.StringToPtrGStrdup (label); IntPtr native_detailed_action = GLib.Marshaller.StringToPtrGStrdup (detailed_action); Raw = g_menu_item_new(native_label, native_detailed_action); GLib.Marshaller.Free (native_label); GLib.Marshaller.Free (native_detailed_action); } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate IntPtr d_g_menu_item_new_from_model(IntPtr model, int item_index); static d_g_menu_item_new_from_model g_menu_item_new_from_model = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_new_from_model")); public MenuItem (GLib.MenuModel model, int item_index) : base (IntPtr.Zero) { if (GetType () != typeof (MenuItem)) { var vals = new List (); var names = new List (); CreateNativeObject (names.ToArray (), vals.ToArray ()); return; } Raw = g_menu_item_new_from_model(model == null ? IntPtr.Zero : model.Handle, item_index); } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate IntPtr d_g_menu_item_new_section(IntPtr label, IntPtr section); static d_g_menu_item_new_section g_menu_item_new_section = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_new_section")); public MenuItem (string label, GLib.MenuModel section) : base (IntPtr.Zero) { if (GetType () != typeof (MenuItem)) { var vals = new List (); var names = new List (); CreateNativeObject (names.ToArray (), vals.ToArray ()); return; } IntPtr native_label = GLib.Marshaller.StringToPtrGStrdup (label); Raw = g_menu_item_new_section(native_label, section == null ? IntPtr.Zero : section.Handle); GLib.Marshaller.Free (native_label); } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate IntPtr d_g_menu_item_new_submenu(IntPtr label, IntPtr submenu); static d_g_menu_item_new_submenu g_menu_item_new_submenu = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_new_submenu")); public static MenuItem NewSubmenu(string label, GLib.MenuModel submenu) { IntPtr native_label = GLib.Marshaller.StringToPtrGStrdup (label); MenuItem result = new MenuItem (g_menu_item_new_submenu(native_label, submenu == null ? IntPtr.Zero : submenu.Handle)); GLib.Marshaller.Free (native_label); return result; } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate IntPtr d_g_menu_item_get_attribute_value(IntPtr raw, IntPtr attribute, IntPtr expected_type); static d_g_menu_item_get_attribute_value g_menu_item_get_attribute_value = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_get_attribute_value")); public GLib.Variant GetAttributeValue(string attribute, GLib.VariantType expected_type) { IntPtr native_attribute = GLib.Marshaller.StringToPtrGStrdup (attribute); IntPtr raw_ret = g_menu_item_get_attribute_value(Handle, native_attribute, expected_type == null ? IntPtr.Zero : expected_type.Handle); GLib.Variant ret = new GLib.Variant(raw_ret); GLib.Marshaller.Free (native_attribute); return ret; } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate IntPtr d_g_menu_item_get_link(IntPtr raw, IntPtr link); static d_g_menu_item_get_link g_menu_item_get_link = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_get_link")); public GLib.MenuModel GetLink(string link) { IntPtr native_link = GLib.Marshaller.StringToPtrGStrdup (link); IntPtr raw_ret = g_menu_item_get_link(Handle, native_link); GLib.MenuModel ret = GLib.Object.GetObject(raw_ret) as GLib.MenuModel; GLib.Marshaller.Free (native_link); return ret; } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate IntPtr d_g_menu_item_get_type(); static d_g_menu_item_get_type g_menu_item_get_type = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_get_type")); public static new GLib.GType GType { get { IntPtr raw_ret = g_menu_item_get_type(); GLib.GType ret = new GLib.GType(raw_ret); return ret; } } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate void d_g_menu_item_set_action_and_target_value(IntPtr raw, IntPtr action, IntPtr target_value); static d_g_menu_item_set_action_and_target_value g_menu_item_set_action_and_target_value = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_set_action_and_target_value")); public void SetActionAndTargetValue(string action, GLib.Variant target_value) { IntPtr native_action = GLib.Marshaller.StringToPtrGStrdup (action); g_menu_item_set_action_and_target_value(Handle, native_action, target_value == null ? IntPtr.Zero : target_value.Handle); GLib.Marshaller.Free (native_action); } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate void d_g_menu_item_set_attribute_value(IntPtr raw, IntPtr attribute, IntPtr value); static d_g_menu_item_set_attribute_value g_menu_item_set_attribute_value = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_set_attribute_value")); public void SetAttributeValue(string attribute, GLib.Variant value) { IntPtr native_attribute = GLib.Marshaller.StringToPtrGStrdup (attribute); g_menu_item_set_attribute_value(Handle, native_attribute, value == null ? IntPtr.Zero : value.Handle); GLib.Marshaller.Free (native_attribute); } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate void d_g_menu_item_set_detailed_action(IntPtr raw, IntPtr detailed_action); static d_g_menu_item_set_detailed_action g_menu_item_set_detailed_action = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_set_detailed_action")); public string DetailedAction { set { IntPtr native_value = GLib.Marshaller.StringToPtrGStrdup (value); g_menu_item_set_detailed_action(Handle, native_value); GLib.Marshaller.Free (native_value); } } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate void d_g_menu_item_set_icon(IntPtr raw, IntPtr icon); static d_g_menu_item_set_icon g_menu_item_set_icon = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_set_icon")); public GLib.IIcon Icon { set { g_menu_item_set_icon(Handle, value == null ? IntPtr.Zero : ((value is GLib.Object) ? (value as GLib.Object).Handle : (value as GLib.IconAdapter).Handle)); } } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate void d_g_menu_item_set_label(IntPtr raw, IntPtr label); static d_g_menu_item_set_label g_menu_item_set_label = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_set_label")); public string Label { set { IntPtr native_value = GLib.Marshaller.StringToPtrGStrdup (value); g_menu_item_set_label(Handle, native_value); GLib.Marshaller.Free (native_value); } } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate void d_g_menu_item_set_link(IntPtr raw, IntPtr link, IntPtr model); static d_g_menu_item_set_link g_menu_item_set_link = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_set_link")); public void SetLink(string link, GLib.MenuModel model) { IntPtr native_link = GLib.Marshaller.StringToPtrGStrdup (link); g_menu_item_set_link(Handle, native_link, model == null ? IntPtr.Zero : model.Handle); GLib.Marshaller.Free (native_link); } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate void d_g_menu_item_set_section(IntPtr raw, IntPtr section); static d_g_menu_item_set_section g_menu_item_set_section = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_set_section")); public GLib.MenuModel Section { set { g_menu_item_set_section(Handle, value == null ? IntPtr.Zero : value.Handle); } } [UnmanagedFunctionPointer (CallingConvention.Cdecl)] delegate void d_g_menu_item_set_submenu(IntPtr raw, IntPtr submenu); static d_g_menu_item_set_submenu g_menu_item_set_submenu = FuncLoader.LoadFunction(FuncLoader.GetProcAddress(GLibrary.Load(Library.Gio), "g_menu_item_set_submenu")); public GLib.MenuModel Submenu { set { g_menu_item_set_submenu(Handle, value == null ? IntPtr.Zero : value.Handle); } } #endregion } }