home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / INCLUDE / BDMOU2OD.H < prev    next >
Text File  |  1990-04-10  |  895b  |  35 lines

  1. /*
  2.     bdmou2od.h     4/09/90
  3.  
  4.     % mouseable border with vertical and horizontal scroll bars and lights
  5.     % supports a prompt and title
  6.  
  7.     OWL 1.2
  8.     Copyright (c) 1990 by Oakland Group, Inc.
  9.     ALL RIGHTS RESERVED.
  10.  
  11.     Revision History:
  12.     -----------------
  13.      4/09/90 pmcm    subclass of bd_mouse
  14. */
  15.  
  16. #include "bdmousod.h"    /* inherits bdprompt and bdsidebar */
  17. /* -------------------------------------------------------------------------- */
  18.  
  19. typedef struct {
  20.     bdmouse_od    mou1;
  21.     boolean      left;                    /* left and right scroll lights */
  22.     boolean        right;
  23.     int            elleft;                    /* elevator position */
  24.     int            elright;
  25.     char         back;                    /* char behind scroll lights */
  26. } bdmouse2_od;
  27.  
  28.  
  29. /* there isn't a get self for bd_mouse */
  30.  
  31. #define bdmou2od_GetSelf(bdmou2dd)    bdpromod_GetSelf(&bdmou2dd->mou1.prompt)
  32.  
  33. /* -------------------------------------------------------------------------- */
  34.  
  35.