mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 06:25:31 +00:00
c0b574a686
* mapdllnames.pl : a little whitespace action * api/*-api.xml : move to win32 dllnames * */makefile.win32 : remove the mapdllnames step * */*.cs : move to win32 dllnames * */*.custom : move to win32 dllnames * sources/gtk-sharp.sources : move to win32 dllnames svn path=/trunk/gtk-sharp/; revision=11823
30 lines
810 B
Plaintext
30 lines
810 B
Plaintext
// Gtk.TreeView.Custom - Gtk TreeView class customizations
|
|
//
|
|
// Author: Kristian Rietveld <kris@gtk.org>
|
|
//
|
|
// (c) 2002 Kristian Rietveld
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
static extern IntPtr gtk_tree_view_get_model (IntPtr raw);
|
|
|
|
[DllImport("libgtk-win32-2.0-0.dll")]
|
|
static extern IntPtr gtk_tree_view_set_model (IntPtr raw, IntPtr raw_model);
|
|
|
|
/// <summary>Model Property</summary>
|
|
/// <remarks>Gets the model being displayed by the TreeView
|
|
/// </remarks>
|
|
public Gtk.TreeModel Model {
|
|
get {
|
|
IntPtr raw_ret = gtk_tree_view_get_model (Handle);
|
|
Gtk.TreeModel ret = (Gtk.TreeModel) GLib.Object.GetObject (raw_ret);
|
|
return ret;
|
|
}
|
|
|
|
set {
|
|
gtk_tree_view_set_model (Handle, value.Handle);
|
|
}
|
|
}
|