Move prune (all remotes) setting to git config page
[TortoiseGit.git] / src / TortoiseProc / Settings / SetProxyPage.h
blob90f4466bc315067f47687dca849c9d649a6dcebf
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2008 - TortoiseSVN
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #pragma once
21 #include "SettingsPropPage.h"
22 #include "registry.h"
23 #include "FileDropEdit.h"
26 /**
27 * \ingroup TortoiseProc
28 * This is the Proxy page of the settings dialog. It gives the user the
29 * possibility to set the proxy settings for git clients.
31 class CSetProxyPage : public ISettingsPropPage
33 DECLARE_DYNAMIC(CSetProxyPage)
35 public:
36 CSetProxyPage();
37 virtual ~CSetProxyPage();
39 UINT GetIconID() override { return IDI_PROXY; }
41 enum { IDD = IDD_SETTINGSPROXY };
43 protected:
44 virtual void DoDataExchange(CDataExchange* pDX) override; // DDX/DDV support
45 virtual BOOL OnApply() override;
46 virtual BOOL OnInitDialog() override;
47 afx_msg void OnChange();
48 afx_msg void OnBnClickedEnable();
49 afx_msg void OnBnClickedSshbrowse();
51 void EnableGroup(BOOL b);
53 DECLARE_MESSAGE_MAP()
55 private:
56 CString m_serveraddress;
57 CRegString m_regServeraddress;
58 UINT m_serverport;
59 CRegString m_regServerport;
60 CString m_username;
61 CRegString m_regUsername;
62 CString m_password;
63 CRegString m_regPassword;
64 BOOL m_isEnabled;
65 CRegString m_regSSHClient;
66 CString m_SSHClient;
67 CFileDropEdit m_cSSHClientEdit;