From: <kr_...@us...> - 2003-08-24 21:07:51
|
Update of /cvsroot/htoolkit/gio/src/Graphics/UI/GIO In directory sc8-pr-cvs1:/tmp/cvs-serv4408/gio/src/Graphics/UI/GIO Modified Files: Controls.hs Window.hs Log Message: Rename WindowReLayout to ContainerReLayout Index: Controls.hs =================================================================== RCS file: /cvsroot/htoolkit/gio/src/Graphics/UI/GIO/Controls.hs,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** Controls.hs 24 Aug 2003 19:02:45 -0000 1.26 --- Controls.hs 24 Aug 2003 21:07:48 -0000 1.27 *************** *** 681,685 **** autosize = readAttr "autosize" (\c -> return False) layoutSize = readAttr "layoutSize" (\c -> getVar (vlayout c) >>= getLayoutSize) ! relayout = newStdEvent cchandle Port.getWindowReLayoutHandler Port.setWindowReLayoutHandler Port.setWindowReLayoutDefHandler hwindow c = cchandle c --- 681,685 ---- autosize = readAttr "autosize" (\c -> return False) layoutSize = readAttr "layoutSize" (\c -> getVar (vlayout c) >>= getLayoutSize) ! relayout = newStdEvent cchandle Port.getContainerReLayoutHandler Port.setContainerReLayoutHandler Port.setContainerReLayoutDefHandler hwindow c = cchandle c *************** *** 769,773 **** autosize = readAttr "autosize" (\c -> return True) layoutSize = readAttr "layoutSize" (\c -> getVar (pglayout c) >>= getLayoutSize) ! relayout = newStdEvent pghandle Port.getWindowReLayoutHandler Port.setWindowReLayoutHandler Port.setWindowReLayoutDefHandler hwindow c = pghandle c --- 769,773 ---- autosize = readAttr "autosize" (\c -> return True) layoutSize = readAttr "layoutSize" (\c -> getVar (pglayout c) >>= getLayoutSize) ! relayout = newStdEvent pghandle Port.getContainerReLayoutHandler Port.setContainerReLayoutHandler Port.setContainerReLayoutDefHandler hwindow c = pghandle c Index: Window.hs =================================================================== RCS file: /cvsroot/htoolkit/gio/src/Graphics/UI/GIO/Window.hs,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** Window.hs 24 Aug 2003 19:02:45 -0000 1.25 --- Window.hs 24 Aug 2003 21:07:48 -0000 1.26 *************** *** 180,183 **** autosize = varAttr vautosize layoutSize = readAttr "layoutSize" (\w -> getVar (vlayout w) >>= getLayoutSize) ! relayout = newStdEvent hwindow Lib.getWindowReLayoutHandler Lib.setWindowReLayoutHandler Lib.setWindowReLayoutDefHandler hwindow w = hwnd w --- 180,183 ---- autosize = varAttr vautosize layoutSize = readAttr "layoutSize" (\w -> getVar (vlayout w) >>= getLayoutSize) ! relayout = newStdEvent hwindow Lib.getContainerReLayoutHandler Lib.setContainerReLayoutHandler Lib.setContainerReLayoutDefHandler hwindow w = hwnd w |