root/trunk/ImportPathPage.h

Revision 5, 1.5 kB (checked in by qbert, 6 years ago)

Initial ( and last :( ) commit

Line 
1 #if !defined(AFX_IMPORTPATHPAGE_H__FCFE17AB_2A4B_47CA_856C_83C0B2D1674E__INCLUDED_)
2 #define AFX_IMPORTPATHPAGE_H__FCFE17AB_2A4B_47CA_856C_83C0B2D1674E__INCLUDED_
3
4 #if _MSC_VER > 1000
5 #pragma once
6 #endif // _MSC_VER > 1000
7 // ImportPathPage.h : header file
8 //
9 #include "GUIComponents/GenericChildDialog.h"
10 /////////////////////////////////////////////////////////////////////////////
11 // CImportPathPage dialog
12
13 class CImportPathPage : public CRHGenericChildDialog
14 {
15 // Construction
16 public:
17     CImportPathPage(CWnd* pParent = NULL);   // standard constructor
18     CLinkerSettingsPage(CWnd* pParent = NULL);   // standard constructor
19 virtual int CRHGetDialogID() { return IDD;
20     }
21 // Dialog Data
22     //{{AFX_DATA(CImportPathPage)
23     enum { IDD = IDD_IMPORTPATH_DLG };
24     CXTButton   m_remove;
25     CXTButton   m_add;
26     CListCtrl   m_importPaths;
27     //}}AFX_DATA
28     string m_original;
29
30 // Overrides
31     // ClassWizard generated virtual function overrides
32     //{{AFX_VIRTUAL(CImportPathPage)
33     protected:
34     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
35     //}}AFX_VIRTUAL
36     public:
37        
38         void Save();
39 // Implementation
40 protected:
41
42     // Generated message map functions
43     //{{AFX_MSG(CImportPathPage)
44     virtual BOOL OnInitDialog();
45     afx_msg void OnAdd();
46     afx_msg void OnRemove();
47     //}}AFX_MSG
48     DECLARE_MESSAGE_MAP()
49 };
50
51 //{{AFX_INSERT_LOCATION}}
52 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
53
54 #endif // !defined(AFX_IMPORTPATHPAGE_H__FCFE17AB_2A4B_47CA_856C_83C0B2D1674E__INCLUDED_)
Note: See TracBrowser for help on using the browser.