From: Dirk B. <db...@us...> - 2005-08-21 11:11:14
|
Update of /cvsroot/win32forth/win32forth/apps/SciEdit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4666/apps/SciEdit Modified Files: CommandID.f EdCommand.f EdCompile.f EdMenu.f EdRemote.f EdVersion.f Main.f ScintillaHyperMDI.f Log Message: SciEdit update: - Fixed some bugs in the hyper-linking and in the debug-interface. - New menu entry "Handle debug messages?" in the Win32Forth menu to turn off the handling of the debug messages from the console window. - Made the communication beetween SciEdit and the console window work a better (I hope). Index: EdVersion.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/SciEdit/EdVersion.f,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** EdVersion.f 21 Aug 2005 06:22:01 -0000 1.4 --- EdVersion.f 21 Aug 2005 11:11:04 -0000 1.5 *************** *** 23,37 **** \ ---------------------- Initals of developers ----------------------------- \ --------------------------------------------------------------------------- ! DBU Dirk Busch (di...@SP...) ! ^^ ^^^^ remove this \ --------------------------------------------------------------------------- \ ---------------------- Known bugs ---------------------------------------- \ --------------------------------------------------------------------------- ! - ctrl+a ctrl+c in the html browser window does not copy to the clipboard (jos) ! - in a html browser window, the filename isn't updated in the tiltlebar when a file is opened by selecting a link in the html file (dbu) - When using hyperlinking somtimes SciEdit ends in an endless loop displaying ! error messages in a MessageBox. (dbu) \ --------------------------------------------------------------------------- --- 23,37 ---- \ ---------------------- Initals of developers ----------------------------- \ --------------------------------------------------------------------------- ! DBU Dirk Busch (di...@wi...) ! EAB Ezra Boyce \ --------------------------------------------------------------------------- \ ---------------------- Known bugs ---------------------------------------- \ --------------------------------------------------------------------------- ! - Ctrl+a ctrl+c in the html browser window does not copy to the clipboard (jos) ! - In a html browser window, the filename isn't updated in the tiltlebar when a file is opened by selecting a link in the html file (dbu) - When using hyperlinking somtimes SciEdit ends in an endless loop displaying ! error messages in a MessageBox. (dbu) - Fixed: Samstag, August 20 2005 dbu \ --------------------------------------------------------------------------- *************** *** 39,44 **** \ --------------------------------------------------------------------------- - Ability to compile a line or selected text (erza) ! - text search with regular expressions (the sintilla control can do this) (dbu) ! - search and replace text (dbu) - The hyperlinking to this source code my places the source about three lines from the bottom of the screen in a 25 lines screen. --- 39,44 ---- \ --------------------------------------------------------------------------- - Ability to compile a line or selected text (erza) ! - Text search with regular expressions (the sintilla control can do this) (dbu) ! - Search and replace text (dbu) - The hyperlinking to this source code my places the source about three lines from the bottom of the screen in a 25 lines screen. *************** *** 50,53 **** --- 50,57 ---- - User defined color's for the Background and the Text (dbu) - Convert Tab's to spaces and spaces to Tab's (RBS) + - If a second copy of a file is opend SciEdit currently activates the first + copy only. It should better check if the copy on the disk is newer than + the ony in memory, and ask the user to load the newer one. (dbu) + - Monitor the file-system, and ask the user to reload a file if it was modified. \ --------------------------------------------------------------------------- *************** *** 86,90 **** dbu Samstag, August 28 2004 - New Menu entries "Line cut...", "Line copy", "Line transpose", ! "Line duplicate", "Lowercase" and "Uppercase" in the "Edit" menu. - Little enhancement of the debug support --- 90,94 ---- dbu Samstag, August 28 2004 - New Menu entries "Line cut...", "Line copy", "Line transpose", ! "Line duplicate", "Lowercase" and "Uppercase" in the "Edit" menu. - Little enhancement of the debug support *************** *** 128,132 **** dbu Donnerstag, September 09 2004 - Fixed the WM_COMMAND handling problems (I hope) ! - Fixed the NewFile: method of the EditorChild class witch was complety broken \ changes for Version 1.01.12 --- 132,136 ---- dbu Donnerstag, September 09 2004 - Fixed the WM_COMMAND handling problems (I hope) ! - Fixed the NewFile: method of the EditorChild class whitch was complety broken \ changes for Version 1.01.12 *************** *** 185,192 **** - SciEdit append a null byte to any file that was saved to disk. Thank's Ezra for reporting this bug. ! \ changes for Version 1.01.23 ! EAB August 21, 2005 ! - Added a little integration with ForthForm. If SciEdit is open ! ForthForm will use it for editing/viewing sources. Modification ! in EdRemote.f. --- 189,204 ---- - SciEdit append a null byte to any file that was saved to disk. Thank's Ezra for reporting this bug. ! \ changes for Version 1.01.23 ! dbu Samstag, August 20 2005 ! - Fixed some bugs in the hyper-linking and in the debug-interface. ! EAB August 21, 2005 ! - Added a little integration with ForthForm. If SciEdit is open ! ForthForm will use it for editing/viewing sources. Modification ! in EdRemote.f. ! dbu August 21, 2005 ! - Made the communication beetween SciEdit and the console window ! work a better (I hope). ! - New menu entry "Handle debug messages?" in the Win32Forth menu ! to turn off the handling of the debug messages from the console ! window. \ No newline at end of file Index: EdMenu.f =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/SciEdit/EdMenu.f,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EdMenu.f 6 Jan 2005 16:54:52 -0000 1.2 --- EdMenu.f 21 Aug 2005 11:11:04 -0000 1.3 *************** *** 29,40 **** \ :MenuItem mf_reload "&Revert to last saved version\tCtrl+R" IDM_RELOAD DoCommand ; \ MenuSeparator ! :MenuItem mf_openhl "Open Highlighted File\tCtrl+Shift+O" IDM_OPEN_HIGHLIGHTED_FILE DoCommand ; MenuSeparator ! MENUITEM "Open &HTML File..." IDM_OPEN_HTML_FILE DoCommand ; MenuSeparator MenuItem "E&xit\tALT+F4" IDM_EXIT DoCommand ; \ MenuSeparator ! 8 RECENTFILES RecentFiles IDM_OPEN_RECENT_FILE DoCommand ; Popup "&Edit" --- 29,40 ---- \ :MenuItem mf_reload "&Revert to last saved version\tCtrl+R" IDM_RELOAD DoCommand ; \ MenuSeparator ! :MenuItem mf_openhl "Open Highlighted File\tCtrl+Shift+O" IDM_OPEN_HIGHLIGHTED_FILE DoCommand ; MenuSeparator ! MENUITEM "Open &HTML File..." IDM_OPEN_HTML_FILE DoCommand ; MenuSeparator MenuItem "E&xit\tALT+F4" IDM_EXIT DoCommand ; \ MenuSeparator ! 8 RECENTFILES RecentFiles IDM_OPEN_RECENT_FILE DoCommand ; Popup "&Edit" *************** *** 95,103 **** :MenuItem mp_showsb "&Show Statusbar" IDM_SHOW_STATUSBAR DoCommand ; :MenuItem mp_showtb "&Show Toolbar" IDM_SHOW_TOOLBAR DoCommand ; ! :MenuItem mp_customizetb "&Customize toolbar" Customize: ControlToolbar ; Popup "&Win32Forth" :MenuItem mp_compile "&Compile\tF12" IDM_COMPILE DoCommand ; :MenuItem mp_debug "&Debug...\tF11" IDM_DEBUG DoCommand ; MenuSeparator :MenuItem mp_browser "Class and &Vocabulary browser..." IDM_VOC_BROWSER DoCommand ; --- 95,104 ---- :MenuItem mp_showsb "&Show Statusbar" IDM_SHOW_STATUSBAR DoCommand ; :MenuItem mp_showtb "&Show Toolbar" IDM_SHOW_TOOLBAR DoCommand ; ! :MenuItem mp_customizetb "&Customize toolbar" Customize: ControlToolbar ; Popup "&Win32Forth" :MenuItem mp_compile "&Compile\tF12" IDM_COMPILE DoCommand ; :MenuItem mp_debug "&Debug...\tF11" IDM_DEBUG DoCommand ; + :MenuItem mp_HandleW32FMsg "&Handle debug messages?" IDM_HANDLEW32FMSG DoCommand ; MenuSeparator :MenuItem mp_browser "Class and &Vocabulary browser..." IDM_VOC_BROWSER DoCommand ; *************** *** 141,145 **** pad GetSelText: ActiveChild if pad zcount BL skip BL -TRAILCHARS ! IsAnsWord? else false then ; --- 142,146 ---- pad GetSelText: ActiveChild if pad zcount BL skip BL -TRAILCHARS ! IsAnsWord? else false then ; *************** *** 194,197 **** --- 195,199 ---- dup Enable: mp_compile dup Enable: mp_debug + \ dup Enable: mp_HandleW32FMsg \ Help menu *************** *** 248,252 **** \ Win32Forth menu GetTextLength: ActiveChild Enable: mp_compile ! ActiveRemote ActiveChild = Enable: mp_debug \ Help menu --- 250,255 ---- \ Win32Forth menu GetTextLength: ActiveChild Enable: mp_compile ! ActiveRemote ActiveChild = HandleW32FMsg? and Enable: mp_debug ! HandleW32FMsg? Check: mp_HandleW32FMsg \ Help menu *************** *** 268,270 **** 0 ; - |