home *** CD-ROM | disk | FTP | other *** search
-
- { Copyright (c) 1985, 87 by Borland International, Inc. }
-
- program SimpleWindow;
-
- {$I Float.inc} { Determines what type Float means. }
-
- uses
- Dos, Crt, GDriver, GKernel, GWindow;
-
- begin
- InitGraphic; { Initialize the graphics system }
-
- DrawBorder; { Draw a border around the drawing }
- { area of the primary window }
-
- DefineWindow(1, 10, 20, XMaxGlb-10, YMaxGlb-20);
- { Define a window 80 pixels in from }
- { the left and right edges, and 20 }
- { from the top and bottom edges }
-
- DefineHeader(1,'THIS IS AN EXAMPLE WINDOW'); { Give it a header }
- SetHeaderOn;
-
- DefineWorld(1,0,0,1000,1000); { Give it a world coordinate system }
-
- SelectWindow(1); { Select the window }
-
- SelectWorld(1); { Select the world }
-
- SetBackground(85); { Give it a grey background }
-
- DrawBorder; { Draw the border }
-
- repeat until KeyPressed; { Wait until a key is pressed }
-
- LeaveGraphic; { Leave the graphics system }
-
- end. { SimpleWindow }