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

  1. #if !defined(AFX_CHANNELMIXER_H__EF99557E_4CE9_48F0_9F6C_D597E5CE8399__INCLUDED_)
  2. #define AFX_CHANNELMIXER_H__EF99557E_4CE9_48F0_9F6C_D597E5CE8399__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // ChannelMixer.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CChannelMixer dialog
  12. #include "isSynth.h"
  13. #include "roundsliderctrl.h"
  14. class CChannelMixer : public CDialog
  15. {
  16. // Construction
  17. public:
  18.     void SetSynthData(void);
  19.     void UpdateSynthData(void);
  20.   CString m_caption;
  21.   int chnr;
  22.   isSynth *synth;
  23.   void SetSynth(isSynth *_s,int ch);
  24.     CChannelMixer(CWnd* pParent = NULL);   // standard constructor
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CChannelMixer)
  28.     enum { IDD = IDD_DIALOG_MIXERCHANNEL };
  29.     CRoundSliderCtrl    m_volKnob;
  30.     CRoundSliderCtrl    m_panKnob;
  31.     CRoundSliderCtrl    m_fx3Knob;
  32.     CRoundSliderCtrl    m_fx2Knob;
  33.     CRoundSliderCtrl    m_fx1Knob;
  34.     //}}AFX_DATA
  35.  
  36.  
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(CChannelMixer)
  40.     protected:
  41.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  42.     //}}AFX_VIRTUAL
  43.  
  44. // Implementation
  45. protected:
  46.  
  47.     // Generated message map functions
  48.     //{{AFX_MSG(CChannelMixer)
  49.     afx_msg void OnPaint();
  50.     virtual BOOL OnInitDialog();
  51.     afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.  
  56. //{{AFX_INSERT_LOCATION}}
  57. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  58.  
  59. #endif // !defined(AFX_CHANNELMIXER_H__EF99557E_4CE9_48F0_9F6C_D597E5CE8399__INCLUDED_)
  60.