Update of /cvsroot/win32forth/win32forth-stc/src/lib
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv14063/win32forth-stc/src/lib
Added Files:
MDI.F MdiDialog.f
Log Message:
gah:Added more demos and MDI files
--- NEW FILE: MDI.F ---
(This appears to be a binary file; contents omitted.)
--- NEW FILE: MdiDialog.f ---
\ $Id: MdiDialog.f,v 1.1 2007/05/05 10:23:55 georgeahubert Exp $
\ G.Hubert Saturday, July 17 2004 - 21:07
\ *D doc\classes\
\ *! MdiDialog W32F MdiDialog
\ *T MdiDialog -- Class for MDI windows containing controls.
\ *P MdiDialogWindows can be designed with ForthForm.
\ *P The file MdiDialog.f in the src\lib folder is not loaded by default. The file Mdi.f
\ ** is automatically loaded with this file if not already included.
needs mdi.f
\ *S Glossary
:CLASS MdiDialogWindow <Super MdiChildWindow
\ *G Base class for Multi-document interface (MDI) child windows that contain controls.
:M ClassInit: ( -- )
\ *G Initialise the class.
ClassInit: super +dialoglist ;M
:M ~: ( -- )
\ *G Destructor method called when a dynamic object is freed by DISPOSE.
-dialoglist ~: super ;M
;Class
\ *Z
|