From: Jos v.d.V. <jo...@us...> - 2007-05-09 15:00:58
|
Update of /cvsroot/win32forth/win32forth-stc/src/console In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv14592 Modified Files: ConsoleMenu.f Log Message: Jos: Activated already defined display menus. Index: ConsoleMenu.f =================================================================== RCS file: /cvsroot/win32forth/win32forth-stc/src/console/ConsoleMenu.f,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ConsoleMenu.f 9 May 2007 12:11:40 -0000 1.1 --- ConsoleMenu.f 9 May 2007 15:00:54 -0000 1.2 *************** *** 214,217 **** --- 214,218 ---- MENUSEPARATOR MENUITEM "&Mark all Text \tCtrl+A" mark-all ; + )) POPUP "&Display" *************** *** 222,229 **** MENULINE "Console Current Size \tGetColRow . ." "GetColRow . ." MENULINE "Console Maximum Size \tGetMaxColRow . ." "GetMaxColRow . ." ! MENULINE "Return Stack Contents \t.RSTACK" ".RSTACK" MENULINE "Memory Used and Available \t.FREE" ".FREE" MENULINE "File Search Path \t.FPATH" ".FPATH" ENDSUBMENU SUBMENU "Vocabulary Functions" MENULINE "Words in Current Vocabulary \tWORDS" "WORDS" --- 223,232 ---- MENULINE "Console Current Size \tGetColRow . ." "GetColRow . ." MENULINE "Console Maximum Size \tGetMaxColRow . ." "GetMaxColRow . ." ! \ MENULINE "Return Stack Contents \t.RSTACK" ".RSTACK" MENULINE "Memory Used and Available \t.FREE" ".FREE" MENULINE "File Search Path \t.FPATH" ".FPATH" ENDSUBMENU + + (( SUBMENU "Vocabulary Functions" MENULINE "Words in Current Vocabulary \tWORDS" "WORDS" *************** *** 231,242 **** MENULINE "Current Vocab Thread Counts \t.COUNTS" ".COUNTS" MENULINE "Current Vocab Thread Words \t.THREADS" ".THREADS" ! ENDSUBMENU SUBMENU "List Functions" ! MENULINE "List of Classes in Win32Forth \t.CLASSES" ".CLASSES" ! MENULINE "List of Loaded Files \t.LOADED" ".LOADED" ! MENULINE "List of Fonts in System \t.FONTS" ".FONTS" ! MENULINE "List of Deferred &Word \t.DEFERRED" ".DEFERRED" ! MENULINE "List of Execution Chains \t.CHAINS" ".CHAINS" ! MENULINE "List of Pointers \t.POINTERS" ".POINTERS" MENULINE "List of Dynamic Memory Used \t.MALLOCS" ".MALLOCS" MENULINE "List of Win32API Calls Used \t.PROCS" ".PROCS" --- 234,246 ---- MENULINE "Current Vocab Thread Counts \t.COUNTS" ".COUNTS" MENULINE "Current Vocab Thread Words \t.THREADS" ".THREADS" ! ENDSUBMENU )) ! SUBMENU "List Functions" ! \ MENULINE "List of Classes in Win32Forth \t.CLASSES" ".CLASSES" ! \ MENULINE "List of Loaded Files \t.LOADED" ".LOADED" ! \ MENULINE "List of Fonts in System \t.FONTS" ".FONTS" ! \ MENULINE "List of Deferred &Word \t.DEFERRED" ".DEFERRED" ! \ MENULINE "List of Execution Chains \t.CHAINS" ".CHAINS" ! \ MENULINE "List of Pointers \t.POINTERS" ".POINTERS" MENULINE "List of Dynamic Memory Used \t.MALLOCS" ".MALLOCS" MENULINE "List of Win32API Calls Used \t.PROCS" ".PROCS" *************** *** 246,249 **** --- 250,254 ---- MENULINE "The Current &Time \t.TIME" ".TIME" ENDSUBMENU + (( POPUP "&Tools" |