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

  1. #if !defined(AFX_DSPEFFECTTEMPLATE_H__BCF76D59_AB1C_4B7F_B221_8C1AD67E936C__INCLUDED_)
  2. #define AFX_DSPEFFECTTEMPLATE_H__BCF76D59_AB1C_4B7F_B221_8C1AD67E936C__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // DSPEffectTemplate.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CDSPEffectTemplate dialog
  12.  
  13. class isEffectChain;
  14. class isStereoFX;
  15. class isPlayer;
  16.  
  17. class CDSPEffectTemplate : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     CDSPEffectTemplate(CWnd* pParent = NULL);   // standard constructor
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CDSPEffectTemplate)
  25.     enum { IDD = IDD_SENDFX_TEMPLATE };
  26.     CComboBox    m_effect_list;
  27.     //}}AFX_DATA
  28.     
  29.     void setChain( isEffectChain *chain, int chainpos );    
  30.     void setPlayer( isPlayer *synth );
  31.  
  32. // Overrides
  33.     // ClassWizard generated virtual function overrides
  34.     //{{AFX_VIRTUAL(CDSPEffectTemplate)
  35.     protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.     virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. protected:
  42.  
  43.     void updateInsert(void);    
  44.  
  45.     CDialog *m_current_insert;
  46.     isEffectChain *m_chain;
  47.     isStereoFX *m_current_fx;
  48.     isPlayer *m_player;
  49.  
  50.     int m_chainpos;
  51.  
  52.     // Generated message map functions
  53.     //{{AFX_MSG(CDSPEffectTemplate)
  54.     virtual BOOL OnInitDialog();
  55.     afx_msg void OnAppExit();
  56.     afx_msg void OnSelchangeCombo1();
  57.     //}}AFX_MSG
  58.     DECLARE_MESSAGE_MAP()
  59. };
  60.  
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  63.  
  64. #endif // !defined(AFX_DSPEFFECTTEMPLATE_H__BCF76D59_AB1C_4B7F_B221_8C1AD67E936C__INCLUDED_)
  65.