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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
|
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gtk {
using System;
using System.Runtime.InteropServices;
#region Autogenerated code
public partial class CellLayoutAdapter : GLib.GInterfaceAdapter, Gtk.ICellLayout {
[StructLayout (LayoutKind.Sequential)]
struct GtkCellLayoutIface {
public PackStartNativeDelegate PackStart;
public PackEndNativeDelegate PackEnd;
public ClearNativeDelegate Clear;
public AddAttributeNativeDelegate AddAttribute;
public SetCellDataFuncNativeDelegate SetCellDataFunc;
public ClearAttributesNativeDelegate ClearAttributes;
public ReorderNativeDelegate Reorder;
public GetCellsNativeDelegate GetCells;
public GetAreaNativeDelegate GetArea;
}
static GtkCellLayoutIface iface;
static CellLayoutAdapter ()
{
GLib.GType.Register (_gtype, typeof (CellLayoutAdapter));
iface.PackStart = new PackStartNativeDelegate (PackStart_cb);
iface.PackEnd = new PackEndNativeDelegate (PackEnd_cb);
iface.Clear = new ClearNativeDelegate (Clear_cb);
iface.AddAttribute = new AddAttributeNativeDelegate (AddAttribute_cb);
iface.SetCellDataFunc = new SetCellDataFuncNativeDelegate (SetCellDataFunc_cb);
iface.ClearAttributes = new ClearAttributesNativeDelegate (ClearAttributes_cb);
iface.Reorder = new ReorderNativeDelegate (Reorder_cb);
iface.GetCells = new GetCellsNativeDelegate (GetCells_cb);
iface.GetArea = new GetAreaNativeDelegate (GetArea_cb);
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void PackStartNativeDelegate (IntPtr inst, IntPtr cell, bool expand);
static void PackStart_cb (IntPtr inst, IntPtr cell, bool expand)
{
try {
ICellLayoutImplementor __obj = GLib.Object.GetObject (inst, false) as ICellLayoutImplementor;
__obj.PackStart (GLib.Object.GetObject(cell) as Gtk.CellRenderer, expand);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void PackEndNativeDelegate (IntPtr inst, IntPtr cell, bool expand);
static void PackEnd_cb (IntPtr inst, IntPtr cell, bool expand)
{
try {
ICellLayoutImplementor __obj = GLib.Object.GetObject (inst, false) as ICellLayoutImplementor;
__obj.PackEnd (GLib.Object.GetObject(cell) as Gtk.CellRenderer, expand);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void ClearNativeDelegate (IntPtr inst);
static void Clear_cb (IntPtr inst)
{
try {
ICellLayoutImplementor __obj = GLib.Object.GetObject (inst, false) as ICellLayoutImplementor;
__obj.Clear ();
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void AddAttributeNativeDelegate (IntPtr inst, IntPtr cell, IntPtr attribute, int column);
static void AddAttribute_cb (IntPtr inst, IntPtr cell, IntPtr attribute, int column)
{
try {
ICellLayoutImplementor __obj = GLib.Object.GetObject (inst, false) as ICellLayoutImplementor;
__obj.AddAttribute (GLib.Object.GetObject(cell) as Gtk.CellRenderer, GLib.Marshaller.Utf8PtrToString (attribute), column);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void SetCellDataFuncNativeDelegate (IntPtr inst, IntPtr cell, GtkSharp.CellLayoutDataFuncNative func, IntPtr func_data, GLib.DestroyNotify destroy);
static void SetCellDataFunc_cb (IntPtr inst, IntPtr cell, GtkSharp.CellLayoutDataFuncNative func, IntPtr func_data, GLib.DestroyNotify destroy)
{
try {
ICellLayoutImplementor __obj = GLib.Object.GetObject (inst, false) as ICellLayoutImplementor;
GtkSharp.CellLayoutDataFuncInvoker func_invoker = new GtkSharp.CellLayoutDataFuncInvoker (func, func_data, destroy);
__obj.SetCellDataFunc (GLib.Object.GetObject(cell) as Gtk.CellRenderer, func_invoker.Handler);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void ClearAttributesNativeDelegate (IntPtr inst, IntPtr cell);
static void ClearAttributes_cb (IntPtr inst, IntPtr cell)
{
try {
ICellLayoutImplementor __obj = GLib.Object.GetObject (inst, false) as ICellLayoutImplementor;
__obj.ClearAttributes (GLib.Object.GetObject(cell) as Gtk.CellRenderer);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate void ReorderNativeDelegate (IntPtr inst, IntPtr cell, int position);
static void Reorder_cb (IntPtr inst, IntPtr cell, int position)
{
try {
ICellLayoutImplementor __obj = GLib.Object.GetObject (inst, false) as ICellLayoutImplementor;
__obj.Reorder (GLib.Object.GetObject(cell) as Gtk.CellRenderer, position);
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate IntPtr GetCellsNativeDelegate (IntPtr inst);
static IntPtr GetCells_cb (IntPtr inst)
{
try {
ICellLayoutImplementor __obj = GLib.Object.GetObject (inst, false) as ICellLayoutImplementor;
Gtk.CellRenderer[] __result;
__result = __obj.Cells;
return new GLib.List(__result, typeof (Gtk.CellRenderer), true, false) == null ? IntPtr.Zero : new GLib.List(__result, typeof (Gtk.CellRenderer), true, false).Handle;
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, true);
// NOTREACHED: above call does not return.
throw e;
}
}
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate IntPtr GetAreaNativeDelegate (IntPtr inst);
static IntPtr GetArea_cb (IntPtr inst)
{
try {
ICellLayoutImplementor __obj = GLib.Object.GetObject (inst, false) as ICellLayoutImplementor;
Gtk.CellArea __result;
__result = __obj.Area;
return __result == null ? IntPtr.Zero : __result.Handle;
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, true);
// NOTREACHED: above call does not return.
throw e;
}
}
static int class_offset = 2 * IntPtr.Size;
static void Initialize (IntPtr ptr, IntPtr data)
{
IntPtr ifaceptr = new IntPtr (ptr.ToInt64 () + class_offset);
GtkCellLayoutIface native_iface = (GtkCellLayoutIface) Marshal.PtrToStructure (ifaceptr, typeof (GtkCellLayoutIface));
native_iface.PackStart = iface.PackStart;
native_iface.PackEnd = iface.PackEnd;
native_iface.Clear = iface.Clear;
native_iface.AddAttribute = iface.AddAttribute;
native_iface.SetCellDataFunc = iface.SetCellDataFunc;
native_iface.ClearAttributes = iface.ClearAttributes;
native_iface.Reorder = iface.Reorder;
native_iface.GetCells = iface.GetCells;
native_iface.GetArea = iface.GetArea;
Marshal.StructureToPtr (native_iface, ifaceptr, false);
}
GLib.Object implementor;
public CellLayoutAdapter ()
{
InitHandler = new GLib.GInterfaceInitHandler (Initialize);
}
public CellLayoutAdapter (ICellLayoutImplementor implementor)
{
if (implementor == null)
throw new ArgumentNullException ("implementor");
else if (!(implementor is GLib.Object))
throw new ArgumentException ("implementor must be a subclass of GLib.Object");
this.implementor = implementor as GLib.Object;
}
public CellLayoutAdapter (IntPtr handle)
{
if (!_gtype.IsInstance (handle))
throw new ArgumentException ("The gobject doesn't implement the GInterface of this adapter", "handle");
implementor = GLib.Object.GetObject (handle);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_cell_layout_get_type();
private static GLib.GType _gtype = new GLib.GType (gtk_cell_layout_get_type ());
public static GLib.GType GType {
get {
return _gtype;
}
}
public override GLib.GType GInterfaceGType {
get {
return _gtype;
}
}
public override IntPtr Handle {
get {
return implementor.Handle;
}
}
public IntPtr OwnedHandle {
get {
return implementor.OwnedHandle;
}
}
public static ICellLayout GetObject (IntPtr handle, bool owned)
{
GLib.Object obj = GLib.Object.GetObject (handle, owned);
return GetObject (obj);
}
public static ICellLayout GetObject (GLib.Object obj)
{
if (obj == null)
return null;
else if (obj is ICellLayoutImplementor)
return new CellLayoutAdapter (obj as ICellLayoutImplementor);
else if (obj as ICellLayout == null)
return new CellLayoutAdapter (obj.Handle);
else
return obj as ICellLayout;
}
public ICellLayoutImplementor Implementor {
get {
return implementor as ICellLayoutImplementor;
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_cell_layout_add_attribute(IntPtr raw, IntPtr cell, IntPtr attribute, int column);
public void AddAttribute(Gtk.CellRenderer cell, string attribute, int column) {
IntPtr native_attribute = GLib.Marshaller.StringToPtrGStrdup (attribute);
gtk_cell_layout_add_attribute(Handle, cell == null ? IntPtr.Zero : cell.Handle, native_attribute, column);
GLib.Marshaller.Free (native_attribute);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_cell_layout_clear(IntPtr raw);
public void Clear() {
gtk_cell_layout_clear(Handle);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_cell_layout_clear_attributes(IntPtr raw, IntPtr cell);
public void ClearAttributes(Gtk.CellRenderer cell) {
gtk_cell_layout_clear_attributes(Handle, cell == null ? IntPtr.Zero : cell.Handle);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_cell_layout_get_area(IntPtr raw);
public Gtk.CellArea Area {
get {
IntPtr raw_ret = gtk_cell_layout_get_area(Handle);
Gtk.CellArea ret = GLib.Object.GetObject(raw_ret) as Gtk.CellArea;
return ret;
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_cell_layout_get_cells(IntPtr raw);
public Gtk.CellRenderer[] Cells {
get {
IntPtr raw_ret = gtk_cell_layout_get_cells(Handle);
Gtk.CellRenderer[] ret = (Gtk.CellRenderer[]) GLib.Marshaller.ListPtrToArray (raw_ret, typeof(GLib.List), true, false, typeof(Gtk.CellRenderer));
return ret;
}
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_cell_layout_pack_end(IntPtr raw, IntPtr cell, bool expand);
public void PackEnd(Gtk.CellRenderer cell, bool expand) {
gtk_cell_layout_pack_end(Handle, cell == null ? IntPtr.Zero : cell.Handle, expand);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_cell_layout_pack_start(IntPtr raw, IntPtr cell, bool expand);
public void PackStart(Gtk.CellRenderer cell, bool expand) {
gtk_cell_layout_pack_start(Handle, cell == null ? IntPtr.Zero : cell.Handle, expand);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_cell_layout_reorder(IntPtr raw, IntPtr cell, int position);
public void Reorder(Gtk.CellRenderer cell, int position) {
gtk_cell_layout_reorder(Handle, cell == null ? IntPtr.Zero : cell.Handle, position);
}
[DllImport("gtk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_cell_layout_set_cell_data_func(IntPtr raw, IntPtr cell, GtkSharp.CellLayoutDataFuncNative func, IntPtr func_data, GLib.DestroyNotify destroy);
public void SetCellDataFunc(Gtk.CellRenderer cell, Gtk.CellLayoutDataFunc func) {
GtkSharp.CellLayoutDataFuncWrapper func_wrapper = new GtkSharp.CellLayoutDataFuncWrapper (func);
IntPtr func_data;
GLib.DestroyNotify destroy;
if (func == null) {
func_data = IntPtr.Zero;
destroy = null;
} else {
func_data = (IntPtr) GCHandle.Alloc (func_wrapper);
destroy = GLib.DestroyHelper.NotifyHandler;
}
gtk_cell_layout_set_cell_data_func(Handle, cell == null ? IntPtr.Zero : cell.Handle, func_wrapper.NativeDelegate, func_data, destroy);
}
#endregion
}
}
|