OSDN Git Service

Build Log Dlg Okay
[tortoisegit/TortoiseGitJp.git] / TortoiseProc / Settings / SetProxyPage.h
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2008 - TortoiseSVN\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #pragma once\r
20 \r
21 #include "SettingsPropPage.h"\r
22 #include "Tooltip.h"\r
23 #include "Registry.h"\r
24 #include "FileDropEdit.h"\r
25 \r
26 \r
27 /**\r
28  * \ingroup TortoiseProc\r
29  * This is the Proxy page of the settings dialog. It gives the user the\r
30  * possibility to set the proxy settings for subversion clients.\r
31  */\r
32 class CSetProxyPage : public ISettingsPropPage\r
33 {\r
34         DECLARE_DYNAMIC(CSetProxyPage)\r
35 \r
36 public:\r
37         CSetProxyPage();\r
38         virtual ~CSetProxyPage();\r
39 \r
40         UINT GetIconID() {return IDI_PROXY;}\r
41 \r
42         enum { IDD = IDD_SETTINGSPROXY };\r
43 \r
44 protected:\r
45         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support\r
46         virtual BOOL OnApply();\r
47         virtual BOOL OnInitDialog();\r
48         virtual BOOL PreTranslateMessage(MSG* pMsg);\r
49         afx_msg void OnChange();\r
50         afx_msg void OnBnClickedEnable();\r
51         afx_msg void OnBnClickedSshbrowse();\r
52         afx_msg void OnBnClickedEditservers();\r
53 \r
54         void EnableGroup(BOOL b);\r
55 \r
56         DECLARE_MESSAGE_MAP()\r
57 private:\r
58         CToolTips       m_tooltips;\r
59         CString         m_serveraddress;\r
60         CRegString      m_regServeraddress;\r
61         CRegString      m_regServeraddress_copy;\r
62         UINT            m_serverport;\r
63         CRegString      m_regServerport;\r
64         CRegString      m_regServerport_copy;\r
65         CString         m_username;\r
66         CRegString      m_regUsername;\r
67         CRegString      m_regUsername_copy;\r
68         CString         m_password;\r
69         CRegString      m_regPassword;\r
70         CRegString      m_regPassword_copy;\r
71         UINT            m_timeout;\r
72         CRegString      m_regTimeout;\r
73         CRegString      m_regTimeout_copy;\r
74         BOOL            m_isEnabled;\r
75         CRegString      m_regSSHClient;\r
76         CString         m_SSHClient;\r
77         CRegString      m_regExceptions;\r
78         CRegString      m_regExceptions_copy;\r
79         CString         m_Exceptions;\r
80         CFileDropEdit m_cSSHClientEdit;\r
81 };\r