home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************
-
- Turbo Prolog Toolbox
- (C) Copyright 1987 Borland International.
-
- Demo of resize
- ****************************************************************/
-
- include "tdoms.pro"
-
- DATABASE
- windowsize(ROW,COL)
-
- include "tpreds.pro"
- include "status.pro"
- include "resize.pro"
-
- CLAUSES
- writescr:-keypressed,!.
- writescr:-
- cursor(0,0),
- attribute(66),
- write("The resizing tool predicate allows a window to be re-sized\n"),
- write("in the same way as with the PROLOG system.\n\n"),
- fail.
- writescr:-keypressed,!.
- writescr:-
- attribute(33),
- write("The main advantage of the tool version is that you can modify\n"),
- write("the re-size predicate to suit your own needs.\n\n").
-
- GOAL
- makewindow(1,23,0,"",0,0,24,80),
- makewindow(2,23,66,"test",5,5,14,70),
- resizewindow.