home *** CD-ROM | disk | FTP | other *** search
/ Large Pack of OldSkool DOS MOD Trackers / buzzmachines_massive.exe / Dev / Waveout / ConfigDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-08-26  |  1.6 KB  |  66 lines

  1. #if !defined(AFX_CONFIGDLG_H__8E063812_97DE_11D1_A298_2CC769000000__INCLUDED_)
  2. #define AFX_CONFIGDLG_H__8E063812_97DE_11D1_A298_2CC769000000__INCLUDED_
  3.  
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // ConfigDlg.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CConfigDlg dialog
  12.  
  13. class CConfigDlg : public CDialog
  14. {
  15. // Construction
  16. public:
  17.     CConfigDlg(CWnd* pParent = NULL);   // standard constructor
  18.  
  19. // Dialog Data
  20.     //{{AFX_DATA(CConfigDlg)
  21.     enum { IDD = IDD_CONFIG };
  22.     CStatic    m_Latency;
  23.     CSpinButtonCtrl    m_BufSizeSpin;
  24.     CSpinButtonCtrl    m_BufNumSpin;
  25.     CEdit    m_BufSizeEdit;
  26.     CEdit    m_BufNumEdit;
  27.     CButton    m_DitherCheck;
  28.     CComboBox    m_DeviceList;
  29.     CComboBox    m_SampleRateBox;
  30.     int        m_BufNum;
  31.     int        m_BufSize;
  32.     int        m_Device;
  33.     BOOL    m_Dither;
  34.     //}}AFX_DATA
  35.  
  36.     int m_SampleRate;
  37.  
  38.  
  39. // Overrides
  40.     // ClassWizard generated virtual function overrides
  41.     //{{AFX_VIRTUAL(CConfigDlg)
  42.     protected:
  43.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44.     //}}AFX_VIRTUAL
  45.  
  46. // Implementation
  47. protected:
  48.  
  49.     // Generated message map functions
  50.     //{{AFX_MSG(CConfigDlg)
  51.     virtual BOOL OnInitDialog();
  52.     virtual void OnOK();
  53.     afx_msg void OnChangeConfigBufnum();
  54.     afx_msg void OnChangeConfigBufsize();
  55.     afx_msg void OnSelendokConfigSamplerate();
  56.     //}}AFX_MSG
  57.     DECLARE_MESSAGE_MAP()
  58. private:
  59.     void RecalcLatency();
  60. };
  61.  
  62. //{{AFX_INSERT_LOCATION}}
  63. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  64.  
  65. #endif // !defined(AFX_CONFIGDLG_H__8E063812_97DE_11D1_A298_2CC769000000__INCLUDED_)
  66.