1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2016 - 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.
19 // ImportPatchDlg.cpp : implementation file
23 #include "TortoiseProc.h"
24 #include "ImportPatchDlg.h"
26 #include "MessageBox.h"
28 #include "SmartHandle.h"
29 #include "LoglistCommonResource.h"
31 // CImportPatchDlg dialog
33 IMPLEMENT_DYNAMIC(CImportPatchDlg
, CResizableStandAloneDialog
)
35 CImportPatchDlg::CImportPatchDlg(CWnd
* pParent
/*=nullptr*/)
36 : CResizableStandAloneDialog(CImportPatchDlg::IDD
, pParent
)
37 , m_LoadingThread(FALSE
)
39 m_cList
.m_ContextMenuMask
&=~ m_cList
.GetMenuMask(CPatchListCtrl::MENU_APPLY
);
43 m_bExitThread
= false;
44 m_bThreadRunning
=false;
48 m_bAddSignedOffBy
= FALSE
;
52 CImportPatchDlg::~CImportPatchDlg()
56 void CImportPatchDlg::DoDataExchange(CDataExchange
* pDX
)
58 CDialog::DoDataExchange(pDX
);
59 DDX_Control(pDX
, IDC_LIST_PATCH
,m_cList
);
60 DDX_Control(pDX
, IDC_AM_SPLIT
, m_wndSplitter
);
61 DDX_Check(pDX
, IDC_CHECK_3WAY
, m_b3Way
);
62 DDX_Check(pDX
, IDC_CHECK_IGNORE_SPACE
, m_bIgnoreSpace
);
63 DDX_Check(pDX
, IDC_SIGN_OFF
, m_bAddSignedOffBy
);
64 DDX_Check(pDX
, IDC_KEEP_CR
, m_bKeepCR
);
67 void CImportPatchDlg::AddAmAnchor()
69 AddAnchor(IDC_AM_TAB
,TOP_LEFT
,BOTTOM_RIGHT
);
70 AddAnchor(IDC_LIST_PATCH
, TOP_LEFT
, TOP_RIGHT
);
71 AddAnchor(IDC_AM_SPLIT
, TOP_LEFT
, TOP_RIGHT
);
72 AddAnchor(IDC_BUTTON_ADD
, TOP_RIGHT
);
73 AddAnchor(IDC_BUTTON_UP
, TOP_RIGHT
);
74 AddAnchor(IDC_BUTTON_DOWN
, TOP_RIGHT
);
75 AddAnchor(IDC_BUTTON_REMOVE
, TOP_RIGHT
);
77 AddAnchor(IDOK
,BOTTOM_RIGHT
);
78 AddAnchor(IDCANCEL
,BOTTOM_RIGHT
);
79 AddAnchor(IDHELP
, BOTTOM_RIGHT
);
81 AddAnchor(IDC_AM_DUMY_TAB
, TOP_LEFT
, BOTTOM_RIGHT
);
83 this->AddOthersToAnchor();
86 void CImportPatchDlg::SetSplitterRange()
88 if ((m_cList
)&&(m_ctrlTabCtrl
))
91 m_cList
.GetWindowRect(rcTop
);
92 ScreenToClient(rcTop
);
94 m_ctrlTabCtrl
.GetWindowRect(rcMiddle
);
95 ScreenToClient(rcMiddle
);
96 if (rcMiddle
.Height() && rcMiddle
.Width())
97 m_wndSplitter
.SetRange(rcTop
.top
+160, rcMiddle
.bottom
-160);
101 BOOL
CImportPatchDlg::OnInitDialog()
103 CResizableStandAloneDialog::OnInitDialog();
104 CAppUtils::MarkWindowAsUnpinnable(m_hWnd
);
106 // Let the TaskbarButtonCreated message through the UIPI filter. If we don't
107 // do this, Explorer would be unable to send that message to our window if we
108 // were running elevated. It's OK to make the call all the time, since if we're
109 // not elevated, this is a no-op.
110 CHANGEFILTERSTRUCT cfs
= { sizeof(CHANGEFILTERSTRUCT
) };
111 typedef BOOL STDAPICALLTYPE
ChangeWindowMessageFilterExDFN(HWND hWnd
, UINT message
, DWORD action
, PCHANGEFILTERSTRUCT pChangeFilterStruct
);
112 CAutoLibrary hUser
= AtlLoadSystemLibraryUsingFullPath(_T("user32.dll"));
115 ChangeWindowMessageFilterExDFN
*pfnChangeWindowMessageFilterEx
= (ChangeWindowMessageFilterExDFN
*)GetProcAddress(hUser
, "ChangeWindowMessageFilterEx");
116 if (pfnChangeWindowMessageFilterEx
)
118 pfnChangeWindowMessageFilterEx(m_hWnd
, WM_TASKBARBTNCREATED
, MSGFLT_ALLOW
, &cfs
);
121 m_pTaskbarList
.Release();
122 if (FAILED(m_pTaskbarList
.CoCreateInstance(CLSID_TaskbarList
)))
123 m_pTaskbarList
= nullptr;
127 GetClientRect(m_DlgOrigRect
);
128 m_cList
.GetClientRect(m_PatchListOrigRect
);
130 CWnd
*pwnd
=this->GetDlgItem(IDC_AM_DUMY_TAB
);
131 pwnd
->GetWindowRect(&rectDummy
);
132 this->ScreenToClient(rectDummy
);
134 if (!m_ctrlTabCtrl
.Create(CMFCTabCtrl::STYLE_FLAT
, rectDummy
, this, IDC_AM_TAB
))
136 TRACE0("Failed to create output tab window\n");
137 return FALSE
; // fail to create
139 m_ctrlTabCtrl
.SetResizeMode(CMFCTabCtrl::RESIZE_NO
);
140 // Create output panes:
142 if( ! this->m_PatchCtrl
.Create(_T("Scintilla"),_T("source"),0,rectDummy
,&m_ctrlTabCtrl
,0,0) )
144 TRACE0("Failed to create log message control");
148 m_PatchCtrl
.Call(SCI_SETREADONLY
, TRUE
);
149 m_PatchCtrl
.SetUDiffStyle();
151 if (!m_wndOutput
.Create(_T("Scintilla"),_T("source"),0,rectDummy
, &m_ctrlTabCtrl
, 0,0) )
153 TRACE0("Failed to create output windows\n");
154 return -1; // fail to create
156 m_wndOutput
.Init(-1);
157 m_wndOutput
.Call(SCI_SETREADONLY
, TRUE
);
159 m_tooltips
.AddTool(IDC_CHECK_3WAY
,IDS_AM_3WAY_TT
);
160 m_tooltips
.AddTool(IDC_CHECK_IGNORE_SPACE
,IDS_AM_IGNORE_SPACE_TT
);
162 m_ctrlTabCtrl
.AddTab(&m_PatchCtrl
, CString(MAKEINTRESOURCE(IDS_PATCH
)), 0);
163 m_ctrlTabCtrl
.AddTab(&m_wndOutput
, CString(MAKEINTRESOURCE(IDS_LOG
)), 1);
166 AdjustControlSize(IDC_CHECK_3WAY
);
167 AdjustControlSize(IDC_CHECK_IGNORE_SPACE
);
168 AdjustControlSize(IDC_SIGN_OFF
);
169 AdjustControlSize(IDC_KEEP_CR
);
171 m_PathList
.SortByPathname(true);
172 m_cList
.SetExtendedStyle( m_cList
.GetExtendedStyle()| LVS_EX_CHECKBOXES
);
173 m_cList
.InsertColumn(0, L
"");
175 for (int i
= 0; i
< m_PathList
.GetCount(); ++i
)
177 m_cList
.InsertItem(0,m_PathList
[i
].GetWinPath());
178 m_cList
.SetCheck(0,true);
180 m_cList
.SetColumnWidth(0, LVSCW_AUTOSIZE
);
182 DWORD yPos
= CRegDWORD(_T("Software\\TortoiseGit\\TortoiseProc\\ResizableState\\AMDlgSizer"));
183 RECT rcDlg
, rcLogMsg
, rcFileList
;
184 GetClientRect(&rcDlg
);
185 m_cList
.GetWindowRect(&rcLogMsg
);
186 ScreenToClient(&rcLogMsg
);
187 this->m_ctrlTabCtrl
.GetWindowRect(&rcFileList
);
188 ScreenToClient(&rcFileList
);
192 m_wndSplitter
.GetWindowRect(&rectSplitter
);
193 ScreenToClient(&rectSplitter
);
194 int delta
= yPos
- rectSplitter
.top
;
195 if ((rcLogMsg
.bottom
+ delta
> rcLogMsg
.top
)&&(rcLogMsg
.bottom
+ delta
< rcFileList
.bottom
- 30))
197 m_wndSplitter
.SetWindowPos(nullptr, 0, yPos
, 0, 0, SWP_NOSIZE
);
202 CAppUtils::SetListCtrlBackgroundImage(m_cList
.GetSafeHwnd(), IDI_IMPORTPATHCES_BKG
);
204 CString sWindowTitle
;
205 GetWindowText(sWindowTitle
);
206 CAppUtils::SetWindowTitle(m_hWnd
, g_Git
.m_CurrentDir
, sWindowTitle
);
208 EnableSaveRestore(_T("ImportDlg"));
215 BEGIN_MESSAGE_MAP(CImportPatchDlg
, CResizableStandAloneDialog
)
216 ON_LBN_SELCHANGE(IDC_LIST_PATCH
, &CImportPatchDlg::OnLbnSelchangeListPatch
)
217 ON_BN_CLICKED(IDC_BUTTON_ADD
, &CImportPatchDlg::OnBnClickedButtonAdd
)
218 ON_BN_CLICKED(IDC_BUTTON_UP
, &CImportPatchDlg::OnBnClickedButtonUp
)
219 ON_BN_CLICKED(IDC_BUTTON_DOWN
, &CImportPatchDlg::OnBnClickedButtonDown
)
220 ON_BN_CLICKED(IDC_BUTTON_REMOVE
, &CImportPatchDlg::OnBnClickedButtonRemove
)
221 ON_BN_CLICKED(IDOK
, &CImportPatchDlg::OnBnClickedOk
)
223 ON_BN_CLICKED(IDCANCEL
, &CImportPatchDlg::OnBnClickedCancel
)
224 ON_NOTIFY(LVN_ITEMCHANGED
, IDC_LIST_PATCH
, &CImportPatchDlg::OnHdnItemchangedListPatch
)
225 ON_REGISTERED_MESSAGE(WM_TASKBARBTNCREATED
, OnTaskbarBtnCreated
)
229 // CImportPatchDlg message handlers
231 void CImportPatchDlg::OnLbnSelchangeListPatch()
233 if(m_cList
.GetSelectedCount() == 0)
235 this->GetDlgItem(IDC_BUTTON_UP
)->EnableWindow(FALSE
);
236 this->GetDlgItem(IDC_BUTTON_DOWN
)->EnableWindow(FALSE
);
237 this->GetDlgItem(IDC_BUTTON_REMOVE
)->EnableWindow(FALSE
);
241 this->GetDlgItem(IDC_BUTTON_UP
)->EnableWindow(TRUE
);
242 this->GetDlgItem(IDC_BUTTON_DOWN
)->EnableWindow(TRUE
);
243 this->GetDlgItem(IDC_BUTTON_REMOVE
)->EnableWindow(TRUE
);
247 void CImportPatchDlg::OnBnClickedButtonAdd()
249 CFileDialog
dlg(TRUE
, nullptr, nullptr, OFN_HIDEREADONLY
| OFN_OVERWRITEPROMPT
| OFN_ALLOWMULTISELECT
, CString(MAKEINTRESOURCE(IDS_PATCHFILEFILTER
)));
250 dlg
.m_ofn
.nMaxFile
= 65536;
251 TCHAR path
[65536] = { 0 };
252 dlg
.m_ofn
.lpstrFile
= path
;
253 INT_PTR ret
= dlg
.DoModal();
254 SetCurrentDirectory(g_Git
.m_CurrentDir
);
258 pos
= dlg
.GetStartPosition();
261 CString file
= dlg
.GetNextPathName(pos
);
265 int index
= m_cList
.InsertItem(m_cList
.GetItemCount(), file
);
267 m_cList
.SetCheck(index
, true);
270 m_cList
.SetColumnWidth(0, LVSCW_AUTOSIZE
);
274 void CImportPatchDlg::OnBnClickedButtonUp()
277 pos
= m_cList
.GetFirstSelectedItemPosition();
279 // do nothing if the first selected item is the first item in the list
280 if (m_cList
.GetNextSelectedItem(pos
) == 0)
283 pos
= m_cList
.GetFirstSelectedItemPosition();
287 int index
= m_cList
.GetNextSelectedItem(pos
);
290 CString old
= m_cList
.GetItemText(index
, 0);
291 BOOL oldState
= m_cList
.GetCheck(index
);
292 m_cList
.DeleteItem(index
);
293 m_cList
.InsertItem(index
- 1, old
);
294 m_cList
.SetCheck(index
- 1, oldState
);
295 m_cList
.SetItemState(index
- 1, LVIS_SELECTED
, LVIS_SELECTED
);
296 m_cList
.SetItemState(index
, 0, LVIS_SELECTED
);
301 void CImportPatchDlg::OnBnClickedButtonDown()
303 if (m_cList
.GetSelectedCount() == 0)
307 pos
= m_cList
.GetFirstSelectedItemPosition();
308 // use an array to store all selected item indexes; the user won't select too much items
309 auto indexes
= std::make_unique
<int[]>(m_cList
.GetSelectedCount());
312 indexes
[i
++] = m_cList
.GetNextSelectedItem(pos
);
314 // don't move any item if the last selected item is the last item in the m_CommitList
315 // (that would change the order of the selected items)
316 if(indexes
[m_cList
.GetSelectedCount() - 1] < m_cList
.GetItemCount() - 1)
318 // iterate over the indexes backwards in order to correctly move multiselected items
319 for (i
= m_cList
.GetSelectedCount() - 1; i
>= 0; i
--)
321 int index
= indexes
[i
];
322 CString old
= m_cList
.GetItemText(index
, 0);
323 BOOL oldState
= m_cList
.GetCheck(index
);
324 m_cList
.DeleteItem(index
);
325 m_cList
.InsertItem(index
+ 1, old
);
326 m_cList
.SetCheck(index
+ 1, oldState
);
327 m_cList
.SetItemState(index
+ 1, LVIS_SELECTED
, LVIS_SELECTED
);
328 m_cList
.SetItemState(index
, 0, LVIS_SELECTED
);
333 void CImportPatchDlg::OnBnClickedButtonRemove()
336 pos
= m_cList
.GetFirstSelectedItemPosition();
339 int index
= m_cList
.GetNextSelectedItem(pos
);
340 m_cList
.DeleteItem(index
);
341 pos
= m_cList
.GetFirstSelectedItemPosition();
343 m_cList
.SetColumnWidth(0, LVSCW_AUTOSIZE
);
346 UINT
CImportPatchDlg::PatchThread()
349 path
.SetFromWin(g_Git
.m_CurrentDir
);
352 UpdateOkCancelText();
353 for (i
= m_CurrentItem
; i
< m_cList
.GetItemCount(); ++i
)
357 m_pTaskbarList
->SetProgressState(m_hWnd
, TBPF_NORMAL
);
358 m_pTaskbarList
->SetProgressValue(m_hWnd
, i
, m_cList
.GetItemCount());
361 m_cList
.SetItemData(i
, CPatchListCtrl::STATUS_APPLYING
|m_cList
.GetItemData(i
));
364 this->m_cList
.GetItemRect(i
,&rect
,LVIR_BOUNDS
);
365 this->m_cList
.InvalidateRect(rect
);
367 m_cList
.SetColumnWidth(0, LVSCW_AUTOSIZE
);
368 m_cList
.EnsureVisible(i
, FALSE
);
373 if(m_cList
.GetCheck(i
))
377 while(path
.HasRebaseApply())
380 m_pTaskbarList
->SetProgressState(m_hWnd
, TBPF_ERROR
);
382 int ret
= CMessageBox::Show(GetSafeHwnd(), IDS_PROC_APPLYPATCH_REBASEDIRFOUND
,
384 1, IDI_ERROR
, IDS_ABORTBUTTON
, IDS_SKIPBUTTON
, IDS_RESOLVEDBUTTON
);
389 cmd
= _T("git.exe am --abort");
392 cmd
= _T("git.exe am --skip");
396 cmd
= _T("git.exe am --resolved");
403 m_bExitThread
= TRUE
;
407 this->AddLogString(cmd
);
409 if (g_Git
.Run(cmd
, &output
, CP_UTF8
))
411 this->AddLogString(output
);
412 this->AddLogString(CString(MAKEINTRESOURCE(IDS_FAIL
)));
416 this->AddLogString(CString(MAKEINTRESOURCE(IDS_DONE
)));
423 cmd
= _T("git.exe am ");
425 if(this->m_bAddSignedOffBy
)
426 cmd
+= _T("--signoff ");
429 cmd
+= _T("--3way ");
431 if(this->m_bIgnoreSpace
)
432 cmd
+= _T("--ignore-space-change ");
435 cmd
+= _T("--keep-cr ");
438 cmd
+= m_cList
.GetItemText(i
,0);
441 this->AddLogString(cmd
);
443 if (g_Git
.Run(cmd
, &output
, CP_UTF8
))
445 //keep STATUS_APPLYING to let user retry failed patch
446 m_cList
.SetItemData(i
, CPatchListCtrl::STATUS_APPLY_FAIL
|CPatchListCtrl::STATUS_APPLYING
);
447 this->AddLogString(output
);
448 this->AddLogString(CString(MAKEINTRESOURCE(IDS_FAIL
)));
450 m_pTaskbarList
->SetProgressState(m_hWnd
, TBPF_ERROR
);
456 m_cList
.SetItemData(i
, CPatchListCtrl::STATUS_APPLY_SUCCESS
);
457 this->AddLogString(CString(MAKEINTRESOURCE(IDS_SUCCESS
)));
464 sMessage
.Format(IDS_PROC_SKIPPATCH
, (LPCTSTR
)m_cList
.GetItemText(i
, 0));
465 AddLogString(sMessage
);
466 m_cList
.SetItemData(i
, CPatchListCtrl::STATUS_APPLY_SKIP
);
469 m_cList
.SetItemData(m_CurrentItem
, (~CPatchListCtrl::STATUS_APPLYING
)&m_cList
.GetItemData(i
));
472 this->m_cList
.GetItemRect(i
,&rect
,LVIR_BOUNDS
);
473 this->m_cList
.InvalidateRect(rect
);
475 UpdateOkCancelText();
478 //in case am fail, need refresh finial item status
480 this->m_cList
.GetItemRect(i
,&rect
,LVIR_BOUNDS
);
481 this->m_cList
.InvalidateRect(rect
);
483 this->m_cList
.GetItemRect(m_CurrentItem
,&rect
,LVIR_BOUNDS
);
484 this->m_cList
.InvalidateRect(rect
);
488 m_pTaskbarList
->SetProgressValue(m_hWnd
, m_CurrentItem
, m_cList
.GetItemCount());
489 if (m_bExitThread
&& m_CurrentItem
!= m_cList
.GetItemCount())
490 m_pTaskbarList
->SetProgressState(m_hWnd
, TBPF_PAUSED
);
491 else if (!m_bExitThread
&& m_CurrentItem
== m_cList
.GetItemCount())
492 m_pTaskbarList
->SetProgressState(m_hWnd
, TBPF_NORMAL
);
495 EnableInputCtrl(true);
496 InterlockedExchange(&m_bThreadRunning
, FALSE
);
497 UpdateOkCancelText();
501 void CImportPatchDlg::OnBnClickedOk()
514 m_ctrlTabCtrl
.SetActiveTab(1);
516 EnableInputCtrl(false);
517 InterlockedExchange(&m_bThreadRunning
, TRUE
);
518 InterlockedExchange(&this->m_bExitThread
, FALSE
);
519 if ((m_LoadingThread
= AfxBeginThread(ThreadEntry
, this)) == nullptr)
521 InterlockedExchange(&m_bThreadRunning
, FALSE
);
522 CMessageBox::Show(GetSafeHwnd(), IDS_ERR_THREADSTARTFAILED
, IDS_APPNAME
, MB_OK
| MB_ICONERROR
);
526 void CImportPatchDlg::DoSize(int delta
)
528 this->RemoveAllAnchors();
530 CSplitterControl::ChangeHeight(GetDlgItem(IDC_LIST_PATCH
), delta
, CW_TOPALIGN
);
531 //CSplitterControl::ChangeHeight(GetDlgItem(), delta, CW_TOPALIGN);
532 CSplitterControl::ChangeHeight(GetDlgItem(IDC_AM_TAB
), -delta
, CW_BOTTOMALIGN
);
533 //CSplitterControl::ChangeHeight(GetDlgItem(), -delta, CW_BOTTOMALIGN);
534 CSplitterControl::ChangePos(GetDlgItem(IDC_CHECK_3WAY
), 0, delta
);
535 CSplitterControl::ChangePos(GetDlgItem(IDC_CHECK_IGNORE_SPACE
), 0, delta
);
536 CSplitterControl::ChangePos(GetDlgItem(IDC_SIGN_OFF
), 0, delta
);
537 CSplitterControl::ChangePos(GetDlgItem(IDC_KEEP_CR
), 0, delta
);
540 // adjust the minimum size of the dialog to prevent the resizing from
541 // moving the list control too far down.
543 m_cList
.GetClientRect(rcLogMsg
);
544 SetMinTrackSize(CSize(m_DlgOrigRect
.Width(), m_DlgOrigRect
.Height()-m_PatchListOrigRect
.Height()+rcLogMsg
.Height()));
547 // m_CommitList.Invalidate();
549 // GetDlgItem(IDC_LOGMESSAGE)->Invalidate();
551 this->m_ctrlTabCtrl
.Invalidate();
554 void CImportPatchDlg::OnSize(UINT nType
, int cx
, int cy
)
556 CResizableStandAloneDialog::OnSize(nType
, cx
, cy
);
561 LRESULT
CImportPatchDlg::DefWindowProc(UINT message
, WPARAM wParam
, LPARAM lParam
)
565 if (wParam
== IDC_AM_SPLIT
)
567 SPC_NMHDR
* pHdr
= (SPC_NMHDR
*) lParam
;
573 return CResizableStandAloneDialog::DefWindowProc(message
, wParam
, lParam
);
576 void CImportPatchDlg::SaveSplitterPos()
580 CRegDWORD regPos
= CRegDWORD(_T("Software\\TortoiseGit\\TortoiseProc\\ResizableState\\AMDlgSizer"));
582 m_wndSplitter
.GetWindowRect(&rectSplitter
);
583 ScreenToClient(&rectSplitter
);
584 regPos
= rectSplitter
.top
;
588 void CImportPatchDlg::EnableInputCtrl(BOOL b
)
590 this->GetDlgItem(IDC_BUTTON_UP
)->EnableWindow(b
);
591 this->GetDlgItem(IDC_BUTTON_DOWN
)->EnableWindow(b
);
592 this->GetDlgItem(IDC_BUTTON_REMOVE
)->EnableWindow(b
);
593 this->GetDlgItem(IDC_BUTTON_ADD
)->EnableWindow(b
);
594 this->GetDlgItem(IDOK
)->EnableWindow(b
);
597 void CImportPatchDlg::UpdateOkCancelText()
599 if (this->m_bThreadRunning
&& !IsFinish())
601 this->GetDlgItem(IDOK
)->EnableWindow(FALSE
);
602 this->GetDlgItem(IDCANCEL
)->SetWindowText(CString(MAKEINTRESOURCE(IDS_ABORTBUTTON
)));
604 else if (!IsFinish())
606 this->GetDlgItem(IDOK
)->EnableWindow(TRUE
);
610 this->GetDlgItem(IDCANCEL
)->EnableWindow(FALSE
);
611 this->GetDlgItem(IDOK
)->SetWindowText(CString(MAKEINTRESOURCE(IDS_OKBUTTON
)));
614 void CImportPatchDlg::OnBnClickedCancel()
616 if(this->m_bThreadRunning
)
618 InterlockedExchange(&m_bExitThread
,TRUE
);
623 path
.SetFromWin(g_Git
.m_CurrentDir
);
624 if(path
.HasRebaseApply())
625 if (CMessageBox::Show(GetSafeHwnd(), IDS_PROC_APPLYPATCH_GITAMACTIVE
, IDS_APPNAME
, MB_YESNO
| MB_ICONQUESTION
) == IDYES
)
628 if (g_Git
.Run(_T("git.exe am --abort"), &output
, CP_UTF8
))
629 MessageBox(output
, _T("TortoiseGit"), MB_OK
| MB_ICONERROR
);
635 void CImportPatchDlg::AddLogString(CString str
)
637 this->m_wndOutput
.SendMessage(SCI_SETREADONLY
, FALSE
);
638 CStringA sTextA
= m_wndOutput
.StringForControl(str
);//CUnicodeUtils::GetUTF8(str);
639 this->m_wndOutput
.SendMessage(SCI_REPLACESEL
, 0, (LPARAM
)(LPCSTR
)sTextA
);
640 this->m_wndOutput
.SendMessage(SCI_REPLACESEL
, 0, (LPARAM
)(LPCSTR
)"\n");
641 this->m_wndOutput
.SendMessage(SCI_SETREADONLY
, TRUE
);
642 //this->m_wndOutput.SendMessage(SCI_LINESCROLL,0,0x7FFFFFFF);
644 BOOL
CImportPatchDlg::PreTranslateMessage(MSG
* pMsg
)
646 if (pMsg
->message
== WM_KEYDOWN
)
648 switch (pMsg
->wParam
)
650 /* Avoid TAB control destroy but dialog exist*/
654 TCHAR buff
[128] = { 0 };
655 ::GetClassName(pMsg
->hwnd
,buff
,128);
657 /* Use MSFTEDIT_CLASS http://msdn.microsoft.com/en-us/library/bb531344.aspx */
658 if (_tcsnicmp(buff
, MSFTEDIT_CLASS
, 128) == 0 || //Unicode and MFC 2012 and later
659 _tcsnicmp(buff
, RICHEDIT_CLASS
, 128) == 0 || //ANSI or MFC 2010
660 _tcsnicmp(buff
,_T("Scintilla"),128)==0 ||
661 _tcsnicmp(buff
,_T("SysListView32"),128)==0||
662 ::GetParent(pMsg
->hwnd
) == this->m_ctrlTabCtrl
.m_hWnd
)
664 this->PostMessage(WM_KEYDOWN
,VK_ESCAPE
,0);
670 return CResizableStandAloneDialog::PreTranslateMessage(pMsg
);
673 void CImportPatchDlg::OnHdnItemchangedListPatch(NMHDR
* /*pNMHDR*/, LRESULT
*pResult
)
677 if(this->m_cList
.GetSelectedCount() != 1)
679 m_PatchCtrl
.SendMessage(SCI_SETREADONLY
, FALSE
);
680 m_PatchCtrl
.SetText(CString());
681 m_PatchCtrl
.SendMessage(SCI_SETREADONLY
, TRUE
);
688 pos
= m_cList
.GetFirstSelectedItemPosition();
689 int selected
= m_cList
.GetNextSelectedItem(pos
);
691 if(selected
>=0&& selected
< m_cList
.GetItemCount())
693 CString str
= m_cList
.GetItemText(selected
,0);
694 m_PatchCtrl
.SendMessage(SCI_SETREADONLY
, FALSE
);
695 m_PatchCtrl
.SetText(text
);
696 m_PatchCtrl
.LoadFromFile(str
);
697 m_PatchCtrl
.SendMessage(SCI_SETREADONLY
, TRUE
);
702 m_PatchCtrl
.SendMessage(SCI_SETREADONLY
, FALSE
);
703 m_PatchCtrl
.SetText(text
);
704 m_PatchCtrl
.SendMessage(SCI_SETREADONLY
, TRUE
);
709 LRESULT
CImportPatchDlg::OnTaskbarBtnCreated(WPARAM
/*wParam*/, LPARAM
/*lParam*/)
711 m_pTaskbarList
.Release();
712 m_pTaskbarList
.CoCreateInstance(CLSID_TaskbarList
);
713 SetUUIDOverlayIcon(m_hWnd
);