home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / cpp / graphics / Conics.sit.hqx / Conics / Include / DocWindows.h < prev    next >
Text File  |  1996-11-13  |  470b  |  26 lines

  1. //Copyright 1996 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __COPYWINDOWS_H
  5. #define __COPYWINDOWS_H
  6.  
  7. #include "OffScreen.h"
  8. #include "Conic.h"
  9.  
  10. class TDocWindow:public TOffScreen {
  11. protected:
  12.     TConic *conic;
  13.     TPlane *plane;
  14. public:
  15.     class TDocInit:public TInitStruct {
  16.     public:
  17.         TConic *conic;
  18.         TPlane *plane;
  19.     };
  20.     virtual Boolean Init( TInitStruct* );
  21.     virtual SInt8 HandleAction( UInt32 );
  22.     virtual SInt8 MakeActive( Boolean );
  23.     virtual void CopyWindow();
  24. };
  25.  
  26. #endif