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

  1. #if !defined(AFX_SENDFXVIEW10_H__A7F768A7_D666_47DF_A8B6_CBD9E7601742__INCLUDED_)
  2. #define AFX_SENDFXVIEW10_H__A7F768A7_D666_47DF_A8B6_CBD9E7601742__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // SendFxView10.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CSendFxView form view
  12.  
  13. #ifndef __AFXEXT_H__
  14. #include <afxext.h>
  15. #endif
  16.  
  17. class CDSPEffectTemplate;
  18. class isEffectChain;
  19.  
  20.  
  21. class CSendFxView : public CFormView
  22. {
  23. protected:
  24.     CSendFxView();           // protected constructor used by dynamic creation
  25.     DECLARE_DYNCREATE(CSendFxView)
  26.  
  27. // Form Data
  28. public:
  29.     //{{AFX_DATA(CSendFxView)
  30.     enum { IDD = IDD_SENDFXVIEW };
  31.     CComboBox    m_chainsel;
  32.     //}}AFX_DATA
  33.  
  34. // Attributes
  35. protected:
  36.  
  37.     isEffectChain *m_current_chain;
  38.     CDSPEffectTemplate *m_effect_template[3];
  39.  
  40. // Operations
  41. public:
  42.  
  43.     void updateChain(void);
  44.  
  45.     
  46.     
  47.  
  48. // Overrides
  49.     // ClassWizard generated virtual function overrides
  50.     //{{AFX_VIRTUAL(CSendFxView)
  51.     public:
  52.     virtual void OnInitialUpdate();
  53.     protected:
  54.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  55.     //}}AFX_VIRTUAL
  56.  
  57. // Implementation
  58. protected:
  59.     virtual ~CSendFxView();
  60. #ifdef _DEBUG
  61.     virtual void AssertValid() const;
  62.     virtual void Dump(CDumpContext& dc) const;
  63. #endif
  64.  
  65.     // Generated message map functions
  66.     //{{AFX_MSG(CSendFxView)
  67.     afx_msg void OnSelchangeCombo1();
  68.     //}}AFX_MSG
  69.     DECLARE_MESSAGE_MAP()
  70. };
  71.  
  72. /////////////////////////////////////////////////////////////////////////////
  73.  
  74. //{{AFX_INSERT_LOCATION}}
  75. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  76.  
  77. #endif // !defined(AFX_SENDFXVIEW10_H__A7F768A7_D666_47DF_A8B6_CBD9E7601742__INCLUDED_)
  78.