2 using System
.Runtime
.InteropServices
;
6 public class Entry
: Gtk
.Entry
{
8 public Entry (IntPtr raw
) : base (raw
) {}
10 [DllImport("libbeagleuiglue.so")]
11 static extern IntPtr
search_entry_new ();
13 public Entry () : base (IntPtr
.Zero
)
15 if (GetType () != typeof (Entry
)) {
16 CreateNativeObject (new string [0], new GLib
.Value
[0]);
19 Raw
= search_entry_new ();
22 [DllImport("libbeagleuiglue.so")]
23 static extern IntPtr
search_entry_get_type();
25 public static new GLib
.GType GType
{
27 return new GLib
.GType (search_entry_get_type ());