home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / CADSP 1.0 / Demo / CNBPPane.h < prev   
Encoding:
C/C++ Source or Header  |  1994-11-30  |  541 b   |  29 lines  |  [TEXT/KAHL]

  1. /***
  2.  * CNBPPane
  3.  *
  4.  *        ArrayPane to display NBP names
  5.  *
  6.  *
  7.  *        Copyright © 1992 Bernard Bernstein. All rights reserved.
  8.  ***/ 
  9.  
  10. #pragma once
  11.  
  12. #include <CArrayPane.h>
  13. #include <AppleTalk.h>
  14.  
  15. class CNBPPane : public CArrayPane {
  16.  
  17. public:
  18.  
  19.     void    INBPPane( CView *anEnclosure, CBureaucrat *aSupervisor,
  20.                          short aWidth, short aHeight,
  21.                          short aHEncl, short aVEncl,
  22.                          SizingOption aHSizing, SizingOption aVSizing);
  23.     
  24.     void    GetCellText(Cell aCell, short availableWidth, StringPtr itsText);
  25.     
  26.     AddrBlock    GetSelectedAddr(void);
  27.  
  28. };
  29.