mirror of
https://github.com/leozide/leocad
synced 2024-12-30 22:23:45 +01:00
50 lines
1 KiB
C++
50 lines
1 KiB
C++
// PropsSht.h : header file
|
|
//
|
|
// This class defines custom modal property sheet
|
|
// CPropertiesSheet.
|
|
|
|
#ifndef __PROPSSHT_H__
|
|
#define __PROPSSHT_H__
|
|
|
|
#include "PropsPgs.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPropertiesSheet
|
|
|
|
class CPropertiesSheet : public CPropertySheet
|
|
{
|
|
DECLARE_DYNAMIC(CPropertiesSheet)
|
|
|
|
// Construction
|
|
public:
|
|
CPropertiesSheet(CWnd* pWndParent = NULL);
|
|
|
|
// Attributes
|
|
public:
|
|
CPropertiesGeneral m_PageGeneral;
|
|
CPropertiesSummary m_PageSummary;
|
|
CPropertiesPieces m_PagePieces;
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CPropertiesSheet)
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~CPropertiesSheet();
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(CPropertiesSheet)
|
|
// NOTE - the ClassWizard will add and remove member functions here.
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif // __PROPSSHT_H__
|