home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / Harvest C / Source Code / CWarningsPane.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-27  |  741 b   |  31 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  CWarningsPane.h
  3.  
  4.         Interface for WarningsPane class.
  5.         
  6.     SUPERCLASS = CArrayPane
  7.     
  8.     Copyright © 1991 Symantec Corporation. All rights reserved.
  9.     
  10.  
  11.  ******************************************************************************/
  12.  
  13. #define _H_CWarningsPane
  14.  
  15. #include "CArrayPane.h"
  16.  
  17. class CHarvestOptions;
  18.  
  19. class CWarningsPane : public CArrayPane
  20. {
  21. public:
  22.     CHarvestOptions *theOpts;
  23.     void IWarningsPane( CView *anEnclosure, CBureaucrat *aSupervisor,
  24.                             short aWidth, short aHeight,
  25.                             short aHEncl, short aVEncl,
  26.                             SizingOption aHSizing, SizingOption aVSizing);
  27.     
  28.     virtual void GetCellText( Cell aCell, short availableWidth, StringPtr itsText);
  29.  
  30.  
  31. };