58 lines
1.5 KiB
C++
58 lines
1.5 KiB
C++
#if !defined(AFX_PMVIEWPROMPT_H__EC43E182_A380_11D4_964F_00C0F02C4B69__INCLUDED_)
|
|
#define AFX_PMVIEWPROMPT_H__EC43E182_A380_11D4_964F_00C0F02C4B69__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// PMViewPrompt.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPMViewPrompt dialog
|
|
|
|
class CPMViewPrompt : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
int * m_pnReturn;
|
|
CString m_strTitle;
|
|
void Setup(CString strPrompt, CString strTitle, int* nResult);
|
|
CString m_strPrompt;
|
|
CPMViewPrompt(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CPMViewPrompt)
|
|
enum { IDD = IDD_PMSERIESSINGLEPROMPTER };
|
|
CButton m_btnCancel;
|
|
CStatic m_lblPrompt;
|
|
CButton m_btnSelectedOnly;
|
|
CButton m_btnMaster;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CPMViewPrompt)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CPMViewPrompt)
|
|
virtual void OnOK();
|
|
virtual void OnCancel();
|
|
afx_msg void OnBtnselectedonly();
|
|
afx_msg void OnBtnmaster();
|
|
virtual BOOL OnInitDialog();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_PMVIEWPROMPT_H__EC43E182_A380_11D4_964F_00C0F02C4B69__INCLUDED_)
|