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

  1. /*
  2.     sdgetcor.c        3/24/87
  3.  
  4.     % sed_GetCorners
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1986, 1987, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.      7/07/88 jmd    added windows
  13.     11/14/88 jmd    added newest border scheme
  14.  
  15.      2/07/89 jmd    Removed bordobj.h
  16.      3/31/89 jmd    seds are now windows
  17.  
  18.      3/28/90 jmd    ansi-fied
  19. */
  20.  
  21. #include "sed.h"
  22.  
  23. void sed_GetCorners(sed_type sed, int *ul_row, int *ul_col, int *lr_row, int *lr_col)
  24. /* 
  25.     Gets the upper left and lower right hand corners of the sed
  26.     and places them into (ul_row, ul_col) and (lr_row, lr_col). 
  27.     
  28.     The corners are given in screen coordinates.
  29.     This function ignores borders.
  30. */
  31. {
  32.     *ul_row = win_GetTopRow(sed);
  33.     *ul_col = win_GetLeftCol(sed);
  34.     *lr_row = win_GetBotRow(sed);
  35.     *lr_col = win_GetRightCol(sed);
  36. }
  37.  
  38. void sed_GetBordCorners(sed_type sed, int *ul_row, int *ul_col, int *lr_row, int *lr_col)
  39. /* 
  40.     Gets the upper left and lower right hand corners of the sed
  41.     and places them into (ul_row, ul_col) and (lr_row, lr_col). 
  42.     If there is a border then the corners of the border are returned,
  43.     provided that they are outside the sed.
  44. */
  45. {
  46.     *ul_row = bord_GetTopRow(sed);
  47.     *ul_col = bord_GetLeftCol(sed);
  48.     *lr_row = bord_GetBotRow(sed);
  49.     *lr_col = bord_GetRightCol(sed);
  50. }
  51.