source: win32/PropPaths.h @ d1d6776

Last change on this file since d1d6776 was d1d6776, checked in by Jelmer Vernooij <jelmer@…>, at 2005-11-07T16:20:37Z

Import win32 branch

  • Property mode set to 100644
File size: 1.3 KB
Line 
1#if !defined(AFX_PROPPATHS_H__693C8F02_C150_45DD_99F1_F824795E98C9__INCLUDED_)
2#define AFX_PROPPATHS_H__693C8F02_C150_45DD_99F1_F824795E98C9__INCLUDED_
3
4#if _MSC_VER >= 1000
5#pragma once
6#endif // _MSC_VER >= 1000
7// PropPaths.h : header file
8//
9
10/////////////////////////////////////////////////////////////////////////////
11// CPropPaths dialog
12
13class CPropPaths : public CPropertyPage
14{
15// Construction
16public:
17        CPropPaths();   // standard constructor
18
19// Dialog Data
20        //{{AFX_DATA(CPropPaths)
21        enum { IDD = IDD_PROPPAGE_PATHS };
22        CEdit   m_motdfile;
23        CButton m_edit_motd;
24        CEdit   m_configdir;
25        CButton m_browse_motd;
26        CButton m_browse_config;
27        //}}AFX_DATA
28
29
30// Overrides
31        // ClassWizard generated virtual function overrides
32        //{{AFX_VIRTUAL(CPropPaths)
33        public:
34        virtual void OnOK();
35        protected:
36        virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
37        //}}AFX_VIRTUAL
38
39// Implementation
40protected:
41
42        // Generated message map functions
43        //{{AFX_MSG(CPropPaths)
44        afx_msg void OnBrowseConfig();
45        afx_msg void OnBrowseMotd();
46        afx_msg void OnEditMotd();
47        virtual BOOL OnInitDialog();
48        //}}AFX_MSG
49        DECLARE_MESSAGE_MAP()
50};
51
52//{{AFX_INSERT_LOCATION}}
53// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
54
55#endif // !defined(AFX_PROPPATHS_H__693C8F02_C150_45DD_99F1_F824795E98C9__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.