source: win32/admin/PropPaths.h @ abe53d3

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

More work on config manager

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