summaryrefslogtreecommitdiff
path: root/win/propssht.h
diff options
context:
space:
mode:
authordocwhat1999-11-14 06:43:18 +0000
committerdocwhat1999-11-14 06:43:18 +0000
commitd71eec8062e852e56f03102ba4b4e87dc485821d (patch)
tree452368ad0e7e24627e517a0c88c2508d02cea6dc /win/propssht.h
parent2046090b7ce8dd901ce43e650be5acf44016d714 (diff)
Initial revision
git-svn-id: http://svn.leocad.org/trunk@2 c7d43263-9d01-0410-8a33-9dba5d9f93d6
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__