1.3 updates
This commit is contained in:
parent
bb4769dbba
commit
78071b1635
13 changed files with 627 additions and 725 deletions
60
PMerge.h
Normal file
60
PMerge.h
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
#if !defined(AFX_PMERGE_H__3AC42F52_D7CA_11D1_B01A_000000000000__INCLUDED_)
|
||||
#define AFX_PMERGE_H__3AC42F52_D7CA_11D1_B01A_000000000000__INCLUDED_
|
||||
|
||||
#if _MSC_VER >= 1000
|
||||
#pragma once
|
||||
#endif // _MSC_VER >= 1000
|
||||
// PMerge.h : header file
|
||||
//
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CPMerge dialog
|
||||
|
||||
class CPMerge : public CDialog
|
||||
{
|
||||
// Construction
|
||||
public:
|
||||
CPMerge(CWnd* pParent = NULL); // standard constructor
|
||||
|
||||
// Dialog Data
|
||||
//{{AFX_DATA(CPMerge)
|
||||
enum { IDD = IDD_PMERGE };
|
||||
CButton m_cLaunch;
|
||||
CEdit m_pmcView;
|
||||
CEdit m_pmcFile;
|
||||
CEdit m_pmcEdit;
|
||||
CComboBox m_pmTemplate;
|
||||
BOOL m_pmLaunch;
|
||||
//}}AFX_DATA
|
||||
|
||||
|
||||
// Overrides
|
||||
// ClassWizard generated virtual function overrides
|
||||
//{{AFX_VIRTUAL(CPMerge)
|
||||
protected:
|
||||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||||
//}}AFX_VIRTUAL
|
||||
|
||||
// Implementation
|
||||
protected:
|
||||
void LoadTemplateData();
|
||||
void SaveTemplateData();
|
||||
BOOL TestForTemplate(CString strTName);
|
||||
|
||||
// Generated message map functions
|
||||
//{{AFX_MSG(CPMerge)
|
||||
virtual BOOL OnInitDialog();
|
||||
virtual void OnOK();
|
||||
afx_msg void OnSelchangePmtemplate();
|
||||
afx_msg void OnSelendokPmtemplate();
|
||||
afx_msg void OnPmbrowEdit();
|
||||
afx_msg void OnPmbrowFile();
|
||||
afx_msg void OnPmbrowView();
|
||||
//}}AFX_MSG
|
||||
DECLARE_MESSAGE_MAP()
|
||||
};
|
||||
|
||||
//{{AFX_INSERT_LOCATION}}
|
||||
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
|
||||
|
||||
#endif // !defined(AFX_PMERGE_H__3AC42F52_D7CA_11D1_B01A_000000000000__INCLUDED_)
|
||||
Reference in a new issue