home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / util / editor / dig12.cpt / Views / CDisplayText.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-10  |  450 b   |  24 lines

  1. /****
  2.  * CDisplayText.h
  3.  *
  4.  *    A text edit pane for a tiny editor.
  5.  *
  6.  ****/
  7.  
  8.  
  9. #define _H_CDisplayText
  10.  
  11. #include <CEditText.h>
  12.  
  13. struct CDisplayText : CEditText {
  14.  
  15.                                 /** Contruction/Destruction **/
  16.     void    IDisplayText(CView *anEnclosure, CBureaucrat *aSupervisor,
  17.                 short vLoc, short heigth);
  18.  
  19.     void    DoKeyDown(char theChar, Byte keyCode, EventRecord *macEvent);
  20.  
  21.     void    ProviderChanged( CCollaborator *aProvider, long reason,
  22.                 void* info);
  23. };
  24.