Esempio n. 1
0
        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);
        }
Esempio n. 2
0
 public XWindow()
 {
     Dnd       = new XDnd();
     Selection = new XSelection();
 }
Esempio n. 3
0
 public XWindow(IntPtr win)
 {
     objRaw    = new HandleRef(this, win);
     Dnd       = new XDnd(this);
     Selection = new XSelection(this);
 }
Esempio n. 4
0
 /* 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);
 }
Esempio n. 5
0
 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);
 }
Esempio n. 6
0
	   public XWindow ()
	   {
		   Dnd = new XDnd();
		   Selection = new XSelection();
	   }
Esempio n. 7
0
	   public XWindow (IntPtr win)
	   {
		   objRaw = new HandleRef(this, win);
		   Dnd = new XDnd(this);
		   Selection = new XSelection(this);
	   }
Esempio n. 8
0
	   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);
	   }
Esempio n. 9
0
	   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);
	   }
Esempio n. 10
0
	   /* 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);
	   }