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

  1. #if !defined(AFX_TRACKEROPTIONS_H__CB4DD8DB_FFD6_4BCD_B808_F5ED970E4EC6__INCLUDED_)
  2. #define AFX_TRACKEROPTIONS_H__CB4DD8DB_FFD6_4BCD_B808_F5ED970E4EC6__INCLUDED_
  3.  
  4.  
  5.  
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. // TrackerOptions.h : header file
  10. //
  11.  
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CTrackerOptions
  14.  
  15. #include "PropPageColor.h"
  16. #include "PropPageEditor.h"
  17. #include "PropPageMidi.h"
  18. #include "PropPageSound.h"
  19.  
  20. class CTrackerOptions : public CPropertySheet
  21. {
  22.     DECLARE_DYNAMIC(CTrackerOptions)
  23.  
  24. // Construction
  25. public:    
  26.     CTrackerOptions(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  27.  
  28. // Attributes
  29. public:
  30.  
  31. // Operations
  32. public:
  33.  
  34. // Overrides
  35.     // ClassWizard generated virtual function overrides
  36.     //{{AFX_VIRTUAL(CTrackerOptions)
  37.     public:
  38.     virtual BOOL OnInitDialog();
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42. public:
  43.     virtual ~CTrackerOptions();
  44.  
  45.     // Generated message map functions
  46. protected:
  47.  
  48.     CPropPageColor *m_color;
  49.     CPropPageEditor *m_editor;
  50.     CPropPageMidi *m_midi;
  51.     CPropPageSound *m_sound;
  52.  
  53.     //{{AFX_MSG(CTrackerOptions)
  54.         // NOTE - the ClassWizard will add and remove member functions here.
  55.     //}}AFX_MSG
  56.     DECLARE_MESSAGE_MAP()
  57.     
  58. };
  59.  
  60. /////////////////////////////////////////////////////////////////////////////
  61.  
  62. //{{AFX_INSERT_LOCATION}}
  63. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  64.  
  65. #endif // !defined(AFX_TRACKEROPTIONS_H__CB4DD8DB_FFD6_4BCD_B808_F5ED970E4EC6__INCLUDED_)
  66.