source: win32/admin/PropConn.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.5 KB
Line 
1#if !defined(AFX_PROPCONN_H__8969671F_8D9F_45E9_929F_B36CFEFCBAA2__INCLUDED_)
2#define AFX_PROPCONN_H__8969671F_8D9F_45E9_929F_B36CFEFCBAA2__INCLUDED_
3
4#if _MSC_VER >= 1000
5#pragma once
6#endif // _MSC_VER >= 1000
7// PropConn.h : header file
8//
9
10#include <afxdlgs.h>
11#include "Resource.h"
12
13/////////////////////////////////////////////////////////////////////////////
14// CPropConn dialog
15
16class CPropConn : public CPropertyPage
17{
18// Construction
19public:
20        CPropConn(CWnd* pParent = NULL);   // standard constructor
21
22// Dialog Data
23        //{{AFX_DATA(CPropConn)
24        enum { IDD = IDD_PROPPAGE_CONNECTION };
25        CEdit   m_proxyport;
26        CListBox        m_proxytype;
27        CButton m_proxy_enabled;
28        CButton m_proxy_auth_enabled;
29        CEdit   m_proxypass;
30        CEdit   m_proxyhost;
31        CEdit   m_proxyuser;
32        //}}AFX_DATA
33
34
35// Overrides
36        // ClassWizard generated virtual function overrides
37        //{{AFX_VIRTUAL(CPropConn)
38        public:
39        virtual void OnOK();
40        protected:
41        virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
42        //}}AFX_VIRTUAL
43
44// Implementation
45protected:
46
47        // Generated message map functions
48        //{{AFX_MSG(CPropConn)
49        afx_msg void OnProxyAuthEnabled();
50        afx_msg void OnProxyEnabled();
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_PROPCONN_H__8969671F_8D9F_45E9_929F_B36CFEFCBAA2__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.