home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C ++ / Applications / ScriptExplorer / CLG_CharInfo.h < prev    next >
Encoding:
Text File  |  1997-07-23  |  756 b   |  39 lines  |  [TEXT/CWIE]

  1. // CLG_CharInfo.h
  2.  
  3. #pragma once
  4.  
  5. #include <LView.h>
  6.  
  7.  
  8. //****************************************************
  9. class    CLG_CharInfo : public LPane {
  10. public:
  11.     enum { class_ID = 'Cchi' };
  12.     static CLG_CharInfo*    CreateDisplayStream(
  13.                     LStream            *inStream);
  14.     
  15.  
  16.     CLG_CharInfo( void);
  17.     CLG_CharInfo( LStream *inStream);
  18.  
  19.     void    Init(void);
  20.     void    ClickSelf(const SMouseDownEvent &inMouseDown);
  21.     void    AdjustCursorSelf(Point inPortPt,
  22.                                     const EventRecord &inMacEvent);
  23.  
  24.     void    DrawSelf();    
  25.     void    SetCharNum( unsigned short inCharNum);
  26.     void    SetBaseCharDisp( unsigned short inCharNum);
  27.     
  28.     //---------------------------------
  29.     unsigned short        mCharNum;
  30.     unsigned char        mBaseCharStr[ 6];
  31.     unsigned char        mHexStr[ 6];
  32.     unsigned char        mDecStr[ 6];
  33.     
  34.  
  35. protected:
  36.  
  37. };
  38.  
  39.