home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1997: The Complete Utilities Toolkit / macworld-complete-utilities-1997.iso / Programming / Little Smalltalk v3.1.5 / C Source / Headers / CSelectPane.h < prev    next >
Encoding:
Text File  |  1994-10-08  |  732 b   |  24 lines  |  [TEXT/KAHL]

  1. //=============================================================================
  2. //    Little Smalltalk, version 3
  3. //    Written by Tim Budd, Oregon State University, July 1988
  4. //
  5. //    Symantec Think Class Library interface code ©Julian Barkway, April 1994 
  6. //
  7. //    CSelectPane.h
  8. //    -------------
  9. //    Declarations for a text editing pane which only allows selections.
  10. //
  11. //=============================================================================
  12.  
  13. #define _H_CSelectPane
  14.  
  15. #include "CTextPane.h"
  16.  
  17. struct CSelectPane : CTextPane {
  18.     void    ISelectPane (CView *encl, CBureaucrat *super, 
  19.                         SizingOption hSizing, SizingOption vSizing, short lineLength);
  20.  
  21.     void    Deactivate (void);
  22.     void    DoClick (Point hitPt, short modifierKeys, long when);
  23. };
  24.