home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / beaversweeper_v101.zip / src / SendFxChorus.h < prev    next >
C/C++ Source or Header  |  2003-01-06  |  1KB  |  56 lines

  1. #if !defined(AFX_SENDFXCHORUS_H__A17E18B7_E83F_4B3F_9553_C0CF87E6BC53__INCLUDED_)
  2. #define AFX_SENDFXCHORUS_H__A17E18B7_E83F_4B3F_9553_C0CF87E6BC53__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // SendFxChorus.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CSendFxChorus dialog
  12.  
  13. class isChorus;
  14.  
  15. #include "EffectSlider1.h"
  16.  
  17. class CSendFxChorus : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     CSendFxChorus(CWnd* pParent = NULL);   // standard constructor
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CSendFxChorus)
  25.     enum { IDD = IDD_SENDFX_CHORUS };
  26.         // NOTE: the ClassWizard will add data members here
  27.     //}}AFX_DATA
  28.  
  29.     void setChorus( isChorus *chorus );
  30.     
  31.  
  32. // Overrides
  33.     // ClassWizard generated virtual function overrides
  34.     //{{AFX_VIRTUAL(CSendFxChorus)
  35.     protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.     //}}AFX_VIRTUAL
  38.  
  39. // Implementation
  40. protected:
  41.  
  42.     isChorus *m_chorus;
  43.     CEffectSlider m_sliders[6];
  44.  
  45.     // Generated message map functions
  46.     //{{AFX_MSG(CSendFxChorus)
  47.     virtual BOOL OnInitDialog();
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50. };
  51.  
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54.  
  55. #endif // !defined(AFX_SENDFXCHORUS_H__A17E18B7_E83F_4B3F_9553_C0CF87E6BC53__INCLUDED_)
  56.