source: win32/admin/PropAccess.h @ f56c491

Last change on this file since f56c491 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
Line 
1#if !defined(AFX_PROPACCESS_H__0AC45777_B43C_4467_91FF_391DFD582057__INCLUDED_)
2#define AFX_PROPACCESS_H__0AC45777_B43C_4467_91FF_391DFD582057__INCLUDED_
3
4#if _MSC_VER >= 1000
5#pragma once
6#endif // _MSC_VER >= 1000
7// PropAccess.h : header file
8//
9
10#include <afxdlgs.h>
11#include "Resource.h"
12
13/////////////////////////////////////////////////////////////////////////////
14// CPropAccess dialog
15
16class CPropAccess : public CPropertyPage
17{
18// Construction
19public:
20        CPropAccess();   // standard constructor
21
22// Dialog Data
23        //{{AFX_DATA(CPropAccess)
24        enum { IDD = IDD_PROPPAGE_ACCESS };
25        CButton m_auth_registered;
26        CButton m_auth_open;
27        CButton m_auth_closed;
28        CEdit   m_password;
29        CEdit   m_port;
30        CEdit   m_interface;
31        //}}AFX_DATA
32
33
34// Overrides
35        // ClassWizard generated virtual function overrides
36        //{{AFX_VIRTUAL(CPropAccess)
37        public:
38        virtual void OnOK();
39        protected:
40        virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
41        //}}AFX_VIRTUAL
42
43// Implementation
44protected:
45
46        // Generated message map functions
47        //{{AFX_MSG(CPropAccess)
48        afx_msg void OnAuthRegistered();
49        afx_msg void OnAuthOpen();
50        afx_msg void OnAuthClosed();
51        virtual BOOL OnInitDialog();
52        //}}AFX_MSG
53        DECLARE_MESSAGE_MAP()
54};
55
56//{{AFX_INSERT_LOCATION}}
57// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
58
59#endif // !defined(AFX_PROPACCESS_H__0AC45777_B43C_4467_91FF_391DFD582057__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.