cvsimport
[beagle.git] / search / Entry.cs
blob254a3f265545a48c889bf272663a6c48081885cd
1 using System;
2 using System.Runtime.InteropServices;
4 namespace Search {
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]);
17 return;
19 Raw = search_entry_new ();
22 [DllImport("libbeagleuiglue.so")]
23 static extern IntPtr search_entry_get_type();
25 public static new GLib.GType GType {
26 get {
27 return new GLib.GType (search_entry_get_type ());