public XWindow(XWindow parent, int x, int y, int w, int h, bool option) { EcoreXWindowNew func; if (option) { func = new EcoreXWindowNew(ecore_x_window_override_new); } else { func = new EcoreXWindowNew(ecore_x_window_override_new); } objRaw = new HandleRef(this, func(parent.Raw, x, y, w, h)); Dnd = new XDnd(this); Selection = new XSelection(this); }
public XWindow() { Dnd = new XDnd(); Selection = new XSelection(); }
public XWindow(IntPtr win) { objRaw = new HandleRef(this, win); Dnd = new XDnd(this); Selection = new XSelection(this); }
/* FIXME - we need to see what happens if the user passed 'null' * instead of a valid window */ public XWindow(XWindow parent, int x, int y, int w, int h) { objRaw = new HandleRef(this, ecore_x_window_new(parent.Raw, x, y, w, h)); Dnd = new XDnd(this); Selection = new XSelection(this); }
public XWindow(int x, int y, int w, int h) { objRaw = new HandleRef(this, ecore_x_window_new(IntPtr.Zero, x, y, w, h)); Dnd = new XDnd(this); Selection = new XSelection(this); }
public XWindow () { Dnd = new XDnd(); Selection = new XSelection(); }
public XWindow (IntPtr win) { objRaw = new HandleRef(this, win); Dnd = new XDnd(this); Selection = new XSelection(this); }
public XWindow (XWindow parent, int x, int y, int w, int h, bool option) { EcoreXWindowNew func; if(option) func = new EcoreXWindowNew(ecore_x_window_override_new); else func = new EcoreXWindowNew(ecore_x_window_override_new); objRaw = new HandleRef(this, func(parent.Raw, x, y, w, h)); Dnd = new XDnd(this); Selection = new XSelection(this); }
public XWindow (int x, int y, int w, int h) { objRaw = new HandleRef(this, ecore_x_window_new(IntPtr.Zero, x, y, w, h)); Dnd = new XDnd(this); Selection = new XSelection(this); }
/* FIXME - we need to see what happens if the user passed 'null' * instead of a valid window */ public XWindow (XWindow parent, int x, int y, int w, int h) { objRaw = new HandleRef(this, ecore_x_window_new(parent.Raw, x, y, w, h)); Dnd = new XDnd(this); Selection = new XSelection(this); }