12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #if !defined(AFX_BARDLG_H__16A65887_2ABA_4CBE_9BAA_40496DEF1FA6__INCLUDED_)
- #define AFX_BARDLG_H__16A65887_2ABA_4CBE_9BAA_40496DEF1FA6__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // CBarPage.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CBarPage
- class CBarPage : public CPropertyPage
- {
- DECLARE_DYNCREATE(CBarPage)
- // Construction
- public:
- CBarPage(); // standard constructor
- ~CBarPage();
- // Dialog Data
- //{{AFX_DATA(CBarPage)
- enum { IDD = IDD_BAR_PROPERTY };
- int m_nLowwer;
- int m_nUpper;
- CString m_strVar1;
- CString m_strVar2;
- CString m_strVar3;
- //}}AFX_DATA
- COLORREF m_clrBar1;
- COLORREF m_clrBar2;
- COLORREF m_clrBar3;
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CBarPage)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CBarPage)
- afx_msg void OnBar1color();
- afx_msg void OnBar3color();
- afx_msg void OnBar2color();
- afx_msg void OnVar1();
- afx_msg void OnVar2();
- afx_msg void OnVar3();
- afx_msg void OnBargridcolor();
- afx_msg void OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_BARDLG_H__16A65887_2ABA_4CBE_9BAA_40496DEF1FA6__INCLUDED_)
|