home *** CD-ROM | disk | FTP | other *** search
- // rangedlg.h : header file
- // Copyright (C) 1990, 1998 LEAD Technologies, Inc.
- // All rights reserved.
-
- /////////////////////////////////////////////////////////////////////////////
- // CRangeDlg dialog
-
- class CRangeDlg : public CDialog
- {
- // Construction
- public:
- CRangeDlg(CWnd* pParent = NULL); // standard constructor
-
- // Dialog Data
- //{{AFX_DATA(CRangeDlg)
- enum { IDD = IDD_RANGE };
- CStatic m_Static2;
- CComboBox m_Combo;
- CScrollBar m_ScrollBar;
- int m_nValue;
- int m_nMin;
- int m_nMax;
- int m_nStep;
- int m_nPage;
- int m_nComboValue;
- CString m_strLabel;
- CString m_strTitle;
- CString m_strComboInit;
- CString m_strComboLabel;
- BOOL m_fShowCombo;
- //}}AFX_DATA
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CRangeDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
- BOOL GetValue();
- void SetValue();
-
- // Generated message map functions
- //{{AFX_MSG(CRangeDlg)
- afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
- afx_msg void OnChangeEdit1();
- virtual BOOL OnInitDialog();
- afx_msg void OnSelchangeCombo1();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-