some spaces-tabs code cleanup
[TortoiseGit.git] / src / TortoiseProc / PushDlg.cpp
blob688afa7f02c2a27e83691b96707b02a03e0b4051
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2011 - TortoiseGit
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.
20 // PushDlg.cpp : implementation file
23 #include "stdafx.h"
24 #include "TortoiseProc.h"
25 #include "PushDlg.h"
27 #include "Git.h"
28 #include "registry.h"
29 #include "AppUtils.h"
30 #include "BrowseRefsDlg.h"
31 #include "MessageBox.h"
33 // CPushDlg dialog
35 IMPLEMENT_DYNAMIC(CPushDlg, CHorizontalResizableStandAloneDialog)
37 CPushDlg::CPushDlg(CWnd* pParent /*=NULL*/)
38 : CHorizontalResizableStandAloneDialog(CPushDlg::IDD, pParent)
39 , m_bPushAllBranches(FALSE)
40 , m_bForce(FALSE)
41 , m_bPack(FALSE)
42 , m_bTags(FALSE)
43 , m_bAutoLoad(FALSE)
45 m_bAutoLoad = CAppUtils::IsSSHPutty();
48 CPushDlg::~CPushDlg()
52 void CPushDlg::DoDataExchange(CDataExchange* pDX)
54 CHorizontalResizableStandAloneDialog::DoDataExchange(pDX);
55 DDX_Control(pDX, IDC_BRANCH_REMOTE, this->m_BranchRemote);
56 DDX_Control(pDX, IDC_BRANCH_SOURCE, this->m_BranchSource);
57 DDX_Control(pDX, IDC_REMOTE, this->m_Remote);
58 DDX_Control(pDX, IDC_URL, this->m_RemoteURL);
59 DDX_Check(pDX,IDC_FORCE,this->m_bForce);
60 DDX_Check(pDX,IDC_PUSHALL,this->m_bPushAllBranches);
61 DDX_Check(pDX,IDC_PACK,this->m_bPack);
62 DDX_Check(pDX,IDC_TAGS,this->m_bTags);
63 DDX_Check(pDX,IDC_PUTTYKEY_AUTOLOAD,this->m_bAutoLoad);
66 BEGIN_MESSAGE_MAP(CPushDlg, CHorizontalResizableStandAloneDialog)
67 ON_BN_CLICKED(IDC_RD_REMOTE, &CPushDlg::OnBnClickedRd)
68 ON_BN_CLICKED(IDC_RD_URL, &CPushDlg::OnBnClickedRd)
69 ON_CBN_SELCHANGE(IDC_BRANCH_SOURCE, &CPushDlg::OnCbnSelchangeBranchSource)
70 ON_BN_CLICKED(IDOK, &CPushDlg::OnBnClickedOk)
71 ON_BN_CLICKED(IDC_REMOTE_MANAGE, &CPushDlg::OnBnClickedRemoteManage)
72 ON_BN_CLICKED(IDC_BUTTON_BROWSE_SOURCE_BRANCH, &CPushDlg::OnBnClickedButtonBrowseSourceBranch)
73 ON_BN_CLICKED(IDC_BUTTON_BROWSE_DEST_BRANCH, &CPushDlg::OnBnClickedButtonBrowseDestBranch)
74 ON_BN_CLICKED(IDC_PUSHALL, &CPushDlg::OnBnClickedPushall)
75 END_MESSAGE_MAP()
77 BOOL CPushDlg::OnInitDialog()
79 CHorizontalResizableStandAloneDialog::OnInitDialog();
80 CAppUtils::MarkWindowAsUnpinnable(m_hWnd);
82 AddAnchor(IDOK,BOTTOM_RIGHT);
83 AddAnchor(IDCANCEL,BOTTOM_RIGHT);
84 AddAnchor(IDC_BRANCH_GROUP, TOP_LEFT,TOP_RIGHT);
85 AddAnchor(IDC_STATIC_REMOTE, TOP_LEFT);
86 AddAnchor(IDC_STATIC_SOURCE, TOP_LEFT);
88 AddAnchor(IDC_PUSHALL, TOP_LEFT);
89 AddAnchor(IDC_BRANCH_REMOTE, TOP_LEFT, TOP_RIGHT);
90 AddAnchor(IDC_BUTTON_BROWSE_DEST_BRANCH, TOP_RIGHT);
91 AddAnchor(IDC_BRANCH_SOURCE, TOP_LEFT, TOP_RIGHT);
92 AddAnchor(IDC_BUTTON_BROWSE_SOURCE_BRANCH, TOP_RIGHT);
94 AddAnchor(IDC_URL_GROUP, TOP_LEFT,TOP_RIGHT);
95 AddAnchor(IDC_RD_REMOTE, TOP_LEFT);
96 AddAnchor(IDC_RD_URL, TOP_LEFT);
98 AddAnchor(IDC_REMOTE, TOP_LEFT, TOP_RIGHT);
100 AddAnchor(IDC_URL, TOP_LEFT,TOP_RIGHT);
102 AddAnchor(IDC_OPTION_GROUP, TOP_LEFT,TOP_RIGHT);
104 AddAnchor(IDC_FORCE, TOP_LEFT);
105 AddAnchor(IDC_PACK, TOP_LEFT);
106 AddAnchor(IDC_TAGS, TOP_LEFT);
107 AddAnchor(IDC_PUTTYKEY_AUTOLOAD,TOP_LEFT);
109 AddAnchor(IDC_REMOTE_MANAGE,TOP_RIGHT);
110 AddAnchor(IDHELP, BOTTOM_RIGHT);
112 AddOthersToAnchor();
114 CString sWindowTitle;
115 GetWindowText(sWindowTitle);
116 CAppUtils::SetWindowTitle(m_hWnd, g_Git.m_CurrentDir, sWindowTitle);
118 this->GetDlgItem(IDC_PUTTYKEY_AUTOLOAD)->EnableWindow(CAppUtils::IsSSHPutty());
120 EnableSaveRestore(_T("PushDlg"));
122 m_RemoteURL.SetURLHistory(TRUE);
124 CString WorkingDir=g_Git.m_CurrentDir;
125 WorkingDir.Replace(_T(':'),_T('_'));
126 m_RemoteURL.LoadHistory(CString(_T("Software\\TortoiseGit\\History\\PushURLS\\"))+WorkingDir, _T("url"));
127 CString clippath=CAppUtils::GetClipboardLink();
128 if(clippath.IsEmpty())
129 m_RemoteURL.SetCurSel(0);
130 else
131 m_RemoteURL.SetWindowText(clippath);
133 m_RemoteURL.EnableWindow(FALSE);
134 CheckRadioButton(IDC_RD_REMOTE,IDC_RD_URL,IDC_RD_REMOTE);
137 this->m_regAutoLoad = CRegDWORD(CString(_T("Software\\TortoiseGit\\History\\PushDlgAutoLoad\\"))+WorkingDir,
138 m_bAutoLoad);
139 m_bAutoLoad = this->m_regAutoLoad;
140 if(!CAppUtils::IsSSHPutty())
141 m_bAutoLoad = false;
143 Refresh();
146 //m_BranchRemote.SetWindowTextW(m_BranchSource.GetString());
148 this->UpdateData(false);
149 return TRUE;
152 void CPushDlg::Refresh()
154 CString WorkingDir=g_Git.m_CurrentDir;
155 WorkingDir.Replace(_T(':'),_T('_'));
157 CRegString remote(CString(_T("Software\\TortoiseGit\\History\\PushRemote\\")+WorkingDir));
158 m_RemoteReg = remote;
159 int sel=0;
161 CString currentBranch = g_Git.GetSymbolicRef();
162 CString configName;
164 configName.Format(L"branch.%s.pushremote", currentBranch);
165 CString pushRemote = g_Git.GetConfigValue(configName);
166 if( pushRemote.IsEmpty() )
168 configName.Format(L"branch.%s.remote", currentBranch);
169 pushRemote = g_Git.GetConfigValue(configName);
172 if( !pushRemote.IsEmpty() )
173 remote=pushRemote;
175 //Select pull-branch from current branch
176 configName.Format(L"branch.%s.pushbranch", currentBranch);
177 CString pushBranch = CGit::StripRefName(g_Git.GetConfigValue(configName));
178 if( pushBranch.IsEmpty() )
180 configName.Format(L"branch.%s.merge", currentBranch);
181 pushBranch = CGit::StripRefName(g_Git.GetConfigValue(configName));
184 STRING_VECTOR list;
185 m_Remote.Reset();
187 if(!g_Git.GetRemoteList(list))
189 for(unsigned int i=0;i<list.size();i++)
191 m_Remote.AddString(list[i]);
192 if(list[i] == remote)
193 sel = i;
196 m_Remote.SetCurSel(sel);
198 int current=0;
199 list.clear();
200 m_BranchSource.Reset();
201 m_BranchSource.SetMaxHistoryItems(0x7FFFFFFF);
202 if(!g_Git.GetBranchList(list,&current))
204 for(unsigned int i=0;i<list.size();i++)
205 m_BranchSource.AddString(list[i]);
207 m_BranchSource.SetCurSel(current);
209 m_BranchRemote.LoadHistory(CString(_T("Software\\TortoiseGit\\History\\RemoteBranch\\"))+WorkingDir, _T("branch"));
210 if( !pushBranch.IsEmpty() )
212 m_BranchRemote.AddString(pushBranch);
215 else
216 m_BranchRemote.SetCurSel(-1);
219 // CPushDlg message handlers
221 void CPushDlg::OnBnClickedRd()
223 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_REMOTE)
225 m_Remote.EnableWindow(TRUE);
226 GetDlgItem(IDC_REMOTE_MANAGE)->EnableWindow(TRUE);
227 m_RemoteURL.EnableWindow(FALSE);
229 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_URL)
231 m_Remote.EnableWindow(FALSE);
232 GetDlgItem(IDC_REMOTE_MANAGE)->EnableWindow(FALSE);
233 m_RemoteURL.EnableWindow(TRUE);
238 void CPushDlg::OnCbnSelchangeBranchSource()
240 m_BranchRemote.AddString(m_BranchSource.GetString());
243 void CPushDlg::OnBnClickedOk()
245 CHorizontalResizableStandAloneDialog::UpdateData(TRUE);
247 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_REMOTE)
249 m_URL=m_Remote.GetString();
251 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_URL)
253 m_URL=m_RemoteURL.GetString();
256 if (!m_bPushAllBranches)
258 this->m_BranchRemoteName=m_BranchRemote.GetString().Trim();
259 this->m_BranchSourceName=m_BranchSource.GetString();
261 if(!m_BranchRemoteName.IsEmpty() && !g_Git.IsBranchNameValid(this->m_BranchRemoteName))
263 CMessageBox::Show(NULL, IDS_B_T_NOTEMPTY, IDS_TORTOISEGIT, MB_OK);
264 return;
267 this->m_RemoteURL.SaveHistory();
268 this->m_BranchRemote.SaveHistory();
269 m_RemoteReg = m_Remote.GetString();
272 this->m_regAutoLoad = m_bAutoLoad ;
274 CHorizontalResizableStandAloneDialog::OnOK();
277 void CPushDlg::OnBnClickedRemoteManage()
279 CAppUtils::LaunchRemoteSetting();
280 Refresh();
283 void CPushDlg::OnBnClickedButtonBrowseSourceBranch()
285 if(CBrowseRefsDlg::PickRefForCombo(&m_BranchSource, gPickRef_Head))
286 OnCbnSelchangeBranchSource();
289 void CPushDlg::OnBnClickedButtonBrowseDestBranch()
291 CString remoteBranchName;
292 CString remoteName;
293 m_BranchRemote.GetWindowText(remoteBranchName);
294 remoteName = m_Remote.GetString();
295 remoteBranchName = remoteName + '/' + remoteBranchName;
296 remoteBranchName = CBrowseRefsDlg::PickRef(false, remoteBranchName, gPickRef_Remote);
297 if(remoteBranchName.IsEmpty())
298 return; //Canceled
299 remoteBranchName = remoteBranchName.Mid(13);//Strip 'refs/remotes/'
300 int slashPlace = remoteBranchName.Find('/');
301 remoteName = remoteBranchName.Left(slashPlace);
302 remoteBranchName = remoteBranchName.Mid(slashPlace + 1); //Strip remote name (for example 'origin/')
304 //Select remote
305 int remoteSel = m_Remote.FindStringExact(0,remoteName);
306 if(remoteSel >= 0)
307 m_Remote.SetCurSel(remoteSel);
309 //Select branch
310 m_BranchRemote.AddString(remoteBranchName);
313 BOOL CPushDlg::PreTranslateMessage(MSG* pMsg)
315 if (pMsg->message == WM_KEYDOWN)
317 switch (pMsg->wParam)
319 case VK_F5:
321 Refresh();
323 break;
327 return CHorizontalResizableStandAloneDialog::PreTranslateMessage(pMsg);
330 void CPushDlg::OnBnClickedPushall()
332 this->UpdateData();
333 this->GetDlgItem(IDC_BRANCH_REMOTE)->EnableWindow(!m_bPushAllBranches);
334 this->GetDlgItem(IDC_BRANCH_SOURCE)->EnableWindow(!m_bPushAllBranches);
335 this->GetDlgItem(IDC_BUTTON_BROWSE_SOURCE_BRANCH)->EnableWindow(!m_bPushAllBranches);
336 this->GetDlgItem(IDC_BUTTON_BROWSE_DEST_BRANCH)->EnableWindow(!m_bPushAllBranches);
337 this->GetDlgItem(IDC_TAGS)->EnableWindow(!m_bPushAllBranches);
338 if (m_bTags && m_bPushAllBranches)
340 m_bTags = FALSE;
341 UpdateData(FALSE);