CB32 1.2 sources
This commit is contained in:
parent
cf25bc7627
commit
fd87f89a19
100 changed files with 14543 additions and 0 deletions
53
PropInfo.h
Normal file
53
PropInfo.h
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
// PropInfo.h : header file
|
||||
//
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// CPropInfo
|
||||
#include "PropAdd.h"
|
||||
#include "PropComp.h"
|
||||
#include "PropPhone.h"
|
||||
#include "PropOnline.h"
|
||||
#include "PropNote.h"
|
||||
|
||||
class CPropInfo : public CPropertySheet
|
||||
{
|
||||
DECLARE_DYNAMIC(CPropInfo)
|
||||
|
||||
// Construction
|
||||
public:
|
||||
CPropInfo(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
|
||||
CPropInfo(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
|
||||
|
||||
protected:
|
||||
|
||||
// Attributes
|
||||
public:
|
||||
CPropAdd m_propadd;
|
||||
CPropComp m_propcomp;
|
||||
CPropPhone m_propphone;
|
||||
CPropOnline m_proponline;
|
||||
CPropNote m_propnote;
|
||||
|
||||
// Operations
|
||||
public:
|
||||
|
||||
// Overrides
|
||||
// ClassWizard generated virtual function overrides
|
||||
//{{AFX_VIRTUAL(CPropInfo)
|
||||
//}}AFX_VIRTUAL
|
||||
|
||||
// Implementation
|
||||
public:
|
||||
virtual ~CPropInfo();
|
||||
void AddControlPages(void);
|
||||
|
||||
// Generated message map functions
|
||||
protected:
|
||||
HICON m_hIcon;
|
||||
|
||||
//{{AFX_MSG(CPropInfo)
|
||||
//}}AFX_MSG
|
||||
DECLARE_MESSAGE_MAP()
|
||||
};
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
Reference in a new issue