home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / 3DTOSHI2.ZIP / myapp / 3d / 3dw386 / dlgs.h < prev    next >
C/C++ Source or Header  |  1996-04-22  |  1KB  |  71 lines

  1.  
  2. // dlgs.h
  3.  
  4. #ifndef __DLGS_H__
  5. #define __DLGS_H__
  6.  
  7. #include "stdgfx.h"
  8. #include "mpgui.h"
  9.  
  10. class FOGDLG : public GUIDIALOG 
  11.   {
  12.     protected :
  13.       virtual LONG OnInitDialog ();
  14.       virtual LONG OnCommand ( LONG Command );
  15.      
  16.     public :    
  17.       FOGDLG (); 
  18.       virtual ~FOGDLG (); 
  19.       
  20.       BOOLEAN IsFogOn ();
  21.       float GetFogScale ();
  22.   }; // End of FOGDLG
  23.  
  24. class DEPTHDLG : public GUIDIALOG 
  25.   {
  26.     protected :
  27.       virtual LONG OnInitDialog ();
  28.       virtual LONG OnCommand ( LONG Command );
  29.      
  30.     public :    
  31.       DEPTHDLG (); 
  32.       virtual ~DEPTHDLG (); 
  33.       
  34.       BOOLEAN IsDepthCueOn ();
  35.       float GetDepthCueScale ();
  36.   }; // End of DEPTHDLG
  37.  
  38. class BGCOLORDLG : public GUIDIALOG 
  39.   {
  40.     protected :
  41.       virtual LONG OnInitDialog ();
  42.       virtual LONG OnCommand ( LONG Command );
  43.      
  44.     public :    
  45.       BGCOLORDLG (); 
  46.       virtual ~BGCOLORDLG (); 
  47.       
  48.       VOID GetRGB ( RGBCOLOR *Col );
  49.   }; // End of BGCOLORDLG
  50.  
  51. class AMBIENTDLG : public GUIDIALOG 
  52.   {
  53.     protected :
  54.       virtual LONG OnInitDialog ();
  55.       virtual LONG OnCommand ( LONG Command );
  56.      
  57.     public :    
  58.       AMBIENTDLG (); 
  59.       virtual ~AMBIENTDLG ();
  60.  
  61.       VOID GetRGB ( RGBCOLOR *Col );
  62.   }; // End of AMBIENTDLG
  63.  
  64. class ABOUTDLG : public GUIDIALOG
  65.   {
  66.     protected :
  67.       virtual LONG OnCommand ( LONG Command );    
  68.   }; // End of ABOUTDLG 
  69.  
  70. #endif
  71.