home *** CD-ROM | disk | FTP | other *** search
- {-----------------------------------------------------------------------------}
- { TEGL Windows ToolKit II }
- { Copyright (C) 1990, 1991 TEGL Systems Corporation }
- { All Rights Reserved. }
- {-----------------------------------------------------------------------------}
- UNIT twWindow;
-
- INTERFACE
-
- USES
- TEGLFont,
- fastgrph,
- twcommon,
- twkernel;
-
- Procedure twCrtAssign(wf : WinFramePtr);
- Procedure twCrtON;
- Procedure twCrtOFF;
- Procedure twGotoXy(wf : WinFramePtr; x_,y_ : Integer);
- Function twHiX(wf : WinFramePtr; x_ : Integer) : Integer;
- Function twHiY(wf : WinFramePtr; y_ : Integer) : Integer;
- Function twLoX(wf : WinFramePtr; x_ : Integer) : Integer;
- Function twLoY(wf : WinFramePtr; y_ : Integer) : Integer;
- Procedure twSetTextColor(wf : WinFramePtr; Color : Byte);
- Procedure twSetTextBackGround(wf : WinFramePtr; Color : byte);
- Procedure twWriteChar(wf: WinFramePtr; c : char);
- Procedure twWriteString(wf: WinFramePtr; s : string);
- Procedure twWriteXY(wf : WinFramePtr; col,row :Integer; s : string);
-
- IMPLEMENTATION
-