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

  1. #if !defined(AFX_OPTIONS_H__A030CD5F_D679_453A_9693_252A96B2F908__INCLUDED_)
  2. #define AFX_OPTIONS_H__A030CD5F_D679_453A_9693_252A96B2F908__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // Options.h : header file
  8. //
  9.  
  10. #include "roundsliderctrl.h"
  11. /////////////////////////////////////////////////////////////////////////////
  12. // COptionsDlg dialog
  13.  
  14. class COptionsDlg : public CDialog
  15. {
  16. // Construction
  17. public:
  18.     COptionsDlg(CWnd* pParent = NULL);   // standard constructor
  19.     COLORREF main_col_ref;
  20.  
  21. // Dialog Data
  22.     //{{AFX_DATA(COptionsDlg)
  23.     enum { IDD = IDD_DIALOG_OPTIONS };
  24.     CRoundSliderCtrl    m_roundSlider;
  25.     CButton    m_MainColView;
  26.     int        m_PatPosAdd;
  27.     int        m_Latency;
  28.     //}}AFX_DATA
  29.  
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(COptionsDlg)
  34.     protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(COptionsDlg)
  43.     afx_msg void OnButtonPickcolor();
  44.     afx_msg void OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct);
  45.     afx_msg void OnPaint();
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52.  
  53. #endif // !defined(AFX_OPTIONS_H__A030CD5F_D679_453A_9693_252A96B2F908__INCLUDED_)
  54.