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

  1. // =================================================================================
  2. //    CGreyCaption.h                             ©1997 BB's Team Inc. All rights reserved
  3. // =================================================================================
  4.  
  5. #pragma once
  6.  
  7. #include <LCaption.h>
  8.  
  9. class CGreyCaption : public LCaption {
  10. public:
  11.     // Step 3 declare class_ID enum
  12.     enum { class_ID = 'GcaP' };
  13.  
  14.     static CGreyCaption*    CreateGreyCaptionStream( LStream *inStream );
  15.  
  16.                         CGreyCaption();
  17.  
  18.                         CGreyCaption( const CGreyCaption &inOriginal );
  19.  
  20.                         CGreyCaption(
  21.                                 const SPaneInfo    &inPaneInfo,
  22.                                 ConstStringPtr    inString,
  23.                                 ResIDT            inTextTraitsID);
  24.  
  25.                         CGreyCaption( LStream *inStream );
  26.  
  27.     virtual                ~CGreyCaption();
  28.  
  29. protected:
  30.     virtual void        Refresh();
  31.     virtual void        DrawSelf();
  32. };
  33.