home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C ++ / Applications / Pict2Ascii 1.03 / Src / GenText.h < prev    next >
Encoding:
Text File  |  1997-05-19  |  614 b   |  27 lines  |  [TEXT/CWIE]

  1. // =================================================================================
  2. //    GenText.h                                        ©1997 BB's Team inc. All rights reserved
  3. // =================================================================================
  4.  
  5. #pragma once
  6.  
  7. #include "PLConstants.h"
  8. #include "ImageLight.h"
  9. #include "FontLight.h"
  10.  
  11. class GenText {
  12.  
  13.     public:
  14.                             GenText (void);
  15.         virtual             ~GenText();
  16.  
  17.         void                SetContrast (Boolean);
  18.         void                Update (FontLight &, ImageLight&);
  19.         void                MakeRoom (void);
  20.         Handle            GetText (void)
  21.                                 { return mText;    }
  22.  
  23.     protected:
  24.         Handle            mText;
  25.         Boolean            mAutoContrast;
  26. };
  27.