Ryujinx-GtkSharp/gtk/ComboBox.custom
Mike Kestner 7f3171c814 merge to HEAD of jeroen and friends' work on the 2-4 branch. HEAD
is now tracking Gnome 2.6.

svn path=/trunk/gtk-sharp/; revision=35479
2004-10-29 20:33:07 +00:00

27 lines
1005 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);
}