source: win32/PropConn.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_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/////////////////////////////////////////////////////////////////////////////
11// CPropConn dialog
12
13class CPropConn : public CPropertyPage
14{
15// Construction
16public:
17        CPropConn(CWnd* pParent = NULL);   // standard constructor
18
19// Dialog Data
20        //{{AFX_DATA(CPropConn)
21        enum { IDD = IDD_PROPPAGE_CONNECTION };
22        CEdit   m_proxyport;
23        CListBox        m_proxytype;
24        CButton m_proxy_enabled;
25        CButton m_proxy_auth_enabled;
26        CEdit   m_proxypass;
27        CEdit   m_proxyhost;
28        CEdit   m_proxyuser;
29        //}}AFX_DATA
30
31
32// Overrides
33        // ClassWizard generated virtual function overrides
34        //{{AFX_VIRTUAL(CPropConn)
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(CPropConn)
46        afx_msg void OnProxyAuthEnabled();
47        afx_msg void OnProxyEnabled();
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_PROPCONN_H__8969671F_8D9F_45E9_929F_B36CFEFCBAA2__INCLUDED_)
Note: See TracBrowser for help on using the repository browser.