From d71eec8062e852e56f03102ba4b4e87dc485821d Mon Sep 17 00:00:00 2001 From: docwhat Date: Sun, 14 Nov 1999 06:43:18 +0000 Subject: Initial revision git-svn-id: http://svn.leocad.org/trunk@2 c7d43263-9d01-0410-8a33-9dba5d9f93d6 --- win/Propspgs.h | 126 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 win/Propspgs.h (limited to 'win/Propspgs.h') 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__ -- cgit v1.2.3