home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C++ / Applications / HyperCuber 2.0 / source / CAboutDialogDirector.h < prev    next >
Encoding:
Text File  |  1993-08-30  |  652 b   |  21 lines  |  [TEXT/KAHL]

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| This file contains the interface to the CAboutDialogDirector class.  The
  3. //| CAboutDialogDirector class supervises the "About HyperCuber..." dialog.
  4. //|________________________________________________________________________________
  5.  
  6. #pragma once
  7. #include <CDialogDirector.h>
  8.  
  9. class CAboutDialogDirector : public CDialogDirector
  10.     {
  11.  
  12.   public:
  13.  
  14.     void    IAboutDialogDirector(CDirectorOwner *supervisor);
  15.     void    TalkToUser(void);
  16.  
  17.     void    DoKeyDown(char the_char, Byte key_code, EventRecord *event);
  18.     void    DoAutoKey(char the_char, Byte key_code, EventRecord *event);
  19.  
  20.     };
  21.