Update of /cvsroot/win32forth/win32forth-stc/src
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv13553
Modified Files:
extend.f
Log Message:
Jos: Adapted for the console-menu and menubar.
Index: extend.f
===================================================================
RCS file: /cvsroot/win32forth/win32forth-stc/src/extend.f,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** extend.f 24 Apr 2007 09:25:52 -0000 1.18
--- extend.f 9 May 2007 12:14:08 -0000 1.19
***************
*** 30,37 ****
--- 30,50 ----
FLOAD src\console\keyboard.f \ function and special key constants
FLOAD src\console\lineedit.f \ a line editor utility
+
FLOAD src\ansfile.f \ ansi file words
FLOAD src\registry.f \ Win32 Registry support
FLOAD src\primhash.f \ primitive hash functions for OOP later *** to be done ***
FLOAD src\class.f \ ***** Object Oriented Programming Support *****
+ sys-FLOAD src\console\ConsoleStatBar.f \ status bar for the console window
+ FLOAD src\console\forthdlg.f
+ fload src\xfiledlg.f \ xcall replacements for open dialogs
+ FLOAD src\console\ConsoleMenu.f
+
+ : Temp-HELLO { \ doing-app? -- } \ startup stuff till anything works
+ (boot)
+ only forth also definitions
+ initialization-chain do-chain
+ ;
+
+ \in-system-ok ' Temp-HELLO is boot
here fence ! mark empty \ Prevent forgetting anything before this
***************
*** 69,73 ****
FLOAD src\colors.f
FLOAD src\fonts.f \ font class
- fload src\xfiledlg.f \ xcall replacements for open dialogs
FLOAD src\PrintSupport.f \ replacement for the w32fPrint.dll
FLOAD src\dc.f \ device context class
--- 82,85 ----
***************
*** 80,89 ****
FLOAD src\button.f
FLOAD src\dialog.f
- FLOAD src\console\forthdlg.f
FLOAD src\keysave.f
FLOAD src\lib\BROWSEFLD.F \ SHBrowseForFolder() support
- FLOAD src\menu.f
- FLOAD src\console\ConsoleMenu.f
- sys-FLOAD src\console\ConsoleStatBar.f \ status bar for the console window
\ sys-Fload src\xref.f \ Cross reference all words used by the word in question
--- 92,97 ----
|