Enlightenment CVS committal Author : raster Project : e17 Module : libs/ecore
Dir : e17/libs/ecore/src/lib/ecore_x Modified Files: Tag: SPLIT ecore_x_window_prop.c Log Message: rotation api works.. (almost 100% - loigic holes with cursor position when you do the rotate. it fixes up after a mouse eent.. but thats not good enuf). =================================================================== RCS file: /cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_x/Attic/ecore_x_window_prop.c,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -u -3 -r1.1.2.4 -r1.1.2.5 --- ecore_x_window_prop.c 8 Feb 2003 07:03:41 -0000 1.1.2.4 +++ ecore_x_window_prop.c 12 Feb 2003 23:29:44 -0000 1.1.2.5 @@ -203,7 +203,7 @@ memset(&hints, 0, sizeof(XSizeHints)); XGetWMNormalHints(_ecore_x_disp, win, &hints, &ret); - hints.flags |= PMinSize | PSize | USSize; + hints.flags |= PMinSize | PSize; hints.min_width = w; hints.min_height = h; XSetWMNormalHints(_ecore_x_disp, win, &hints); @@ -217,7 +217,7 @@ memset(&hints, 0, sizeof(XSizeHints)); XGetWMNormalHints(_ecore_x_disp, win, &hints, &ret); - hints.flags |= PMaxSize | PSize | USSize; + hints.flags |= PMaxSize | PSize; hints.max_width = w; hints.max_height = h; XSetWMNormalHints(_ecore_x_disp, win, &hints); @@ -231,7 +231,7 @@ memset(&hints, 0, sizeof(XSizeHints)); XGetWMNormalHints(_ecore_x_disp, win, &hints, &ret); - hints.flags |= PBaseSize | PSize | USSize; + hints.flags |= PBaseSize | PSize; hints.base_width = w; hints.base_height = h; XSetWMNormalHints(_ecore_x_disp, win, &hints); @@ -245,7 +245,7 @@ memset(&hints, 0, sizeof(XSizeHints)); XGetWMNormalHints(_ecore_x_disp, win, &hints, &ret); - hints.flags |= PMaxSize | PSize | USSize; + hints.flags |= PResizeInc; hints.width_inc = x; hints.height_inc = y; XSetWMNormalHints(_ecore_x_disp, win, &hints); @@ -259,7 +259,7 @@ memset(&hints, 0, sizeof(XSizeHints)); XGetWMNormalHints(_ecore_x_disp, win, &hints, &ret); - hints.flags |= PPosition | USPosition | PSize | USSize; + hints.flags |= PPosition | USPosition; hints.x = x; hints.y = y; XSetWMNormalHints(_ecore_x_disp, win, &hints); ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ enlightenment-cvs mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs