Update of /cvsroot/win32forth/win32forth/apps/Win32ForthIDE
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv6897
Modified Files:
EdMenu.f
Log Message:
Jos: Renamed the Win32Forth-menu to Tools. Now you can find all the extra programs in the same menu. That will be easier for new users.
Index: EdMenu.f
===================================================================
RCS file: /cvsroot/win32forth/win32forth/apps/Win32ForthIDE/EdMenu.f,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** EdMenu.f 21 Feb 2007 20:50:16 -0000 1.16
--- EdMenu.f 24 Feb 2007 18:15:44 -0000 1.17
***************
*** 26,29 ****
--- 26,33 ----
then ;
+ : Start-Win32Forth ( -- ) \ Start Win32Forth
+ s" Win32for.exe" PrePend<Home>\ GetHandle: MainWindow ExecuteFile
+ ;
+
MenuBar MainMenu
Popup "&File"
***************
*** 153,161 ****
:MenuItem mp_showtb "&Show Toolbar" IDM_SHOW_TOOLBAR DoCommand ;
\ :MenuItem mp_customizetb "&Customize toolbar" Customize: ControlToolbar ;
- MenuSeparator
- MenuItem "&Show ForthForm" Start-fform ;
! Popup "&Win32Forth"
:MenuItem mp_compile "&Compile\tF12" IDM_COMPILE DoCommand ;
:MenuItem mp_reset "&Reset" IDM_RESET_CON_IO DoCommand ;
--- 157,166 ----
:MenuItem mp_showtb "&Show Toolbar" IDM_SHOW_TOOLBAR DoCommand ;
\ :MenuItem mp_customizetb "&Customize toolbar" Customize: ControlToolbar ;
! Popup "&Tools"
! MenuItem "&Win32Forth" Start-Win32Forth ;
! MenuItem "&ForthForm" Start-fform ;
! MenuSeparator
:MenuItem mp_compile "&Compile\tF12" IDM_COMPILE DoCommand ;
:MenuItem mp_reset "&Reset" IDM_RESET_CON_IO DoCommand ;
|