root/trunk/ConfigureToolsDlg.h

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

Initial ( and last :( ) commit

Line 
1 #if !defined(AFX_CONFIGURETOOLSDLG_H__65092864_7E9D_4254_B975_65AFC6BCE530__INCLUDED_)
2 #define AFX_CONFIGURETOOLSDLG_H__65092864_7E9D_4254_B975_65AFC6BCE530__INCLUDED_
3
4 #if _MSC_VER > 1000
5 #pragma once
6 #endif // _MSC_VER > 1000
7 // ConfigureToolsDlg.h : header file
8 //
9
10 /////////////////////////////////////////////////////////////////////////////
11 // CConfigureToolsDlg dialog
12
13 class CConfigureToolsDlg : public CXTResizeDialog
14 {
15 // Construction
16 public:
17     CConfigureToolsDlg(CWnd* pParent = NULL);   // standard constructor
18
19 // Dialog Data
20     //{{AFX_DATA(CConfigureToolsDlg)
21     enum { IDD = IDD_CONFIGURETOOLS_DIALOG };
22     CXTButton   m_close;
23     CStatic m_s2;
24     CStatic m_s1;
25     CListCtrl   m_constants;
26     CListCtrl   m_tools;
27     CElephantEdit   m_command;
28     CElephantEdit   m_name;
29     CXTButton   m_browse;
30     CXTButton   m_remove;
31     CXTButton   m_add;
32     CString m_csCommand;
33     CString m_csName;
34     BOOL    m_captureOutput;
35     //}}AFX_DATA
36
37 void InitConstants();
38 void InitTools();
39 // Overrides
40     // ClassWizard generated virtual function overrides
41     //{{AFX_VIRTUAL(CConfigureToolsDlg)
42     protected:
43     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
44     //}}AFX_VIRTUAL
45
46 // Implementation
47 protected:
48
49     // Generated message map functions
50     //{{AFX_MSG(CConfigureToolsDlg)
51     virtual BOOL OnInitDialog();
52     afx_msg void OnSize(UINT nType, int cx, int cy);
53     afx_msg void OnDestroy();
54     afx_msg void OnAdd();
55     afx_msg void OnRemove();
56     afx_msg void OnBrowse();
57     afx_msg void OnToolsClick(NMHDR* pNMHDR, LRESULT* pResult);
58     afx_msg void OnClose();
59     //}}AFX_MSG
60     DECLARE_MESSAGE_MAP()
61 };
62
63 //{{AFX_INSERT_LOCATION}}
64 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
65
66 #endif // !defined(AFX_CONFIGURETOOLSDLG_H__65092864_7E9D_4254_B975_65AFC6BCE530__INCLUDED_)
Note: See TracBrowser for help on using the browser.