mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
883 B
36 lines
883 B
// imganppg.h : Declaration of the CImgAnnotPropPage property page class.
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
// CImgAnnotPropPage : See imganppg.cpp for implementation.
|
|
|
|
class CImgAnnotPropPage : public COlePropertyPage
|
|
{
|
|
DECLARE_DYNCREATE(CImgAnnotPropPage)
|
|
DECLARE_OLECREATE_EX(CImgAnnotPropPage)
|
|
|
|
// Constructor
|
|
public:
|
|
CImgAnnotPropPage();
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CImgAnnotPropPage)
|
|
enum { IDD = IDD_PROPPAGE_IMGANNOT };
|
|
CString m_strDestImageControl;
|
|
BOOL m_nEnabled;
|
|
int m_bValue;
|
|
//}}AFX_DATA
|
|
|
|
// Implementation
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
int GetImageEditControlCount();
|
|
int GetImageEditControlList(LPCONTROLLIST lpControlList);
|
|
|
|
// Message maps
|
|
protected:
|
|
//{{AFX_MSG(CImgAnnotPropPage)
|
|
virtual BOOL OnInitDialog();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
};
|