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
24 #include "TortoiseProc.h"
31 #include "BrowseRefsDlg.h"
32 #include "RefLogDlg.h"
33 #include "MessageBox.h"
37 IMPLEMENT_DYNAMIC(CPushDlg
, CHorizontalResizableStandAloneDialog
)
39 CPushDlg::CPushDlg(CWnd
* pParent
/*=NULL*/)
40 : CHorizontalResizableStandAloneDialog(CPushDlg::IDD
, pParent
)
41 , m_bPushAllBranches(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();
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
)
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
);
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_regPushAllRemotes
= CRegDWORD(_T("Software\\TortoiseGit\\TortoiseProc\\Push\\") + WorkingDir
+ _T("\\AllRemotes"), FALSE
);
160 m_bPushAllRemotes
= m_regPushAllRemotes
;
161 m_regPushAllBranches
= CRegDWORD(_T("Software\\TortoiseGit\\TortoiseProc\\Push\\") + WorkingDir
+ _T("\\AllBranches"), FALSE
);
162 m_bPushAllBranches
= m_regPushAllBranches
;
163 m_RemoteURL
.LoadHistory(CString(_T("Software\\TortoiseGit\\History\\PushURLS\\"))+WorkingDir
, _T("url"));
164 CString clippath
=CAppUtils::GetClipboardLink();
165 if(clippath
.IsEmpty())
166 m_RemoteURL
.SetCurSel(0);
168 m_RemoteURL
.SetWindowText(clippath
);
170 m_RemoteURL
.EnableWindow(FALSE
);
171 CheckRadioButton(IDC_RD_REMOTE
,IDC_RD_URL
,IDC_RD_REMOTE
);
174 m_regThinPack
= CRegDWORD(_T("Software\\TortoiseGit\\TortoiseProc\\Push\\") + WorkingDir
+ _T("\\ThinPack"), FALSE
);
175 m_bPack
= m_regThinPack
;
176 this->m_regAutoLoad
= CRegDWORD(CString(_T("Software\\TortoiseGit\\History\\PushDlgAutoLoad\\"))+WorkingDir
,
178 m_bAutoLoad
= this->m_regAutoLoad
;
179 if(!CAppUtils::IsSSHPutty())
182 m_BrowseLocalRef
.m_bRightArrow
= TRUE
;
183 m_BrowseLocalRef
.m_bDefaultClick
= FALSE
;
184 m_BrowseLocalRef
.m_bMarkDefault
= FALSE
;
185 m_BrowseLocalRef
.AddEntry(CString(MAKEINTRESOURCE(IDS_REFBROWSE
)));
186 m_BrowseLocalRef
.AddEntry(CString(MAKEINTRESOURCE(IDS_LOG
)));
187 m_BrowseLocalRef
.AddEntry(CString(MAKEINTRESOURCE(IDS_REFLOG
)));
189 m_tooltips
.Create(this);
190 m_tooltips
.AddTool(IDC_PROC_PUSH_SET_PUSHBRANCH
, IDS_PUSHDLG_PUSHBRANCH_TT
);
191 m_tooltips
.AddTool(IDC_PROC_PUSH_SET_PUSHREMOTE
, IDS_PUSHDLG_PUSHREMOTE_TT
);
193 m_regRecurseSubmodules
= CRegDWORD(
194 CString(_T("Software\\TortoiseGit\\History\\PushRecurseSubmodules\\")) + WorkingDir
, m_RecurseSubmodules
);
195 m_RecurseSubmodules
= m_regRecurseSubmodules
;
196 m_RecurseSubmodulesCombo
.AddString(CString(MAKEINTRESOURCE(IDS_NONE
)));
197 m_RecurseSubmodulesCombo
.AddString(CString(MAKEINTRESOURCE(IDS_RECURSE_SUBMODULES_CHECK
)));
198 m_RecurseSubmodulesCombo
.AddString(CString(MAKEINTRESOURCE(IDS_RECURSE_SUBMODULES_ONDEMAND
)));
199 m_RecurseSubmodulesCombo
.SetCurSel(m_RecurseSubmodules
);
203 this->UpdateData(false);
205 OnBnClickedPushall();
209 void CPushDlg::Refresh()
211 CString WorkingDir
=g_Git
.m_CurrentDir
;
212 WorkingDir
.Replace(_T(':'),_T('_'));
214 CRegString
remote(CString(_T("Software\\TortoiseGit\\History\\PushRemote\\")+WorkingDir
));
215 m_RemoteReg
= remote
;
221 list
.push_back(CString(MAKEINTRESOURCE(IDS_PROC_PUSHFETCH_ALLREMOTES
)));
222 if(!g_Git
.GetRemoteList(list
))
224 if (list
.size() <= 2)
225 list
.erase(list
.begin());
227 for (unsigned int i
= 0; i
< list
.size(); ++i
)
229 m_Remote
.AddString(list
[i
]);
230 if(list
[i
] == remote
)
234 // if the last selected remote was "- All -" and "- All -" is still in the list -> select it
235 if (list
.size() > 1 && remote
== CString(MAKEINTRESOURCE(IDS_PROC_PUSHFETCH_ALLREMOTES
)))
237 m_Remote
.SetCurSel(sel
);
241 m_BranchSource
.Reset();
242 m_BranchSource
.AddString(_T(" ")); // empty string does not work, for removal of remote branches/tags
243 m_BranchSource
.SetMaxHistoryItems(0x7FFFFFFF);
244 if(!g_Git
.GetBranchList(list
,¤t
))
246 for (unsigned int i
= 0; i
< list
.size(); ++i
)
247 m_BranchSource
.AddString(list
[i
]);
248 ++current
; // shift for " "
250 if (wcsncmp(m_BranchSourceName
, _T("refs/"), 5) == 0)
251 m_BranchSourceName
= m_BranchSourceName
.Mid(5);
252 if (wcsncmp(m_BranchSourceName
, _T("heads/"), 6) == 0)
254 m_BranchSourceName
= m_BranchSourceName
.Mid(6);
255 m_BranchSource
.SetCurSel(m_BranchSource
.FindStringExact(-1, m_BranchSourceName
));
257 else if (wcsncmp(m_BranchSourceName
, _T("remotes/"), 8) == 0)
258 m_BranchSource
.SetCurSel(m_BranchSource
.FindStringExact(-1, m_BranchSourceName
));
260 m_BranchSource
.SetCurSel(current
);
262 GetRemoteBranch(m_BranchSource
.GetString());
264 this->GetDlgItem(IDOK
)->EnableWindow(m_BranchSource
.GetCount() != 0);
266 if (list
.size() > 1 && m_bPushAllRemotes
)
267 m_Remote
.SetCurSel(0);
268 m_bPushAllRemotes
= FALSE
; // reset to FALSE, so that a refresh does not reselect all even if it was already deselected by user; correct value will be set in OnBnClickedOk method
271 void CPushDlg::GetRemoteBranch(CString currentBranch
)
273 CString WorkingDir
=g_Git
.m_CurrentDir
;
274 WorkingDir
.Replace(_T(':'), _T('_'));
276 if (currentBranch
.IsEmpty())
278 EnDisablePushRemoteArchiveBranch();
284 configName
.Format(L
"branch.%s.pushremote", currentBranch
);
285 CString pushRemote
= g_Git
.GetConfigValue(configName
);
286 if( pushRemote
.IsEmpty() )
288 configName
.Format(L
"branch.%s.remote", currentBranch
);
289 pushRemote
= g_Git
.GetConfigValue(configName
);
292 CRegString
remote(CString(_T("Software\\TortoiseGit\\History\\PushRemote\\")+WorkingDir
));
294 if (!pushRemote
.IsEmpty())
297 // if a pushRemote exists, select it
298 for (int i
= 0; i
< m_Remote
.GetCount(); ++i
)
301 int n
= m_Remote
.GetLBTextLen(i
);
302 m_Remote
.GetLBText(i
, str
.GetBuffer(n
));
304 if (str
== pushRemote
)
306 m_Remote
.SetCurSel(i
);
311 // select the only remote if only one exists
312 else if (m_Remote
.GetCount() == 1)
313 m_Remote
.SetCurSel(0);
314 // select no remote if no push-remote is specified AND push to all remotes is not selected
315 else if (!(m_Remote
.GetCount() > 1 && m_Remote
.GetCurSel() == 0))
317 m_Remote
.SetCurSel(-1);
320 //Select pull-branch from current branch
321 configName
.Format(L
"branch.%s.pushbranch", currentBranch
);
322 CString pushBranch
= g_Git
.GetConfigValue(configName
); // do not strip branch name (for gerrit), see issue #1609)
323 if( pushBranch
.IsEmpty() )
325 configName
.Format(L
"branch.%s.merge", currentBranch
);
326 pushBranch
= CGit::StripRefName(g_Git
.GetConfigValue(configName
));
329 m_BranchRemote
.LoadHistory(CString(_T("Software\\TortoiseGit\\History\\RemoteBranch\\"))+WorkingDir
, _T("branch"));
330 if( !pushBranch
.IsEmpty() )
331 m_BranchRemote
.AddString(pushBranch
);
333 EnDisablePushRemoteArchiveBranch();
336 void CPushDlg::EnDisablePushRemoteArchiveBranch()
338 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())
340 DialogEnableWindow(IDC_PROC_PUSH_SET_PUSHBRANCH
, FALSE
);
341 DialogEnableWindow(IDC_PROC_PUSH_SET_PUSHREMOTE
, FALSE
);
342 bool enableUpstream
= (GetCheckedRadioButton(IDC_RD_REMOTE
, IDC_RD_URL
) != IDC_RD_URL
&& (!m_BranchSource
.GetString().Trim().IsEmpty() || m_bPushAllBranches
));
343 DialogEnableWindow(IDC_PROC_PUSH_SET_UPSTREAM
, enableUpstream
);
344 if (m_bSetUpstream
&& !enableUpstream
)
345 m_bSetUpstream
= FALSE
;
346 m_bSetPushRemote
= FALSE
;
347 m_bSetPushBranch
= FALSE
;
352 DialogEnableWindow(IDC_PROC_PUSH_SET_UPSTREAM
, TRUE
);
353 DialogEnableWindow(IDC_PROC_PUSH_SET_PUSHBRANCH
, !m_bSetUpstream
);
354 DialogEnableWindow(IDC_PROC_PUSH_SET_PUSHREMOTE
, !m_bSetUpstream
);
358 // CPushDlg message handlers
360 void CPushDlg::OnBnClickedRd()
362 if( GetCheckedRadioButton(IDC_RD_REMOTE
,IDC_RD_URL
) == IDC_RD_REMOTE
)
364 m_Remote
.EnableWindow(TRUE
);
365 GetDlgItem(IDC_REMOTE_MANAGE
)->EnableWindow(TRUE
);
366 m_RemoteURL
.EnableWindow(FALSE
);
368 if( GetCheckedRadioButton(IDC_RD_REMOTE
,IDC_RD_URL
) == IDC_RD_URL
)
370 m_Remote
.EnableWindow(FALSE
);
371 GetDlgItem(IDC_REMOTE_MANAGE
)->EnableWindow(FALSE
);
372 m_RemoteURL
.EnableWindow(TRUE
);
374 EnDisablePushRemoteArchiveBranch();
378 void CPushDlg::OnCbnSelchangeBranchSource()
380 GetRemoteBranch(m_BranchSource
.GetString());
383 void CPushDlg::OnBnClickedOk()
385 CHorizontalResizableStandAloneDialog::UpdateData(TRUE
);
387 if( GetCheckedRadioButton(IDC_RD_REMOTE
,IDC_RD_URL
) == IDC_RD_REMOTE
)
389 m_URL
=m_Remote
.GetString();
392 CMessageBox::Show(NULL
, IDS_PROC_GITCONFIG_REMOTEEMPTY
, IDS_APPNAME
, MB_OK
);
395 m_bPushAllRemotes
= (m_Remote
.GetCurSel() == 0 && m_Remote
.GetCount() > 1);
397 if( GetCheckedRadioButton(IDC_RD_REMOTE
,IDC_RD_URL
) == IDC_RD_URL
)
399 m_URL
=m_RemoteURL
.GetString();
402 if (!m_bPushAllBranches
)
404 this->m_BranchRemoteName
=m_BranchRemote
.GetString().Trim();
405 this->m_BranchSourceName
=m_BranchSource
.GetString().Trim();
407 if (m_BranchSourceName
.IsEmpty() && m_BranchRemoteName
.IsEmpty())
409 if (CMessageBox::Show(NULL
, IDS_B_T_BOTHEMPTY
, IDS_APPNAME
, MB_ICONQUESTION
| MB_YESNO
) == IDNO
)
412 if (m_BranchSourceName
.IsEmpty() && !m_BranchRemoteName
.IsEmpty())
414 if (CMessageBox::Show(NULL
, IDS_B_T_LOCALEMPTY
, IDS_APPNAME
, MB_ICONEXCLAMATION
| MB_YESNO
) == IDNO
)
417 else if (!m_BranchRemoteName
.IsEmpty() && !g_Git
.IsBranchNameValid(this->m_BranchRemoteName
))
419 CMessageBox::Show(NULL
, IDS_B_T_INVALID
, IDS_APPNAME
, MB_OK
);
422 else if (!m_BranchSourceName
.IsEmpty() && !g_Git
.IsBranchTagNameUnique(m_BranchSourceName
))
424 CMessageBox::Show(NULL
, IDS_B_T_NOT_UNIQUE
, IDS_APPNAME
, MB_OK
| MB_ICONEXCLAMATION
);
429 // do not store branch names on removal
430 if (m_RemoteURL
.IsWindowEnabled())
431 m_RemoteURL
.SaveHistory(); // do not store Remote URLs if not used
432 this->m_BranchRemote
.SaveHistory();
433 m_RemoteReg
= m_Remote
.GetString();
435 if (!m_BranchSourceName
.IsEmpty())
438 if (m_bSetPushBranch
)
440 configName
.Format(L
"branch.%s.pushbranch", m_BranchSourceName
);
441 if (!m_BranchRemoteName
.IsEmpty())
442 g_Git
.SetConfigValue(configName
, m_BranchRemoteName
);
444 g_Git
.UnsetConfigValue(configName
);
446 if (m_bSetPushRemote
)
448 configName
.Format(L
"branch.%s.pushremote", m_BranchSourceName
);
449 if (!m_URL
.IsEmpty())
450 g_Git
.SetConfigValue(configName
, m_URL
);
452 g_Git
.UnsetConfigValue(configName
);
458 m_regPushAllBranches
= m_bPushAllBranches
;
459 m_regPushAllRemotes
= m_bPushAllRemotes
;
460 m_regThinPack
= m_bPack
;
461 this->m_regAutoLoad
= m_bAutoLoad
;
462 m_RecurseSubmodules
= m_RecurseSubmodulesCombo
.GetCurSel();
463 if (m_RecurseSubmodules
== 2 && CAppUtils::GetMsysgitVersion() < 0x01070b00)
466 gitver
.Format(IDS_GITVER_REQUIRED
, _T("--recurse-submodules=on-demand"), _T("1.7.11"));
467 CMessageBox::Show(m_hWnd
, gitver
, _T("TortoiseGit"), MB_OK
| MB_ICONERROR
);
470 m_regRecurseSubmodules
= m_RecurseSubmodules
;
472 CHorizontalResizableStandAloneDialog::OnOK();
475 void CPushDlg::OnBnClickedRemoteManage()
477 CAppUtils::LaunchRemoteSetting();
481 void CPushDlg::OnBnClickedButtonBrowseSourceBranch()
483 switch (m_BrowseLocalRef
.GetCurrentEntry())
485 case 0: /* Browse Refence*/
487 if(CBrowseRefsDlg::PickRefForCombo(&m_BranchSource
, gPickRef_Head
))
488 OnCbnSelchangeBranchSource();
496 if(dlg
.DoModal() == IDOK
)
498 if (dlg
.GetSelectedHash().IsEmpty())
501 m_BranchSource
.SetWindowText(dlg
.GetSelectedHash());
502 OnCbnSelchangeBranchSource();
510 if(dlg
.DoModal() == IDOK
)
512 m_BranchSource
.SetWindowText(dlg
.m_SelectedHash
);
513 OnCbnSelchangeBranchSource();
520 void CPushDlg::OnBnClickedButtonBrowseDestBranch()
522 CString remoteBranchName
;
524 m_BranchRemote
.GetWindowText(remoteBranchName
);
525 remoteName
= m_Remote
.GetString();
526 remoteBranchName
= remoteName
+ '/' + remoteBranchName
;
527 remoteBranchName
= CBrowseRefsDlg::PickRef(false, remoteBranchName
, gPickRef_Remote
);
528 if(remoteBranchName
.IsEmpty())
530 remoteBranchName
= remoteBranchName
.Mid(13);//Strip 'refs/remotes/'
531 int slashPlace
= remoteBranchName
.Find('/');
532 remoteName
= remoteBranchName
.Left(slashPlace
);
533 remoteBranchName
= remoteBranchName
.Mid(slashPlace
+ 1); //Strip remote name (for example 'origin/')
536 int remoteSel
= m_Remote
.FindStringExact(0,remoteName
);
538 m_Remote
.SetCurSel(remoteSel
);
541 m_BranchRemote
.AddString(remoteBranchName
, 0);
544 BOOL
CPushDlg::PreTranslateMessage(MSG
* pMsg
)
546 m_tooltips
.RelayEvent(pMsg
);
548 if (pMsg
->message
== WM_KEYDOWN
)
550 switch (pMsg
->wParam
)
560 return CHorizontalResizableStandAloneDialog::PreTranslateMessage(pMsg
);
563 void CPushDlg::OnBnClickedPushall()
566 this->GetDlgItem(IDC_BRANCH_REMOTE
)->EnableWindow(!m_bPushAllBranches
);
567 this->GetDlgItem(IDC_BRANCH_SOURCE
)->EnableWindow(!m_bPushAllBranches
);
568 this->GetDlgItem(IDC_BUTTON_BROWSE_SOURCE_BRANCH
)->EnableWindow(!m_bPushAllBranches
);
569 this->GetDlgItem(IDC_BUTTON_BROWSE_DEST_BRANCH
)->EnableWindow(!m_bPushAllBranches
);
570 EnDisablePushRemoteArchiveBranch();
573 void CPushDlg::OnBnClickedProcPushSetUpstream()
576 this->GetDlgItem(IDC_PROC_PUSH_SET_PUSHREMOTE
)->EnableWindow(!m_bSetUpstream
);
577 this->GetDlgItem(IDC_PROC_PUSH_SET_PUSHBRANCH
)->EnableWindow(!m_bSetUpstream
);
578 m_bSetPushBranch
= FALSE
;
579 m_bSetPushRemote
= FALSE
;
583 void CPushDlg::OnBnClickedProcPushSetPushremote()
586 this->GetDlgItem(IDC_PROC_PUSH_SET_UPSTREAM
)->EnableWindow(!(m_bSetPushBranch
|| m_bSetPushRemote
));
587 m_bSetUpstream
= FALSE
;