If there are submodule changes in the file list when resolving conflicts while rebasi...
[TortoiseGit.git] / src / TortoiseProc / PushDlg.cpp
blob0c1f29b6dc8808c6601f29c64aa3d5651286b792
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_RemoteURL.LoadHistory(CString(_T("Software\\TortoiseGit\\History\\PushURLS\\"))+WorkingDir, _T("url"));
160 CString clippath=CAppUtils::GetClipboardLink();
161 if(clippath.IsEmpty())
162 m_RemoteURL.SetCurSel(0);
163 else
164 m_RemoteURL.SetWindowText(clippath);
166 m_RemoteURL.EnableWindow(FALSE);
167 CheckRadioButton(IDC_RD_REMOTE,IDC_RD_URL,IDC_RD_REMOTE);
170 this->m_regAutoLoad = CRegDWORD(CString(_T("Software\\TortoiseGit\\History\\PushDlgAutoLoad\\"))+WorkingDir,
171 m_bAutoLoad);
172 m_bAutoLoad = this->m_regAutoLoad;
173 if(!CAppUtils::IsSSHPutty())
174 m_bAutoLoad = false;
176 m_BrowseLocalRef.m_bRightArrow = TRUE;
177 m_BrowseLocalRef.m_bDefaultClick = FALSE;
178 m_BrowseLocalRef.m_bMarkDefault = FALSE;
179 m_BrowseLocalRef.AddEntry(CString(MAKEINTRESOURCE(IDS_REFBROWSE)));
180 m_BrowseLocalRef.AddEntry(CString(MAKEINTRESOURCE(IDS_LOG)));
181 m_BrowseLocalRef.AddEntry(CString(MAKEINTRESOURCE(IDS_REFLOG)));
183 m_tooltips.Create(this);
184 m_tooltips.AddTool(IDC_PROC_PUSH_SET_PUSHBRANCH, IDS_PUSHDLG_PUSHBRANCH_TT);
185 m_tooltips.AddTool(IDC_PROC_PUSH_SET_PUSHREMOTE, IDS_PUSHDLG_PUSHREMOTE_TT);
187 m_regRecurseSubmodules = CRegDWORD(
188 CString(_T("Software\\TortoiseGit\\History\\PushRecurseSubmodules\\")) + WorkingDir, m_RecurseSubmodules);
189 m_RecurseSubmodules = m_regRecurseSubmodules;
190 m_RecurseSubmodulesCombo.AddString(CString(MAKEINTRESOURCE(IDS_NONE)));
191 m_RecurseSubmodulesCombo.AddString(CString(MAKEINTRESOURCE(IDS_RECURSE_SUBMODULES_CHECK)));
192 m_RecurseSubmodulesCombo.AddString(CString(MAKEINTRESOURCE(IDS_RECURSE_SUBMODULES_ONDEMAND)));
193 m_RecurseSubmodulesCombo.SetCurSel(m_RecurseSubmodules);
195 Refresh();
197 this->UpdateData(false);
198 return TRUE;
201 void CPushDlg::Refresh()
203 CString WorkingDir=g_Git.m_CurrentDir;
204 WorkingDir.Replace(_T(':'),_T('_'));
206 CRegString remote(CString(_T("Software\\TortoiseGit\\History\\PushRemote\\")+WorkingDir));
207 m_RemoteReg = remote;
208 int sel = -1;
210 STRING_VECTOR list;
211 m_Remote.Reset();
213 list.push_back(CString(MAKEINTRESOURCE(IDS_PROC_PUSHFETCH_ALLREMOTES)));
214 if(!g_Git.GetRemoteList(list))
216 if (list.size() <= 2)
217 list.erase(list.begin());
219 for (unsigned int i = 0; i < list.size(); ++i)
221 m_Remote.AddString(list[i]);
222 if(list[i] == remote)
223 sel = i;
226 // if the last selected remote was "- All -" and "- All -" is still in the list -> select it
227 if (list.size() > 1 && remote == CString(MAKEINTRESOURCE(IDS_PROC_PUSHFETCH_ALLREMOTES)))
228 sel = 0;
229 m_Remote.SetCurSel(sel);
231 int current=0;
232 list.clear();
233 m_BranchSource.Reset();
234 m_BranchSource.AddString(_T(" ")); // empty string does not work, for removal of remote branches/tags
235 m_BranchSource.SetMaxHistoryItems(0x7FFFFFFF);
236 if(!g_Git.GetBranchList(list,&current))
238 for (unsigned int i = 0; i < list.size(); ++i)
239 m_BranchSource.AddString(list[i]);
240 ++current; // shift for " "
242 if (wcsncmp(m_BranchSourceName, _T("refs/"), 5) == 0)
243 m_BranchSourceName = m_BranchSourceName.Mid(5);
244 if (wcsncmp(m_BranchSourceName, _T("heads/"), 6) == 0)
246 m_BranchSourceName = m_BranchSourceName.Mid(6);
247 m_BranchSource.SetCurSel(m_BranchSource.FindStringExact(-1, m_BranchSourceName));
249 else if (wcsncmp(m_BranchSourceName, _T("remotes/"), 8) == 0)
250 m_BranchSource.SetCurSel(m_BranchSource.FindStringExact(-1, m_BranchSourceName));
251 else
252 m_BranchSource.SetCurSel(current);
254 GetRemoteBranch(m_BranchSource.GetString());
256 this->GetDlgItem(IDOK)->EnableWindow(m_BranchSource.GetCount() != 0);
259 void CPushDlg::GetRemoteBranch(CString currentBranch)
261 CString WorkingDir=g_Git.m_CurrentDir;
262 WorkingDir.Replace(_T(':'), _T('_'));
264 if (currentBranch.IsEmpty())
266 EnDisablePushRemoteArchiveBranch();
267 return;
270 CString configName;
272 configName.Format(L"branch.%s.pushremote", currentBranch);
273 CString pushRemote = g_Git.GetConfigValue(configName);
274 if( pushRemote.IsEmpty() )
276 configName.Format(L"branch.%s.remote", currentBranch);
277 pushRemote = g_Git.GetConfigValue(configName);
280 CRegString remote(CString(_T("Software\\TortoiseGit\\History\\PushRemote\\")+WorkingDir));
282 if (!pushRemote.IsEmpty())
284 remote = pushRemote;
285 // if a pushRemote exists, select it
286 for (int i = 0; i < m_Remote.GetCount(); ++i)
288 CString str;
289 int n = m_Remote.GetLBTextLen(i);
290 m_Remote.GetLBText(i, str.GetBuffer(n));
291 str.ReleaseBuffer();
292 if (str == pushRemote)
294 m_Remote.SetCurSel(i);
295 break;
299 // select the only remote if only one exists
300 else if (m_Remote.GetCount() == 1)
301 m_Remote.SetCurSel(0);
302 // select no remote if no push-remote is specified AND push to all remotes is not selected
303 else if (!(m_Remote.GetCount() > 1 && m_Remote.GetCurSel() == 0))
305 m_Remote.SetCurSel(-1);
308 //Select pull-branch from current branch
309 configName.Format(L"branch.%s.pushbranch", currentBranch);
310 CString pushBranch = CGit::StripRefName(g_Git.GetConfigValue(configName));
311 if( pushBranch.IsEmpty() )
313 configName.Format(L"branch.%s.merge", currentBranch);
314 pushBranch = CGit::StripRefName(g_Git.GetConfigValue(configName));
317 m_BranchRemote.LoadHistory(CString(_T("Software\\TortoiseGit\\History\\RemoteBranch\\"))+WorkingDir, _T("branch"));
318 if( !pushBranch.IsEmpty() )
319 m_BranchRemote.AddString(pushBranch);
321 EnDisablePushRemoteArchiveBranch();
324 void CPushDlg::EnDisablePushRemoteArchiveBranch()
326 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())
328 DialogEnableWindow(IDC_PROC_PUSH_SET_PUSHBRANCH, FALSE);
329 DialogEnableWindow(IDC_PROC_PUSH_SET_PUSHREMOTE, FALSE);
330 bool enableUpstream = (GetCheckedRadioButton(IDC_RD_REMOTE, IDC_RD_URL) != IDC_RD_URL && (!m_BranchSource.GetString().Trim().IsEmpty() || m_bPushAllBranches));
331 DialogEnableWindow(IDC_PROC_PUSH_SET_UPSTREAM, enableUpstream);
332 if (m_bSetUpstream && !enableUpstream)
333 m_bSetUpstream = FALSE;
334 m_bSetPushRemote = FALSE;
335 m_bSetPushBranch = FALSE;
336 UpdateData(FALSE);
338 else
340 DialogEnableWindow(IDC_PROC_PUSH_SET_UPSTREAM, TRUE);
341 DialogEnableWindow(IDC_PROC_PUSH_SET_PUSHBRANCH, !m_bSetUpstream);
342 DialogEnableWindow(IDC_PROC_PUSH_SET_PUSHREMOTE, !m_bSetUpstream);
346 // CPushDlg message handlers
348 void CPushDlg::OnBnClickedRd()
350 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_REMOTE)
352 m_Remote.EnableWindow(TRUE);
353 GetDlgItem(IDC_REMOTE_MANAGE)->EnableWindow(TRUE);
354 m_RemoteURL.EnableWindow(FALSE);
356 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_URL)
358 m_Remote.EnableWindow(FALSE);
359 GetDlgItem(IDC_REMOTE_MANAGE)->EnableWindow(FALSE);
360 m_RemoteURL.EnableWindow(TRUE);
362 EnDisablePushRemoteArchiveBranch();
366 void CPushDlg::OnCbnSelchangeBranchSource()
368 GetRemoteBranch(m_BranchSource.GetString());
371 void CPushDlg::OnBnClickedOk()
373 CHorizontalResizableStandAloneDialog::UpdateData(TRUE);
375 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_REMOTE)
377 m_URL=m_Remote.GetString();
378 if (m_URL.IsEmpty())
380 CMessageBox::Show(NULL, IDS_PROC_GITCONFIG_REMOTEEMPTY, IDS_APPNAME, MB_OK);
381 return;
383 m_bPushAllRemotes = (m_Remote.GetCurSel() == 0 && m_Remote.GetCount() > 1);
385 if( GetCheckedRadioButton(IDC_RD_REMOTE,IDC_RD_URL) == IDC_RD_URL)
387 m_URL=m_RemoteURL.GetString();
390 if (!m_bPushAllBranches)
392 this->m_BranchRemoteName=m_BranchRemote.GetString().Trim();
393 this->m_BranchSourceName=m_BranchSource.GetString().Trim();
395 if (m_BranchSourceName.IsEmpty() && m_BranchRemoteName.IsEmpty())
397 if (CMessageBox::Show(NULL, IDS_B_T_BOTHEMPTY, IDS_APPNAME, MB_ICONQUESTION | MB_YESNO) == IDNO)
398 return;
400 if (m_BranchSourceName.IsEmpty() && !m_BranchRemoteName.IsEmpty())
402 if (CMessageBox::Show(NULL, IDS_B_T_LOCALEMPTY, IDS_APPNAME, MB_ICONEXCLAMATION | MB_YESNO) == IDNO)
403 return;
405 else if (!m_BranchRemoteName.IsEmpty() && !g_Git.IsBranchNameValid(this->m_BranchRemoteName))
407 CMessageBox::Show(NULL, IDS_B_T_INVALID, IDS_APPNAME, MB_OK);
408 return;
410 else if (!m_BranchSourceName.IsEmpty() && !g_Git.IsBranchTagNameUnique(m_BranchSourceName))
412 CMessageBox::Show(NULL, IDS_B_T_NOT_UNIQUE, IDS_APPNAME, MB_OK | MB_ICONEXCLAMATION);
413 return;
415 else
417 // do not store branch names on removal
418 this->m_RemoteURL.SaveHistory();
419 this->m_BranchRemote.SaveHistory();
420 m_RemoteReg = m_Remote.GetString();
422 if (!m_BranchSourceName.IsEmpty())
424 CString configName;
425 if (m_bSetPushBranch)
427 configName.Format(L"branch.%s.pushbranch", m_BranchSourceName);
428 if (!m_BranchRemoteName.IsEmpty())
429 g_Git.SetConfigValue(configName, m_BranchRemoteName);
430 else
431 g_Git.UnsetConfigValue(configName);
433 if (m_bSetPushRemote)
435 configName.Format(L"branch.%s.pushremote", m_BranchSourceName);
436 if (!m_URL.IsEmpty())
437 g_Git.SetConfigValue(configName, m_URL);
438 else
439 g_Git.UnsetConfigValue(configName);
445 this->m_regAutoLoad = m_bAutoLoad ;
446 m_RecurseSubmodules = m_RecurseSubmodulesCombo.GetCurSel();
447 if (m_RecurseSubmodules == 2 && CAppUtils::GetMsysgitVersion() < 0x01070b00)
449 CString gitver;
450 gitver.Format(IDS_GITVER_REQUIRED, _T("--recurse-submodules=on-demand"), _T("1.7.11"));
451 CMessageBox::Show(m_hWnd, gitver, _T("TortoiseGit"), MB_OK | MB_ICONERROR);
452 return;
454 m_regRecurseSubmodules = m_RecurseSubmodules;
456 CHorizontalResizableStandAloneDialog::OnOK();
459 void CPushDlg::OnBnClickedRemoteManage()
461 CAppUtils::LaunchRemoteSetting();
462 Refresh();
465 void CPushDlg::OnBnClickedButtonBrowseSourceBranch()
467 switch (m_BrowseLocalRef.GetCurrentEntry())
469 case 0: /* Browse Refence*/
471 if(CBrowseRefsDlg::PickRefForCombo(&m_BranchSource, gPickRef_Head))
472 OnCbnSelchangeBranchSource();
474 break;
476 case 1: /* Log */
478 CLogDlg dlg;
479 dlg.SetSelect(true);
480 if(dlg.DoModal() == IDOK)
482 if (dlg.GetSelectedHash().IsEmpty())
483 return;
485 m_BranchSource.SetWindowText(dlg.GetSelectedHash());
486 OnCbnSelchangeBranchSource();
489 break;
491 case 2: /*RefLog*/
493 CRefLogDlg dlg;
494 if(dlg.DoModal() == IDOK)
496 m_BranchSource.SetWindowText(dlg.m_SelectedHash);
497 OnCbnSelchangeBranchSource();
500 break;
504 void CPushDlg::OnBnClickedButtonBrowseDestBranch()
506 CString remoteBranchName;
507 CString remoteName;
508 m_BranchRemote.GetWindowText(remoteBranchName);
509 remoteName = m_Remote.GetString();
510 remoteBranchName = remoteName + '/' + remoteBranchName;
511 remoteBranchName = CBrowseRefsDlg::PickRef(false, remoteBranchName, gPickRef_Remote);
512 if(remoteBranchName.IsEmpty())
513 return; //Canceled
514 remoteBranchName = remoteBranchName.Mid(13);//Strip 'refs/remotes/'
515 int slashPlace = remoteBranchName.Find('/');
516 remoteName = remoteBranchName.Left(slashPlace);
517 remoteBranchName = remoteBranchName.Mid(slashPlace + 1); //Strip remote name (for example 'origin/')
519 //Select remote
520 int remoteSel = m_Remote.FindStringExact(0,remoteName);
521 if(remoteSel >= 0)
522 m_Remote.SetCurSel(remoteSel);
524 //Select branch
525 m_BranchRemote.AddString(remoteBranchName, 0);
528 BOOL CPushDlg::PreTranslateMessage(MSG* pMsg)
530 m_tooltips.RelayEvent(pMsg);
532 if (pMsg->message == WM_KEYDOWN)
534 switch (pMsg->wParam)
536 case VK_F5:
538 Refresh();
540 break;
544 return CHorizontalResizableStandAloneDialog::PreTranslateMessage(pMsg);
547 void CPushDlg::OnBnClickedPushall()
549 this->UpdateData();
550 this->GetDlgItem(IDC_BRANCH_REMOTE)->EnableWindow(!m_bPushAllBranches);
551 this->GetDlgItem(IDC_BRANCH_SOURCE)->EnableWindow(!m_bPushAllBranches);
552 this->GetDlgItem(IDC_BUTTON_BROWSE_SOURCE_BRANCH)->EnableWindow(!m_bPushAllBranches);
553 this->GetDlgItem(IDC_BUTTON_BROWSE_DEST_BRANCH)->EnableWindow(!m_bPushAllBranches);
554 this->GetDlgItem(IDC_TAGS)->EnableWindow(!m_bPushAllBranches);
555 if (m_bTags && m_bPushAllBranches)
557 m_bTags = FALSE;
558 UpdateData(FALSE);
560 EnDisablePushRemoteArchiveBranch();
563 void CPushDlg::OnBnClickedProcPushSetUpstream()
565 UpdateData();
566 this->GetDlgItem(IDC_PROC_PUSH_SET_PUSHREMOTE)->EnableWindow(!m_bSetUpstream);
567 this->GetDlgItem(IDC_PROC_PUSH_SET_PUSHBRANCH)->EnableWindow(!m_bSetUpstream);
568 m_bSetPushBranch = FALSE;
569 m_bSetPushRemote = FALSE;
570 UpdateData(FALSE);
573 void CPushDlg::OnBnClickedProcPushSetPushremote()
575 UpdateData();
576 this->GetDlgItem(IDC_PROC_PUSH_SET_UPSTREAM)->EnableWindow(!(m_bSetPushBranch || m_bSetPushRemote));
577 m_bSetUpstream = FALSE;
578 UpdateData(FALSE);