From: George H. <geo...@us...> - 2012-07-18 12:47:30
|
Update of /cvsroot/win32forth/win32forth/Help/html In directory vz-cvs-4.sog:/tmp/cvs-serv14076 Modified Files: class-Mdi.htm class-control.htm class-dialog.htm class-generic.htm Log Message: Updated documentation Index: class-generic.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/class-generic.htm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** class-generic.htm 3 Mar 2012 09:15:14 -0000 1.2 --- class-generic.htm 18 Jul 2012 12:47:28 -0000 1.3 *************** *** 160,163 **** --- 160,167 ---- X Specifies the new position of the left side of the window, in client coordinates. <br /> Y Specifies the new position of the top of the window, in client coordinates. + </p><p><b><code>:M GetWindowRect: ( -- left top right bottom ) + </code></b><br>The GetWindowRect method retrieves the dimensions of the bounding rectangle of the window. + The dimensions are given in screen coordinates that are relative to the upper-left corner + of the screen. </p><p><b><code>:M SetMenu: ( MenuHandle -- ) </code></b><br>The SetMenu function assigns a new menu to the window. *************** *** 620,636 **** </p><p><b><code>;CLASS </code></b><br>End of generic-window class - </p><a name="DIALOG&CONTROL"></a> - <h2>Generic class for Dialog- and Control-Window objects. - </h2><p><b><code>|CLASS DIALOG&CONTROL <SUPER Generic-Window - </code></b><br>Base class for all dialog and control objects. - </p><p>Since DIALOG&CONTROL is a generic class it should not be used to create - any instances. - </p><p><b><code>:M Classinit: ( -- ) - </code></b><br>Initialise the class. - </p><p><b><code>:M GetWindowRect: ( -- left top right bottom ) - </code></b><br>The GetWindowRect method retrieves the dimensions of the bounding rectangle of the window. - The dimensions are given in screen coordinates that are relative to the upper-left corner - of the screen. - </p><p><b><code>;CLASS - </code></b><br>End of DIALOG&CONTROL class </p></body></html> --- 624,626 ---- Index: class-control.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/class-control.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** class-control.htm 17 Nov 2011 21:57:09 -0000 1.1 --- class-control.htm 18 Jul 2012 12:47:28 -0000 1.2 *************** *** 12,16 **** </h1><a name="Control"></a> <h2>Generic Control class ! </h2><p><b><code>:Class Control <Super Dialog&Control </code></b><br>Generic control class. <br /> Since Control is a generic class it should not be used to create --- 12,16 ---- </h1><a name="Control"></a> <h2>Generic Control class ! </h2><p><b><code>:Class Control <Super Generic-Window </code></b><br>Generic control class. <br /> Since Control is a generic class it should not be used to create Index: class-dialog.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/class-dialog.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** class-dialog.htm 17 Nov 2011 21:57:09 -0000 1.1 --- class-dialog.htm 18 Jul 2012 12:47:28 -0000 1.2 *************** *** 56,60 **** </p><a name="Dialog"></a> <h2>Dialog Class ! </h2><p><b><code>:CLASS Dialog <SUPER Dialog&Control </code></b><br>Dialog class. <br /> To use this class you have to create a ressource file (*.res) which must contain --- 56,60 ---- </p><a name="Dialog"></a> <h2>Dialog Class ! </h2><p><b><code>:CLASS Dialog <SUPER Generic-Window </code></b><br>Dialog class. <br /> To use this class you have to create a ressource file (*.res) which must contain Index: class-Mdi.htm =================================================================== RCS file: /cvsroot/win32forth/win32forth/Help/html/class-Mdi.htm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** class-Mdi.htm 17 Nov 2011 21:57:09 -0000 1.1 --- class-Mdi.htm 18 Jul 2012 12:47:28 -0000 1.2 *************** *** 205,212 **** \ \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ ! 200 value (NewID) ! : NewID ( <name> -- ) defined IF drop ! ELSE count "header (NewID) dup 1+ to (NewID) DOCON , , THEN ; --- 205,212 ---- \ \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ ! : NewID ( <name> -- ) ! defined IF drop ! ELSE NextID swap count ['] constant execute-parsing THEN ; |