From: Ezra B. <ezr...@us...> - 2008-09-02 03:18:00
|
Update of /cvsroot/win32forth/win32forth/apps/Win32ForthIDE In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv15001/apps/Win32ForthIDE Modified Files: Main.f Log Message: Splitter windows for the IDE. Index: Main.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/Win32ForthIDE/Main.f,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** Main.f 31 Aug 2008 02:30:32 -0000 1.56 --- Main.f 2 Sep 2008 03:17:56 -0000 1.57 *************** *** 76,79 **** --- 76,84 ---- 3 constant FT_BITMAP + 0 constant NO_SPLIT + 1 constant HORIZ_SPLIT + 2 constant VERT_SPLIT + + defer Compile-File ' beep is Compile-File defer HandleW32FMsg ' noop is HandleW32FMsg *************** *** 899,902 **** --- 904,910 ---- ChildWindow ;M + :M GetSplitType: ( -- n ) + NO_SPLIT ;M + ;Class *************** *** 909,912 **** --- 917,921 ---- fload EdHexViewer.f fload EdImageWindow.f + needs EdSplitterWindow.f \ \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ |