Fixed blame crash at XP system
[TortoiseGit.git] / src / TortoiseProc / PushDlg.cpp
blob2016fe4e7900c09a92393ebb2c083912c4dce06b
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, CResizableStandAloneDialog)
37 CPushDlg::CPushDlg(CWnd* pParent /*=NULL*/)
38 : CResizableStandAloneDialog(CPushDlg::IDD, pParent)
39 , m_bPushAllBranches(FALSE)
41 m_bAutoLoad = CAppUtils::IsSSHPutty();
44 CPushDlg::~CPushDlg()
48 void CPushDlg::DoDataExchange(CDataExchange* pDX)
50 CResizableStandAloneDialog::DoDataExchange(pDX);
51 DDX_Control(pDX, IDC_BRANCH_REMOTE, this->m_BranchRemote);
52 DDX_Control(pDX, IDC_BRANCH_SOURCE, this->m_BranchSource);
53 DDX_Control(pDX, IDC_REMOTE, this->m_Remote);
54 DDX_Control(pDX, IDC_URL, this->m_RemoteURL);
55 DDX_Check(pDX,IDC_FORCE,this->m_bForce);
56 DDX_Check(pDX,IDC_PUSHALL,this->m_bPushAllBranches);
57 DDX_Check(pDX,IDC_PACK,this->m_bPack);
58 DDX_Check(pDX,IDC_TAGS,this->m_bTags);
59 DDX_Check(pDX,IDC_PUTTYKEY_AUTOLOAD,this->m_bAutoLoad);
62 BEGIN_MESSAGE_MAP(CPushDlg, CResizableStandAloneDialog)
63 ON_BN_CLICKED(IDC_RD_REMOTE, &CPushDlg::OnBnClickedRd)
64 ON_BN_CLICKED(IDC_RD_URL, &CPushDlg::OnBnClickedRd)
65 ON_CBN_SELCHANGE(IDC_BRANCH_SOURCE, &CPushDlg::OnCbnSelchangeBranchSource)
66 ON_BN_CLICKED(IDOK, &CPushDlg::OnBnClickedOk)
67 ON_BN_CLICKED(IDC_REMOTE_MANAGE, &CPushDlg::OnBnClickedRemoteManage)
68 ON_BN_CLICKED(IDC_BUTTON_BROWSE_SOURCE_BRANCH, &CPushDlg::OnBnClickedButtonBrowseSourceBranch)
69 ON_BN_CLICKED(IDC_BUTTON_BROWSE_DEST_BRANCH, &CPushDlg::OnBnClickedButtonBrowseDestBranch)
70 ON_BN_CLICKED(IDC_PUSHALL, &CPushDlg::OnBnClickedPushall)
71 END_MESSAGE_MAP()
73 BOOL CPushDlg::OnInitDialog()
75 CResizableStandAloneDialog::OnInitDialog();
77 AddAnchor(IDOK,BOTTOM_RIGHT);
78 AddAnchor(IDCANCEL,BOTTOM_RIGHT);
79 AddAnchor(IDC_BRANCH_GROUP, TOP_LEFT,TOP_RIGHT);
80 AddAnchor(IDC_STATIC_REMOTE, TOP_RIGHT);
81 AddAnchor(IDC_STATIC_SOURCE, TOP_LEFT);
83 AddAnchor(IDC_PUSHALL, TOP_RIGHT);
84 AddAnchor(IDC_BRANCH_REMOTE, TOP_RIGHT);
85 AddAnchor(IDC_BUTTON_BROWSE_DEST_BRANCH, TOP_RIGHT);
86 AddAnchor(IDC_BRANCH_SOURCE, TOP_LEFT);
87 AddAnchor(IDC_BUTTON_BROWSE_SOURCE_BRANCH, TOP_LEFT);
89 AddAnchor(IDC_URL_GROUP, TOP_LEFT,TOP_RIGHT);
90 AddAnchor(IDC_RD_REMOTE, TOP_LEFT);
91 AddAnchor(IDC_RD_URL, TOP_LEFT);
93 AddAnchor(IDC_REMOTE, TOP_LEFT, TOP_RIGHT);
95 AddAnchor(IDC_URL, TOP_LEFT,TOP_RIGHT);
97 AddAnchor(IDC_OPTION_GROUP, TOP_LEFT,TOP_RIGHT);
99 AddAnchor(IDC_FORCE, TOP_LEFT);
100 AddAnchor(IDC_PACK, TOP_LEFT);
101 AddAnchor(IDC_TAGS, TOP_LEFT);
102 AddAnchor(IDC_PUTTYKEY_AUTOLOAD,TOP_LEFT);
104 AddAnchor(IDC_REMOTE_MANAGE,TOP_RIGHT);
105 AddAnchor(IDHELP, BOTTOM_RIGHT);
107 AddOthersToAnchor();
109 this->GetDlgItem(IDC_PUTTYKEY_AUTOLOAD)->EnableWindow(CAppUtils::IsSSHPutty());
111 EnableSaveRestore(_T("PushDlg"));
113 m_RemoteURL.SetURLHistory(TRUE);
115 CString WorkingDir=g_Git.m_CurrentDir;
116 WorkingDir.Replace(_T(':'),_T('_'));
117 m_RemoteURL.LoadHistory(CString(_T("Software\\TortoiseGit\\History\\PushURLS\\"))+WorkingDir, _T("url"));
118 CString clippath=CAppUtils::GetClipboardLink();
119 if(clippath.IsEmpty())
120 m_RemoteURL.SetCurSel(0);
121 else
122 m_RemoteURL.SetWindowText(clippath);
124 m_RemoteURL.EnableWindow(FALSE);
125 CheckRadioButton(IDC_RD_REMOTE,IDC_RD_URL,IDC_RD_REMOTE);
128 this->m_regAutoLoad = CRegDWORD(CString(_T("Software\\TortoiseGit\\History\\PushDlgAutoLoad\\"))+WorkingDir,
129 m_bAutoLoad);
130 m_bAutoLoad = this->m_regAutoLoad;
131 if(!CAppUtils::IsSSHPutty())
132 m_bAutoLoad = false;
134 Refresh();
137 //m_BranchRemote.SetWindowTextW(m_BranchSource.GetString());
139 this->UpdateData(false);
140 return TRUE;
143 void CPushDlg::Refresh()
145 CString WorkingDir=g_Git.m_CurrentDir;
146 WorkingDir.Replace(_T(':'),_T('_'));
148 CRegString remote(CString(_T("Software\\TortoiseGit\\History\\PushRemote\\")+WorkingDir));
149 m_RemoteReg = remote;
150 int sel=0;
152 CString currentBranch = g_Git.GetSymbolicRef();
153 CString configName;
155 configName.Format(L"branch.%s.pushremote", currentBranch);
156 CString pushRemote = g_Git.GetConfigValue(configName);
157 if( pushRemote.IsEmpty() )
159 configName.Format(L"branch.%s.remote", currentBranch);
160 pushRemote = g_Git.GetConfigValue(configName);
163 if( !pushRemote.IsEmpty() )
164 remote=pushRemote;
166 //Select pull-branch from current branch
167 configName.Format(L"branch.%s.pushbranch", currentBranch);
168 CString pushBranch = CGit::StripRefName(g_Git.GetConfigValue(configName));
169 if( pushBranch.IsEmpty() )
171 configName.Format(L"branch.%s.merge", currentBranch);
172 pushBranch = CGit::StripRefName(g_Git.GetConfigValue(configName));
175 STRING_VECTOR list;
176 m_Remote.Reset();
178 if(!g_Git.GetRemoteList(list))
180 for(unsigned int i=0;i<list.size();i++)
182 m_Remote.AddString(list[i]);
183 if(list[i] == remote)
184 sel = i;
187 m_Remote.SetCurSel(sel);
189 int current=0;
190 list.clear();
191 m_BranchSource.Reset();
192 m_BranchSource.SetMaxHistoryItems(0x7FFFFFFF);
193 if(!g_Git.GetBranchList(list,&current))
195 for(unsigned int i=0;i<list.size();i++)
196 m_BranchSource.AddString(list[i]);
198 m_BranchSource.SetCurSel(current);
200 m_BranchRemote.LoadHistory(CString(_T("Software\\TortoiseGit\\History\\RemoteBranch\\"))+WorkingDir, _T("branch"));
201 if( !pushBranch.IsEmpty() )
203 m_BranchRemote.AddString(pushBranch);
206 else
207 m_BranchRemote.SetCurSel(-1);
210 // CPushDlg message handlers
212 void CPushDlg::OnBnClickedRd()
214 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_REMOTE)
216 m_Remote.EnableWindow(TRUE);
217 GetDlgItem(IDC_REMOTE_MANAGE)->EnableWindow(TRUE);
218 m_RemoteURL.EnableWindow(FALSE);
220 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_URL)
222 m_Remote.EnableWindow(FALSE);
223 GetDlgItem(IDC_REMOTE_MANAGE)->EnableWindow(FALSE);
224 m_RemoteURL.EnableWindow(TRUE);
229 void CPushDlg::OnCbnSelchangeBranchSource()
231 m_BranchRemote.AddString(m_BranchSource.GetString());
234 void CPushDlg::OnBnClickedOk()
236 CResizableStandAloneDialog::UpdateData(TRUE);
238 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_REMOTE)
240 m_URL=m_Remote.GetString();
242 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_URL)
244 m_URL=m_RemoteURL.GetString();
247 if (!m_bPushAllBranches)
249 this->m_BranchRemoteName=m_BranchRemote.GetString().Trim();
250 this->m_BranchSourceName=m_BranchSource.GetString();
252 if(!m_BranchRemoteName.IsEmpty() && !g_Git.IsBranchNameValid(this->m_BranchRemoteName))
254 CMessageBox::Show(NULL, IDS_B_T_NOTEMPTY, IDS_TORTOISEGIT, MB_OK);
255 return;
258 this->m_RemoteURL.SaveHistory();
259 this->m_BranchRemote.SaveHistory();
260 m_RemoteReg = m_Remote.GetString();
263 this->m_regAutoLoad = m_bAutoLoad ;
265 CResizableStandAloneDialog::OnOK();
268 void CPushDlg::OnBnClickedRemoteManage()
270 CAppUtils::LaunchRemoteSetting();
271 Refresh();
274 void CPushDlg::OnBnClickedButtonBrowseSourceBranch()
276 if(CBrowseRefsDlg::PickRefForCombo(&m_BranchSource, gPickRef_Head))
277 OnCbnSelchangeBranchSource();
280 void CPushDlg::OnBnClickedButtonBrowseDestBranch()
282 CString remoteBranchName;
283 CString remoteName;
284 m_BranchRemote.GetWindowText(remoteBranchName);
285 remoteName = m_Remote.GetString();
286 remoteBranchName = remoteName + '/' + remoteBranchName;
287 remoteBranchName = CBrowseRefsDlg::PickRef(false, remoteBranchName, gPickRef_Remote);
288 if(remoteBranchName.IsEmpty())
289 return; //Canceled
290 remoteBranchName = remoteBranchName.Mid(13);//Strip 'refs/remotes/'
291 int slashPlace = remoteBranchName.Find('/');
292 remoteName = remoteBranchName.Left(slashPlace);
293 remoteBranchName = remoteBranchName.Mid(slashPlace + 1); //Strip remote name (for example 'origin/')
295 //Select remote
296 int remoteSel = m_Remote.FindStringExact(0,remoteName);
297 if(remoteSel >= 0)
298 m_Remote.SetCurSel(remoteSel);
300 //Select branch
301 m_BranchRemote.AddString(remoteBranchName);
304 BOOL CPushDlg::PreTranslateMessage(MSG* pMsg)
306 if (pMsg->message == WM_KEYDOWN)
308 switch (pMsg->wParam)
310 case VK_F5:
312 Refresh();
314 break;
318 return CResizableStandAloneDialog::PreTranslateMessage(pMsg);
321 void CPushDlg::OnBnClickedPushall()
323 this->UpdateData();
324 this->GetDlgItem(IDC_BRANCH_REMOTE)->EnableWindow(!m_bPushAllBranches);
325 this->GetDlgItem(IDC_BRANCH_SOURCE)->EnableWindow(!m_bPushAllBranches);
326 this->GetDlgItem(IDC_BUTTON_BROWSE_SOURCE_BRANCH)->EnableWindow(!m_bPushAllBranches);
327 this->GetDlgItem(IDC_BUTTON_BROWSE_DEST_BRANCH)->EnableWindow(!m_bPushAllBranches);
328 this->GetDlgItem(IDC_TAGS)->EnableWindow(!m_bPushAllBranches);
329 if (m_bTags && m_bPushAllBranches)
331 m_bTags = FALSE;
332 UpdateData(FALSE);