home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************
-
- Turbo Prolog Toolbox
- (C) Copyright 1987 Borland International.
-
- Demo of context sensitive help facilities
- (In order to run this program you must define some help texts
- using HELPDEF.PRO and save them in the help file XHELP.DEF )
- ****************************************************************/
-
- include "tdoms.pro"
-
- DOMAINS
- HELPUNIT = h(STRING)
- HELPCONTEXT = SYMBOL
- FILEPOS = REAL
- FILE = helpfile
-
- DATABASE
- helptext(HELPCONTEXT,ATTR,ATTR,STRING,ROW,COL,ROW,COL,FILEPOS)
- helpcontext(HELPCONTEXT)
- helpfile(STRING)
-
- include "help.pro"
-
- GOAL makewindow(1,32,0,"",0,0,24,80),
- assert(helpfile("xhelp.hlp")),
- consult("xhelp.def"),
- push_helpcontext(help1),
- help,
- push_helpcontext(help2),
- help,
- pop_helpcontext,
- help.