mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 06:55:36 +00:00
7f3171c814
is now tracking Gnome 2.6. svn path=/trunk/gtk-sharp/; revision=35479
27 lines
1,005 B
Plaintext
27 lines
1,005 B
Plaintext
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
static extern IntPtr gtk_combo_box_get_model (IntPtr raw);
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
static extern IntPtr gtk_combo_box_set_model (IntPtr raw, IntPtr raw_model);
|
|
|
|
public Gtk.TreeModel Model {
|
|
get {
|
|
IntPtr raw_ret = gtk_combo_box_get_model (Handle);
|
|
Gtk.TreeModel ret = (Gtk.TreeModel) GLib.Object.GetObject (raw_ret, false);
|
|
return ret;
|
|
}
|
|
set {
|
|
gtk_combo_box_set_model (Handle, value.Handle);
|
|
}
|
|
}
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
static extern IntPtr gtk_cell_layout_set_cell_data_func (IntPtr raw, IntPtr raw_renderer, GtkSharp.CellLayoutDataFuncNative func, IntPtr func_data, IntPtr destroy_notify);
|
|
|
|
public void SetCellDataFunc (Gtk.CellRenderer renderer, Gtk.CellLayoutDataFunc func)
|
|
{
|
|
GtkSharp.CellLayoutDataFuncWrapper func_wrapper = null;
|
|
func_wrapper = new GtkSharp.CellLayoutDataFuncWrapper (func, this);
|
|
gtk_cell_layout_set_cell_data_func (Handle, renderer.Handle, func_wrapper.NativeDelegate, IntPtr.Zero, IntPtr.Zero);
|
|
}
|