home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / SOURCE / CSSRC / SDCENTER.C < prev    next >
C/C++ Source or Header  |  1990-03-28  |  526b  |  31 lines

  1. /*
  2.     sdcenter.c
  3.  
  4.     % sed_Center
  5.  
  6.      5/10/89 by gam
  7.  
  8.     C-scape 3.2
  9.     Copyright (c) 1989, by Oakland Group, Inc.
  10.     ALL RIGHTS RESERVED.
  11.  
  12.     Revision History:
  13.     -----------------
  14.      5/18/89 gam    Removed extra call to sed_GetWidth
  15.  
  16.      3/28/90 jmd    ansi-fied
  17. */
  18.  
  19. #include "sed.h"
  20.  
  21. void sed_Center(sed_type sed)
  22. /*
  23.     Center a sed on the display
  24. */
  25. {
  26.     /* Get the sed width, height */
  27.     sed_SetPosition(sed, (disp_GetHeight() - sed_GetBorderHeight(sed)) / 2,
  28.                          (disp_GetWidth() - sed_GetBorderWidth(sed)) / 2);
  29. }
  30.  
  31.