1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #if !defined(AFX_BASEPRODLG_H__46012FB6_585A_4F45_8B77_65969618AFBE__INCLUDED_)
- #define AFX_BASEPRODLG_H__46012FB6_585A_4F45_8B77_65969618AFBE__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // BaseProDlg.h : header file
- //
- #include <vector>
- using namespace std;
- #include "BitmapPickerCombo.h"
- #include "resource.h"
- /////////////////////////////////////////////////////////////////////////////
- // CBaseProDlg dialog
- class CBaseProDlg : public CPropertyPage
- {
- DECLARE_DYNCREATE(CBaseProDlg)
- // Construction
- public:
- CBaseProDlg(CWnd* pParent = NULL);
- virtual ~CBaseProDlg();
- // Dialog Data
- //{{AFX_DATA(CBaseProDlg)
- enum { IDD = IDD_BASEPRODLG };
- CString m_strCaption;
- CString m_strLineType;
- CString m_strLineWidth;
- CString m_strShowCondition;
- BOOL m_bDynShow;
- BOOL m_bVariant;
- CBitmapPickerCombo m_BitmapCombo;
- int m_nFillMode;
- //}}AFX_DATA
- public:
- COLORREF m_clrFore;
- COLORREF m_clrBack;
- COLORREF m_clrLine;
- COLORREF m_clrFill;
- LOGFONT m_logfont;
- vector<const CBitmap *> m_vtbitmapList;
- bool m_bMoreEdit;
- // Overrides
- // ClassWizard generate virtual function overrides
- //{{AFX_VIRTUAL(CBaseProDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CBaseProDlg)
- afx_msg void OnLinecolor();
- afx_msg void OnBackcolor();
- afx_msg void OnForecolor();
- afx_msg void OnFont();
- afx_msg void OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct);
- afx_msg void OnFillcolor();
- virtual BOOL OnInitDialog();
- afx_msg void OnSelvar();
- afx_msg void OnShowedit();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_BASEPRODLG_H__46012FB6_585A_4F45_8B77_65969618AFBE__INCLUDED_)
|