summaryrefslogtreecommitdiff
path: root/win/Propspgs.h
diff options
context:
space:
mode:
authordocwhat1999-11-14 06:43:18 +0000
committerdocwhat1999-11-14 06:43:18 +0000
commitd71eec8062e852e56f03102ba4b4e87dc485821d (patch)
tree452368ad0e7e24627e517a0c88c2508d02cea6dc /win/Propspgs.h
parent2046090b7ce8dd901ce43e650be5acf44016d714 (diff)
Initial revision
git-svn-id: http://svn.leocad.org/trunk@2 c7d43263-9d01-0410-8a33-9dba5d9f93d6
Diffstat (limited to 'win/Propspgs.h')
-rw-r--r--win/Propspgs.h126
1 files changed, 126 insertions, 0 deletions
diff --git a/win/Propspgs.h b/win/Propspgs.h
new file mode 100644
index 0000000..0b78683
--- /dev/null
+++ b/win/Propspgs.h
@@ -0,0 +1,126 @@
+// PropsPgs.h : header file
+//
+
+#ifndef __PROPSPGS_H__
+#define __PROPSPGS_H__
+
+/////////////////////////////////////////////////////////////////////////////
+// CPropertiesGeneral dialog
+
+class CPropertiesGeneral : public CPropertyPage
+{
+ DECLARE_DYNCREATE(CPropertiesGeneral)
+
+// Construction
+public:
+ CString m_strFilename;
+ CPropertiesGeneral();
+ ~CPropertiesGeneral();
+
+// Dialog Data
+ //{{AFX_DATA(CPropertiesGeneral)
+ enum { IDD = IDD_PROPGENERAL };
+ // NOTE - ClassWizard will add data members here.
+ // DO NOT EDIT what you see in these blocks of generated code !
+ //}}AFX_DATA
+
+
+// Overrides
+ // ClassWizard generate virtual function overrides
+ //{{AFX_VIRTUAL(CPropertiesGeneral)
+ protected:
+ virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
+ //}}AFX_VIRTUAL
+
+// Implementation
+protected:
+ // Generated message map functions
+ //{{AFX_MSG(CPropertiesGeneral)
+ virtual BOOL OnInitDialog();
+ //}}AFX_MSG
+ DECLARE_MESSAGE_MAP()
+
+};
+
+
+/////////////////////////////////////////////////////////////////////////////
+// CPropertiesSummary dialog
+
+class CPropertiesSummary : public CPropertyPage
+{
+ DECLARE_DYNCREATE(CPropertiesSummary)
+
+// Construction
+public:
+ CPropertiesSummary();
+ ~CPropertiesSummary();
+
+// Dialog Data
+ //{{AFX_DATA(CPropertiesSummary)
+ enum { IDD = IDD_PROPSUMMARY };
+ CString m_strAuthor;
+ CString m_strComments;
+ CString m_strDescription;
+ //}}AFX_DATA
+
+
+// Overrides
+ // ClassWizard generate virtual function overrides
+ //{{AFX_VIRTUAL(CPropertiesSummary)
+ protected:
+ virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
+ //}}AFX_VIRTUAL
+
+// Implementation
+protected:
+ // Generated message map functions
+ //{{AFX_MSG(CPropertiesSummary)
+ // NOTE: the ClassWizard will add member functions here
+ //}}AFX_MSG
+ DECLARE_MESSAGE_MAP()
+
+};
+
+
+/////////////////////////////////////////////////////////////////////////////
+// CPropertiesPieces dialog
+
+class CPropertiesPieces : public CPropertyPage
+{
+ DECLARE_DYNCREATE(CPropertiesPieces)
+
+// Construction
+public:
+ CPropertiesPieces();
+ ~CPropertiesPieces();
+ char** names;
+ unsigned short* count;
+ int lines;
+
+// Dialog Data
+ //{{AFX_DATA(CPropertiesPieces)
+ enum { IDD = IDD_PROPPIECES };
+ CListCtrl m_List;
+ //}}AFX_DATA
+
+
+// Overrides
+ // ClassWizard generate virtual function overrides
+ //{{AFX_VIRTUAL(CPropertiesPieces)
+ protected:
+ virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
+ //}}AFX_VIRTUAL
+
+// Implementation
+protected:
+ // Generated message map functions
+ //{{AFX_MSG(CPropertiesPieces)
+ virtual BOOL OnInitDialog();
+ //}}AFX_MSG
+ DECLARE_MESSAGE_MAP()
+
+};
+
+
+
+#endif // __PROPSPGS_H__