summaryrefslogtreecommitdiff
path: root/win/propssht.h
diff options
context:
space:
mode:
Diffstat (limited to 'win/propssht.h')
-rw-r--r--win/propssht.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/win/propssht.h b/win/propssht.h
new file mode 100644
index 0000000..884f43a
--- /dev/null
+++ b/win/propssht.h
@@ -0,0 +1,50 @@
+// 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__