home *** CD-ROM | disk | FTP | other *** search
- // dualrang.h : header file
- // Copyright (C) 1990, 1998 LEAD Technologies, Inc.
- // All rights reserved.
-
- /////////////////////////////////////////////////////////////////////////////
- // CDualRangeDlg dialog
-
- class CDualRangeDlg : public CDialog
- {
- // Construction
- public:
- CDualRangeDlg(CWnd* pParent = NULL); // standard constructor
-
- // Dialog Data
- //{{AFX_DATA(CDualRangeDlg)
- enum { IDD = IDD_DUALRANGE };
- CScrollBar m_ScrollBar2;
- CScrollBar m_ScrollBar1;
- CString m_strLabel1;
- CString m_strLabel2;
- CString m_strTitle;
- int m_nValue1;
- int m_nValue2;
- int m_nMin;
- int m_nMax;
- int m_nStep;
- int m_nPage;
- //}}AFX_DATA
-
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CDualRangeDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
- BOOL GetValue(BOOL fFirst);
- void SetValue(BOOL fFirst);
-
- // Generated message map functions
- //{{AFX_MSG(CDualRangeDlg)
- afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
- afx_msg void OnChangeEdit1();
- afx_msg void OnChangeEdit2();
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };