home *** CD-ROM | disk | FTP | other *** search
- /*
- sdcenter.c
-
- % sed_Center
-
- 5/10/89 by gam
-
- C-scape 3.2
- Copyright (c) 1989, by Oakland Group, Inc.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- 5/18/89 gam Removed extra call to sed_GetWidth
-
- 3/28/90 jmd ansi-fied
- */
-
- #include "sed.h"
-
- void sed_Center(sed_type sed)
- /*
- Center a sed on the display
- */
- {
- /* Get the sed width, height */
- sed_SetPosition(sed, (disp_GetHeight() - sed_GetBorderHeight(sed)) / 2,
- (disp_GetWidth() - sed_GetBorderWidth(sed)) / 2);
- }
-
-