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

  1. #if !defined(AFX_MIXERVIEW_H__172665E9_66B0_4048_999C_E8A3429F8FEC__INCLUDED_)
  2. #define AFX_MIXERVIEW_H__172665E9_66B0_4048_999C_E8A3429F8FEC__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // MixerView.h : header file
  8. //
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMixerView form view
  12.  
  13. #ifndef __AFXEXT_H__
  14. #include <afxext.h>
  15. #endif
  16.  
  17. #include "trackerdoc.h"
  18.  
  19. class CMixerView : public CFormView
  20. {
  21. protected:
  22.     CMixerView();           // protected constructor used by dynamic creation
  23.     DECLARE_DYNCREATE(CMixerView)
  24.  
  25. // Form Data
  26. public:
  27.     //{{AFX_DATA(CMixerView)
  28.     enum { IDD = IDD_DIALOG_MIXER };
  29.     CStatic    m_mixerLayout;
  30.     //}}AFX_DATA
  31.  
  32. // Attributes
  33. public:
  34.     CTrackerDoc* GetDocument();
  35.     isSynth * CMixerView::GetSynth();
  36.     
  37. // Operations
  38. public:
  39.  
  40. // Overrides
  41.     // ClassWizard generated virtual function overrides
  42.     //{{AFX_VIRTUAL(CMixerView)
  43.     public:
  44.     virtual void OnInitialUpdate();
  45.     protected:
  46.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  47.     //}}AFX_VIRTUAL
  48.  
  49. // Implementation
  50. protected:
  51.     virtual ~CMixerView();
  52. #ifdef _DEBUG
  53.     virtual void AssertValid() const;
  54.     virtual void Dump(CDumpContext& dc) const;
  55. #endif
  56.  
  57.     // Generated message map functions
  58.     //{{AFX_MSG(CMixerView)
  59.         // NOTE - the ClassWizard will add and remove member functions here.
  60.     //}}AFX_MSG
  61.     DECLARE_MESSAGE_MAP()
  62. };
  63. #ifndef _DEBUG  // debug version in trackerView.cpp
  64. inline CTrackerDoc* CMixerView::GetDocument()
  65. { return (CTrackerDoc*)m_pDocument; }
  66. #endif
  67.  
  68. /////////////////////////////////////////////////////////////////////////////
  69.  
  70. //{{AFX_INSERT_LOCATION}}
  71. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  72.  
  73. #endif // !defined(AFX_MIXERVIEW_H__172665E9_66B0_4048_999C_E8A3429F8FEC__INCLUDED_)
  74.