root/trunk/FileExtensionsPage.h

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

Initial ( and last :( ) commit

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