home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_GEN / FACETV.ZIP / TV_BOX.H < prev    next >
C/C++ Source or Header  |  1993-12-09  |  1KB  |  44 lines

  1. /************************************************************************
  2. **
  3. ** @(#)tv_box.h        11/09/93    Chris Ahlstrom
  4. **
  5. **    C++ Turbo Vision support for dlg_box.h.
  6. **
  7. *************************************************************************/
  8.  
  9. #if !defined(TV_BOX_h)                    // { TV_BOX_h
  10. #define TV_BOX_h
  11.  
  12. #define Uses_TButton
  13. #define Uses_TCheckBoxes
  14. #define Uses_TDeskTop
  15. #define Uses_TDialog
  16. #define Uses_TEvent
  17. #define Uses_TInputLine
  18. #define Uses_TLabel
  19. #define Uses_TPoint
  20. #define Uses_TRadioButtons
  21. #define Uses_TRect
  22. #define Uses_TSItem
  23. #define Uses_TView
  24. #include <tv.h>            // Turbo Vision functionality
  25.  
  26. #define RADIOBUTTON_PAD    5    // room for the checkmarks
  27. #define SCROLLARROW_PAD    2    // room for TInputLine's scroll-arrows
  28. #define LABEL_PAD    1    // handy padding for the label
  29.  
  30.  
  31. /************************************************************************
  32. ** DeskTop type
  33. **
  34. **    I think this whole concept will not apply to Windows, though
  35. ** it does to Turbo Vision.
  36. **
  37. *************************************************************************/
  38.  
  39. typedef TDeskTop DeskTop;
  40.  
  41.  
  42. #endif                            // } TV_BOX_h
  43.  
  44.