From: Ezra B. <ezr...@us...> - 2009-04-10 16:42:33
|
Update of /cvsroot/win32forth/win32forth/apps/Win32ForthIDE In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv16509/apps/Win32ForthIDE Modified Files: FORMCONTROLS.F Log Message: IDE Enhancements. Bug Fixes. Doc Updates. Index: FORMCONTROLS.F =================================================================== RCS file: /cvsroot/win32forth/win32forth/apps/Win32ForthIDE/FORMCONTROLS.F,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FORMCONTROLS.F 24 Aug 2008 05:07:27 -0000 1.3 --- FORMCONTROLS.F 10 Apr 2009 16:42:29 -0000 1.4 *************** *** 652,656 **** 22 bits moreFlags \ flags such as BS_CENTER, SS_CENTRE etc. could be added if desired int Reserved2 \ for future ! 16 bytes Reserved \ extensions maxtooltip bytes ctrlToolTip maxbitmap bytes ctrlBitmap --- 652,657 ---- 22 bits moreFlags \ flags such as BS_CENTER, SS_CENTRE etc. could be added if desired int Reserved2 \ for future ! byte ctrlID ! 15 bytes Reserved \ extensions maxtooltip bytes ctrlToolTip maxbitmap bytes ctrlBitmap *************** *** 945,948 **** --- 946,955 ---- to ctrlSpinner ;M + :M IsID: ( n -- ) + to ctrlID ;M + + :M ID: ( -- n ) + ctrlID ;M + :M FontChanged: ( -- f ) fontchanged ;M |