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