42 lines
750 B
C++
42 lines
750 B
C++
// CMCombo.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CMCombo window
|
|
|
|
class CMCombo : public CComboBox
|
|
{
|
|
// Construction
|
|
public:
|
|
CMCombo();
|
|
|
|
// Attributes
|
|
public:
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CMCombo)
|
|
public:
|
|
virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
|
|
protected:
|
|
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~CMCombo();
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(CMCombo)
|
|
afx_msg void OnSelchange();
|
|
//}}AFX_MSG
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|