public CellEditableAdapter (ICellEditableImplementor implementor)
		{
			if (implementor == null)
				throw new ArgumentNullException ("implementor");
			else if (!(implementor is GLib.Object))
				throw new ArgumentException ("implementor must be a subclass of GLib.Object");
			this.implementor = implementor as GLib.Object;
		}
Beispiel #2
0
 static void StartEditing_cb(IntPtr inst, IntPtr evnt)
 {
     try {
         ICellEditableImplementor __obj = GLib.Object.GetObject(inst, false) as ICellEditableImplementor;
         __obj.StartEditing(Gdk.Event.GetEvent(evnt));
     } catch (Exception e) {
         GLib.ExceptionManager.RaiseUnhandledException(e, false);
     }
 }
Beispiel #3
0
 public CellEditableAdapter(ICellEditableImplementor implementor)
 {
     if (implementor == null)
     {
         throw new ArgumentNullException("implementor");
     }
     else if (!(implementor is GLib.Object))
     {
         throw new ArgumentException("implementor must be a subclass of GLib.Object");
     }
     this.implementor = implementor as GLib.Object;
 }