12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #if !defined(AFX_DYNAMICPROPAGE_H__164AA6D0_7A4D_4316_8394_87E6A86218D7__INCLUDED_)
- #define AFX_DYNAMICPROPAGE_H__164AA6D0_7A4D_4316_8394_87E6A86218D7__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // DynamicProPage.h : header file
- //
- //#include <afxtempl.h>
- #include "DrawObj.h"
- /////////////////////////////////////////////////////////////////////////////
- // CDynamicProPage dialog
- class CDynamicProPage : public CPropertyPage
- {
- DECLARE_DYNCREATE(CDynamicProPage)
- // Construction
- public:
- CDynamicProPage();
- ~CDynamicProPage();
- // Dialog Data
- //{{AFX_DATA(CDynamicProPage)
- enum { IDD = IDD_DYNAMICDLG };
- BOOL m_bVertiSize;
- BOOL m_bVertiPos;
- BOOL m_bOnMove;
- BOOL m_bLineColor;
- BOOL m_bHorizSize;
- BOOL m_bHorizPos;
- BOOL m_bForeColor;
- BOOL m_bOnButtonUp;
- BOOL m_bOnButtonDown;
- BOOL m_bBackColor;
- CString m_strHoriPos; // ˮƽλÖÃ;
- CString m_strHoriSize; // ˮƽ³ß´ç;
- CString m_strVertiPos; // ´¹Ö±Î»ÖÃ;
- CString m_strVertiSize; // ´¹Ö±³ß´ç;
- int m_nHorAlign;
- int m_nVerAlign;
- //}}AFX_DATA
- COLORREF m_clrForeColor;
- CString m_strForeColorCondition;
- COLORREF m_clrBackColor;
- CString m_strBackColorCondition;
- COLORREF m_clrLineColor;
- CString m_strFLineColorCondition;
- CAction m_downAction;
- CAction m_upAction;
- CAction m_moveAction;
- CString m_arrayActionType[16];
- // Overrides
- // ClassWizard generate virtual function overrides
- //{{AFX_VIRTUAL(CDynamicProPage)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CDynamicProPage)
- afx_msg void OnSetforecolor();
- afx_msg void OnSetlinecolor();
- afx_msg void OnSetbackcolor();
- afx_msg void OnSetbuttondown();
- afx_msg void OnSetbuttonup();
- afx_msg void OnSetmousemove();
- afx_msg void OnHsizeconedit();
- afx_msg void OnVsizeconedit();
- afx_msg void OnHposconedit();
- afx_msg void OnVposconedit();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_DYNAMICPROPAGE_H__164AA6D0_7A4D_4316_8394_87E6A86218D7__INCLUDED_)
|