Fixed issue #1542: Can send pull request email
[TortoiseGit.git] / src / TortoiseProc / PushDlg.cpp
blobc80a97ab31f95a1da536522cb52b3e8d9700cb34
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2013 - 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 "LogDlg.h"
31 #include "BrowseRefsDlg.h"
32 #include "RefLogDlg.h"
33 #include "MessageBox.h"
35 // CPushDlg dialog
37 IMPLEMENT_DYNAMIC(CPushDlg, CHorizontalResizableStandAloneDialog)
39 CPushDlg::CPushDlg(CWnd* pParent /*=NULL*/)
40 : CHorizontalResizableStandAloneDialog(CPushDlg::IDD, pParent)
41 , m_bPushAllBranches(FALSE)
42 , m_bForce(FALSE)
43 , m_bPack(FALSE)
44 , m_bTags(FALSE)
45 , m_bAutoLoad(FALSE)
46 , m_bPushAllRemotes(FALSE)
47 , m_bSetPushBranch(FALSE)
48 , m_bSetPushRemote(FALSE)
49 , m_bSetUpstream(FALSE)
50 , m_RecurseSubmodules(0)
52 m_bAutoLoad = CAppUtils::IsSSHPutty();
55 CPushDlg::~CPushDlg()
59 void CPushDlg::DoDataExchange(CDataExchange* pDX)
61 CHorizontalResizableStandAloneDialog::DoDataExchange(pDX);
62 DDX_Control(pDX, IDC_BRANCH_REMOTE, this->m_BranchRemote);
63 DDX_Control(pDX, IDC_BRANCH_SOURCE, this->m_BranchSource);
64 DDX_Control(pDX, IDC_REMOTE, this->m_Remote);
65 DDX_Control(pDX, IDC_URL, this->m_RemoteURL);
66 DDX_Control(pDX, IDC_BUTTON_BROWSE_SOURCE_BRANCH, m_BrowseLocalRef);
67 DDX_Control(pDX, IDC_COMBOBOX_RECURSE_SUBMODULES, m_RecurseSubmodulesCombo);
68 DDX_Check(pDX,IDC_FORCE,this->m_bForce);
69 DDX_Check(pDX,IDC_PUSHALL,this->m_bPushAllBranches);
70 DDX_Check(pDX,IDC_PACK,this->m_bPack);
71 DDX_Check(pDX,IDC_TAGS,this->m_bTags);
72 DDX_Check(pDX,IDC_PUTTYKEY_AUTOLOAD,this->m_bAutoLoad);
73 DDX_Check(pDX, IDC_PROC_PUSH_SET_PUSHREMOTE, m_bSetPushRemote);
74 DDX_Check(pDX, IDC_PROC_PUSH_SET_PUSHBRANCH, m_bSetPushBranch);
75 DDX_Check(pDX, IDC_PROC_PUSH_SET_UPSTREAM, m_bSetUpstream);
78 BEGIN_MESSAGE_MAP(CPushDlg, CHorizontalResizableStandAloneDialog)
79 ON_BN_CLICKED(IDC_RD_REMOTE, &CPushDlg::OnBnClickedRd)
80 ON_BN_CLICKED(IDC_RD_URL, &CPushDlg::OnBnClickedRd)
81 ON_CBN_SELCHANGE(IDC_BRANCH_SOURCE, &CPushDlg::OnCbnSelchangeBranchSource)
82 ON_CBN_SELCHANGE(IDC_REMOTE, &CPushDlg::EnDisablePushRemoteArchiveBranch)
83 ON_BN_CLICKED(IDOK, &CPushDlg::OnBnClickedOk)
84 ON_BN_CLICKED(IDC_REMOTE_MANAGE, &CPushDlg::OnBnClickedRemoteManage)
85 ON_BN_CLICKED(IDC_BUTTON_BROWSE_SOURCE_BRANCH, &CPushDlg::OnBnClickedButtonBrowseSourceBranch)
86 ON_BN_CLICKED(IDC_BUTTON_BROWSE_DEST_BRANCH, &CPushDlg::OnBnClickedButtonBrowseDestBranch)
87 ON_BN_CLICKED(IDC_PUSHALL, &CPushDlg::OnBnClickedPushall)
88 ON_BN_CLICKED(IDC_PROC_PUSH_SET_UPSTREAM, &CPushDlg::OnBnClickedProcPushSetUpstream)
89 ON_BN_CLICKED(IDC_PROC_PUSH_SET_PUSHREMOTE, &CPushDlg::OnBnClickedProcPushSetPushremote)
90 ON_BN_CLICKED(IDC_PROC_PUSH_SET_PUSHBRANCH, &CPushDlg::OnBnClickedProcPushSetPushremote)
91 END_MESSAGE_MAP()
93 BOOL CPushDlg::OnInitDialog()
95 CHorizontalResizableStandAloneDialog::OnInitDialog();
96 CAppUtils::MarkWindowAsUnpinnable(m_hWnd);
98 AddAnchor(IDOK,BOTTOM_RIGHT);
99 AddAnchor(IDCANCEL,BOTTOM_RIGHT);
100 AddAnchor(IDC_BRANCH_GROUP, TOP_LEFT,TOP_RIGHT);
101 AddAnchor(IDC_STATIC_REMOTE, TOP_LEFT);
102 AddAnchor(IDC_STATIC_SOURCE, TOP_LEFT);
104 AddAnchor(IDC_PUSHALL, TOP_LEFT);
105 AddAnchor(IDC_BRANCH_REMOTE, TOP_LEFT, TOP_RIGHT);
106 AddAnchor(IDC_BUTTON_BROWSE_DEST_BRANCH, TOP_RIGHT);
107 AddAnchor(IDC_BRANCH_SOURCE, TOP_LEFT, TOP_RIGHT);
108 AddAnchor(IDC_BUTTON_BROWSE_SOURCE_BRANCH, TOP_RIGHT);
110 AddAnchor(IDC_URL_GROUP, TOP_LEFT,TOP_RIGHT);
111 AddAnchor(IDC_RD_REMOTE, TOP_LEFT);
112 AddAnchor(IDC_RD_URL, TOP_LEFT);
114 AddAnchor(IDC_REMOTE, TOP_LEFT, TOP_RIGHT);
116 AddAnchor(IDC_URL, TOP_LEFT,TOP_RIGHT);
118 AddAnchor(IDC_OPTION_GROUP, TOP_LEFT,TOP_RIGHT);
120 AddAnchor(IDC_FORCE, TOP_LEFT);
121 AddAnchor(IDC_PACK, TOP_LEFT);
122 AddAnchor(IDC_TAGS, TOP_LEFT);
123 AddAnchor(IDC_PUTTYKEY_AUTOLOAD,TOP_LEFT);
124 AddAnchor(IDC_PROC_PUSH_SET_PUSHBRANCH, TOP_LEFT);
125 AddAnchor(IDC_PROC_PUSH_SET_PUSHREMOTE, TOP_LEFT);
126 AddAnchor(IDC_PROC_PUSH_SET_UPSTREAM, TOP_LEFT);
127 AddAnchor(IDC_STATIC_RECURSE_SUBMODULES, TOP_LEFT);
128 AddAnchor(IDC_COMBOBOX_RECURSE_SUBMODULES, TOP_LEFT);
130 AddAnchor(IDC_REMOTE_MANAGE,TOP_RIGHT);
131 AddAnchor(IDHELP, BOTTOM_RIGHT);
133 AddOthersToAnchor();
135 AdjustControlSize(IDC_RD_REMOTE);
136 AdjustControlSize(IDC_RD_URL);
137 AdjustControlSize(IDC_PUSHALL);
138 AdjustControlSize(IDC_FORCE);
139 AdjustControlSize(IDC_PACK);
140 AdjustControlSize(IDC_TAGS);
141 AdjustControlSize(IDC_PUTTYKEY_AUTOLOAD);
142 AdjustControlSize(IDC_PROC_PUSH_SET_PUSHBRANCH);
143 AdjustControlSize(IDC_PROC_PUSH_SET_PUSHREMOTE);
144 AdjustControlSize(IDC_PROC_PUSH_SET_UPSTREAM);
145 AdjustControlSize(IDC_STATIC_RECURSE_SUBMODULES);
147 CString sWindowTitle;
148 GetWindowText(sWindowTitle);
149 CAppUtils::SetWindowTitle(m_hWnd, g_Git.m_CurrentDir, sWindowTitle);
151 this->GetDlgItem(IDC_PUTTYKEY_AUTOLOAD)->EnableWindow(CAppUtils::IsSSHPutty());
153 EnableSaveRestore(_T("PushDlg"));
155 m_RemoteURL.SetURLHistory(TRUE);
157 CString WorkingDir=g_Git.m_CurrentDir;
158 WorkingDir.Replace(_T(':'),_T('_'));
159 m_regPushAllBranches = CRegDWORD(CString(_T("Software\\TortoiseGit\\History\\PushAllBranches\\")) + WorkingDir, 0);
160 m_bPushAllBranches = m_regPushAllBranches;
161 m_RemoteURL.LoadHistory(CString(_T("Software\\TortoiseGit\\History\\PushURLS\\"))+WorkingDir, _T("url"));
162 CString clippath=CAppUtils::GetClipboardLink();
163 if(clippath.IsEmpty())
164 m_RemoteURL.SetCurSel(0);
165 else
166 m_RemoteURL.SetWindowText(clippath);
168 m_RemoteURL.EnableWindow(FALSE);
169 CheckRadioButton(IDC_RD_REMOTE,IDC_RD_URL,IDC_RD_REMOTE);
172 m_regThinPack = CRegDWORD(CString(_T("Software\\TortoiseGit\\History\\PushThinPack\\")) + WorkingDir, 0);
173 m_bPack = m_regThinPack;
174 this->m_regAutoLoad = CRegDWORD(CString(_T("Software\\TortoiseGit\\History\\PushDlgAutoLoad\\"))+WorkingDir,
175 m_bAutoLoad);
176 m_bAutoLoad = this->m_regAutoLoad;
177 if(!CAppUtils::IsSSHPutty())
178 m_bAutoLoad = false;
180 m_BrowseLocalRef.m_bRightArrow = TRUE;
181 m_BrowseLocalRef.m_bDefaultClick = FALSE;
182 m_BrowseLocalRef.m_bMarkDefault = FALSE;
183 m_BrowseLocalRef.AddEntry(CString(MAKEINTRESOURCE(IDS_REFBROWSE)));
184 m_BrowseLocalRef.AddEntry(CString(MAKEINTRESOURCE(IDS_LOG)));
185 m_BrowseLocalRef.AddEntry(CString(MAKEINTRESOURCE(IDS_REFLOG)));
187 m_tooltips.Create(this);
188 m_tooltips.AddTool(IDC_PROC_PUSH_SET_PUSHBRANCH, IDS_PUSHDLG_PUSHBRANCH_TT);
189 m_tooltips.AddTool(IDC_PROC_PUSH_SET_PUSHREMOTE, IDS_PUSHDLG_PUSHREMOTE_TT);
191 m_regRecurseSubmodules = CRegDWORD(
192 CString(_T("Software\\TortoiseGit\\History\\PushRecurseSubmodules\\")) + WorkingDir, m_RecurseSubmodules);
193 m_RecurseSubmodules = m_regRecurseSubmodules;
194 m_RecurseSubmodulesCombo.AddString(CString(MAKEINTRESOURCE(IDS_NONE)));
195 m_RecurseSubmodulesCombo.AddString(CString(MAKEINTRESOURCE(IDS_RECURSE_SUBMODULES_CHECK)));
196 m_RecurseSubmodulesCombo.AddString(CString(MAKEINTRESOURCE(IDS_RECURSE_SUBMODULES_ONDEMAND)));
197 m_RecurseSubmodulesCombo.SetCurSel(m_RecurseSubmodules);
199 Refresh();
201 this->UpdateData(false);
203 OnBnClickedPushall();
204 return TRUE;
207 void CPushDlg::Refresh()
209 CString WorkingDir=g_Git.m_CurrentDir;
210 WorkingDir.Replace(_T(':'),_T('_'));
212 CRegString remote(CString(_T("Software\\TortoiseGit\\History\\PushRemote\\")+WorkingDir));
213 m_RemoteReg = remote;
214 int sel = -1;
216 STRING_VECTOR list;
217 m_Remote.Reset();
219 list.push_back(CString(MAKEINTRESOURCE(IDS_PROC_PUSHFETCH_ALLREMOTES)));
220 if(!g_Git.GetRemoteList(list))
222 if (list.size() <= 2)
223 list.erase(list.begin());
225 for (unsigned int i = 0; i < list.size(); ++i)
227 m_Remote.AddString(list[i]);
228 if(list[i] == remote)
229 sel = i;
232 // if the last selected remote was "- All -" and "- All -" is still in the list -> select it
233 if (list.size() > 1 && remote == CString(MAKEINTRESOURCE(IDS_PROC_PUSHFETCH_ALLREMOTES)))
234 sel = 0;
235 m_Remote.SetCurSel(sel);
237 int current=0;
238 list.clear();
239 m_BranchSource.Reset();
240 m_BranchSource.AddString(_T(" ")); // empty string does not work, for removal of remote branches/tags
241 m_BranchSource.SetMaxHistoryItems(0x7FFFFFFF);
242 if(!g_Git.GetBranchList(list,&current))
244 for (unsigned int i = 0; i < list.size(); ++i)
245 m_BranchSource.AddString(list[i]);
246 ++current; // shift for " "
248 if (wcsncmp(m_BranchSourceName, _T("refs/"), 5) == 0)
249 m_BranchSourceName = m_BranchSourceName.Mid(5);
250 if (wcsncmp(m_BranchSourceName, _T("heads/"), 6) == 0)
252 m_BranchSourceName = m_BranchSourceName.Mid(6);
253 m_BranchSource.SetCurSel(m_BranchSource.FindStringExact(-1, m_BranchSourceName));
255 else if (wcsncmp(m_BranchSourceName, _T("remotes/"), 8) == 0)
256 m_BranchSource.SetCurSel(m_BranchSource.FindStringExact(-1, m_BranchSourceName));
257 else
258 m_BranchSource.SetCurSel(current);
260 GetRemoteBranch(m_BranchSource.GetString());
262 this->GetDlgItem(IDOK)->EnableWindow(m_BranchSource.GetCount() != 0);
265 void CPushDlg::GetRemoteBranch(CString currentBranch)
267 CString WorkingDir=g_Git.m_CurrentDir;
268 WorkingDir.Replace(_T(':'), _T('_'));
270 if (currentBranch.IsEmpty())
272 EnDisablePushRemoteArchiveBranch();
273 return;
276 CString configName;
278 configName.Format(L"branch.%s.pushremote", currentBranch);
279 CString pushRemote = g_Git.GetConfigValue(configName);
280 if( pushRemote.IsEmpty() )
282 configName.Format(L"branch.%s.remote", currentBranch);
283 pushRemote = g_Git.GetConfigValue(configName);
286 CRegString remote(CString(_T("Software\\TortoiseGit\\History\\PushRemote\\")+WorkingDir));
288 if (!pushRemote.IsEmpty())
290 remote = pushRemote;
291 // if a pushRemote exists, select it
292 for (int i = 0; i < m_Remote.GetCount(); ++i)
294 CString str;
295 int n = m_Remote.GetLBTextLen(i);
296 m_Remote.GetLBText(i, str.GetBuffer(n));
297 str.ReleaseBuffer();
298 if (str == pushRemote)
300 m_Remote.SetCurSel(i);
301 break;
305 // select the only remote if only one exists
306 else if (m_Remote.GetCount() == 1)
307 m_Remote.SetCurSel(0);
308 // select no remote if no push-remote is specified AND push to all remotes is not selected
309 else if (!(m_Remote.GetCount() > 1 && m_Remote.GetCurSel() == 0))
311 m_Remote.SetCurSel(-1);
314 //Select pull-branch from current branch
315 configName.Format(L"branch.%s.pushbranch", currentBranch);
316 CString pushBranch = g_Git.GetConfigValue(configName); // do not strip branch name (for gerrit), see issue #1609)
317 if( pushBranch.IsEmpty() )
319 configName.Format(L"branch.%s.merge", currentBranch);
320 pushBranch = CGit::StripRefName(g_Git.GetConfigValue(configName));
323 m_BranchRemote.LoadHistory(CString(_T("Software\\TortoiseGit\\History\\RemoteBranch\\"))+WorkingDir, _T("branch"));
324 if( !pushBranch.IsEmpty() )
325 m_BranchRemote.AddString(pushBranch);
327 EnDisablePushRemoteArchiveBranch();
330 void CPushDlg::EnDisablePushRemoteArchiveBranch()
332 if ((m_Remote.GetCount() > 1 && m_Remote.GetCurSel() == 0) || m_bPushAllBranches || GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_URL || m_BranchSource.GetString().Trim().IsEmpty())
334 DialogEnableWindow(IDC_PROC_PUSH_SET_PUSHBRANCH, FALSE);
335 DialogEnableWindow(IDC_PROC_PUSH_SET_PUSHREMOTE, FALSE);
336 bool enableUpstream = (GetCheckedRadioButton(IDC_RD_REMOTE, IDC_RD_URL) != IDC_RD_URL && (!m_BranchSource.GetString().Trim().IsEmpty() || m_bPushAllBranches));
337 DialogEnableWindow(IDC_PROC_PUSH_SET_UPSTREAM, enableUpstream);
338 if (m_bSetUpstream && !enableUpstream)
339 m_bSetUpstream = FALSE;
340 m_bSetPushRemote = FALSE;
341 m_bSetPushBranch = FALSE;
342 UpdateData(FALSE);
344 else
346 DialogEnableWindow(IDC_PROC_PUSH_SET_UPSTREAM, TRUE);
347 DialogEnableWindow(IDC_PROC_PUSH_SET_PUSHBRANCH, !m_bSetUpstream);
348 DialogEnableWindow(IDC_PROC_PUSH_SET_PUSHREMOTE, !m_bSetUpstream);
352 // CPushDlg message handlers
354 void CPushDlg::OnBnClickedRd()
356 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_REMOTE)
358 m_Remote.EnableWindow(TRUE);
359 GetDlgItem(IDC_REMOTE_MANAGE)->EnableWindow(TRUE);
360 m_RemoteURL.EnableWindow(FALSE);
362 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_URL)
364 m_Remote.EnableWindow(FALSE);
365 GetDlgItem(IDC_REMOTE_MANAGE)->EnableWindow(FALSE);
366 m_RemoteURL.EnableWindow(TRUE);
368 EnDisablePushRemoteArchiveBranch();
372 void CPushDlg::OnCbnSelchangeBranchSource()
374 GetRemoteBranch(m_BranchSource.GetString());
377 void CPushDlg::OnBnClickedOk()
379 CHorizontalResizableStandAloneDialog::UpdateData(TRUE);
381 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_REMOTE)
383 m_URL=m_Remote.GetString();
384 if (m_URL.IsEmpty())
386 CMessageBox::Show(NULL, IDS_PROC_GITCONFIG_REMOTEEMPTY, IDS_APPNAME, MB_OK);
387 return;
389 m_bPushAllRemotes = (m_Remote.GetCurSel() == 0 && m_Remote.GetCount() > 1);
391 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_URL)
393 m_URL=m_RemoteURL.GetString();
396 if (!m_bPushAllBranches)
398 this->m_BranchRemoteName=m_BranchRemote.GetString().Trim();
399 this->m_BranchSourceName=m_BranchSource.GetString().Trim();
401 if (m_BranchSourceName.IsEmpty() && m_BranchRemoteName.IsEmpty())
403 if (CMessageBox::Show(NULL, IDS_B_T_BOTHEMPTY, IDS_APPNAME, MB_ICONQUESTION | MB_YESNO) == IDNO)
404 return;
406 if (m_BranchSourceName.IsEmpty() && !m_BranchRemoteName.IsEmpty())
408 if (CMessageBox::Show(NULL, IDS_B_T_LOCALEMPTY, IDS_APPNAME, MB_ICONEXCLAMATION | MB_YESNO) == IDNO)
409 return;
411 else if (!m_BranchRemoteName.IsEmpty() && !g_Git.IsBranchNameValid(this->m_BranchRemoteName))
413 CMessageBox::Show(NULL, IDS_B_T_INVALID, IDS_APPNAME, MB_OK);
414 return;
416 else if (!m_BranchSourceName.IsEmpty() && !g_Git.IsBranchTagNameUnique(m_BranchSourceName))
418 CMessageBox::Show(NULL, IDS_B_T_NOT_UNIQUE, IDS_APPNAME, MB_OK | MB_ICONEXCLAMATION);
419 return;
421 else
423 // do not store branch names on removal
424 this->m_RemoteURL.SaveHistory();
425 this->m_BranchRemote.SaveHistory();
426 m_RemoteReg = m_Remote.GetString();
428 if (!m_BranchSourceName.IsEmpty())
430 CString configName;
431 if (m_bSetPushBranch)
433 configName.Format(L"branch.%s.pushbranch", m_BranchSourceName);
434 if (!m_BranchRemoteName.IsEmpty())
435 g_Git.SetConfigValue(configName, m_BranchRemoteName);
436 else
437 g_Git.UnsetConfigValue(configName);
439 if (m_bSetPushRemote)
441 configName.Format(L"branch.%s.pushremote", m_BranchSourceName);
442 if (!m_URL.IsEmpty())
443 g_Git.SetConfigValue(configName, m_URL);
444 else
445 g_Git.UnsetConfigValue(configName);
451 m_regPushAllBranches = m_bPushAllBranches;
452 m_regThinPack = m_bPack;
453 this->m_regAutoLoad = m_bAutoLoad ;
454 m_RecurseSubmodules = m_RecurseSubmodulesCombo.GetCurSel();
455 if (m_RecurseSubmodules == 2 && CAppUtils::GetMsysgitVersion() < 0x01070b00)
457 CString gitver;
458 gitver.Format(IDS_GITVER_REQUIRED, _T("--recurse-submodules=on-demand"), _T("1.7.11"));
459 CMessageBox::Show(m_hWnd, gitver, _T("TortoiseGit"), MB_OK | MB_ICONERROR);
460 return;
462 m_regRecurseSubmodules = m_RecurseSubmodules;
464 CHorizontalResizableStandAloneDialog::OnOK();
467 void CPushDlg::OnBnClickedRemoteManage()
469 CAppUtils::LaunchRemoteSetting();
470 Refresh();
473 void CPushDlg::OnBnClickedButtonBrowseSourceBranch()
475 switch (m_BrowseLocalRef.GetCurrentEntry())
477 case 0: /* Browse Refence*/
479 if(CBrowseRefsDlg::PickRefForCombo(&m_BranchSource, gPickRef_Head))
480 OnCbnSelchangeBranchSource();
482 break;
484 case 1: /* Log */
486 CLogDlg dlg;
487 dlg.SetSelect(true);
488 if(dlg.DoModal() == IDOK)
490 if (dlg.GetSelectedHash().IsEmpty())
491 return;
493 m_BranchSource.SetWindowText(dlg.GetSelectedHash());
494 OnCbnSelchangeBranchSource();
497 break;
499 case 2: /*RefLog*/
501 CRefLogDlg dlg;
502 if(dlg.DoModal() == IDOK)
504 m_BranchSource.SetWindowText(dlg.m_SelectedHash);
505 OnCbnSelchangeBranchSource();
508 break;
512 void CPushDlg::OnBnClickedButtonBrowseDestBranch()
514 CString remoteBranchName;
515 CString remoteName;
516 m_BranchRemote.GetWindowText(remoteBranchName);
517 remoteName = m_Remote.GetString();
518 remoteBranchName = remoteName + '/' + remoteBranchName;
519 remoteBranchName = CBrowseRefsDlg::PickRef(false, remoteBranchName, gPickRef_Remote);
520 if(remoteBranchName.IsEmpty())
521 return; //Canceled
522 remoteBranchName = remoteBranchName.Mid(13);//Strip 'refs/remotes/'
523 int slashPlace = remoteBranchName.Find('/');
524 remoteName = remoteBranchName.Left(slashPlace);
525 remoteBranchName = remoteBranchName.Mid(slashPlace + 1); //Strip remote name (for example 'origin/')
527 //Select remote
528 int remoteSel = m_Remote.FindStringExact(0,remoteName);
529 if(remoteSel >= 0)
530 m_Remote.SetCurSel(remoteSel);
532 //Select branch
533 m_BranchRemote.AddString(remoteBranchName, 0);
536 BOOL CPushDlg::PreTranslateMessage(MSG* pMsg)
538 m_tooltips.RelayEvent(pMsg);
540 if (pMsg->message == WM_KEYDOWN)
542 switch (pMsg->wParam)
544 case VK_F5:
546 Refresh();
548 break;
552 return CHorizontalResizableStandAloneDialog::PreTranslateMessage(pMsg);
555 void CPushDlg::OnBnClickedPushall()
557 this->UpdateData();
558 this->GetDlgItem(IDC_BRANCH_REMOTE)->EnableWindow(!m_bPushAllBranches);
559 this->GetDlgItem(IDC_BRANCH_SOURCE)->EnableWindow(!m_bPushAllBranches);
560 this->GetDlgItem(IDC_BUTTON_BROWSE_SOURCE_BRANCH)->EnableWindow(!m_bPushAllBranches);
561 this->GetDlgItem(IDC_BUTTON_BROWSE_DEST_BRANCH)->EnableWindow(!m_bPushAllBranches);
562 EnDisablePushRemoteArchiveBranch();
565 void CPushDlg::OnBnClickedProcPushSetUpstream()
567 UpdateData();
568 this->GetDlgItem(IDC_PROC_PUSH_SET_PUSHREMOTE)->EnableWindow(!m_bSetUpstream);
569 this->GetDlgItem(IDC_PROC_PUSH_SET_PUSHBRANCH)->EnableWindow(!m_bSetUpstream);
570 m_bSetPushBranch = FALSE;
571 m_bSetPushRemote = FALSE;
572 UpdateData(FALSE);
575 void CPushDlg::OnBnClickedProcPushSetPushremote()
577 UpdateData();
578 this->GetDlgItem(IDC_PROC_PUSH_SET_UPSTREAM)->EnableWindow(!(m_bSetPushBranch || m_bSetPushRemote));
579 m_bSetUpstream = FALSE;
580 UpdateData(FALSE);