Also add --progress to git submodule update --init
[TortoiseGit.git] / src / TortoiseProc / PatchListCtrl.cpp
blobb2fabc32282686bab7ce7557db7bf248c0a8bc64
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2009-2013, 2015-2016, 2018 - 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 // PathListCtrl.cpp : implementation file
22 #include "stdafx.h"
23 #include "TortoiseProc.h"
24 #include "PatchListCtrl.h"
25 #include "IconMenu.h"
26 #include "AppUtils.h"
27 #include "Git.h"
28 #include "AppUtils.h"
29 // CPatchListCtrl
31 IMPLEMENT_DYNAMIC(CPatchListCtrl, CListCtrl)
33 CPatchListCtrl::CPatchListCtrl()
34 : m_ContextMenuMask(0xFFFFFFFF)
38 CPatchListCtrl::~CPatchListCtrl()
42 void CPatchListCtrl::PreSubclassWindow()
44 __super::PreSubclassWindow();
46 // use the default font, create a copy of it and
47 // change the copy to BOLD (leave the rest of the font
48 // the same)
49 LOGFONT lf = { 0 };
50 GetFont()->GetLogFont(&lf);
51 lf.lfWeight = FW_BOLD;
52 m_boldFont.CreateFontIndirect(&lf);
55 BEGIN_MESSAGE_MAP(CPatchListCtrl, CListCtrl)
56 ON_NOTIFY_REFLECT(NM_DBLCLK, &CPatchListCtrl::OnNMDblclk)
57 ON_WM_CONTEXTMENU()
58 ON_NOTIFY_REFLECT(NM_CUSTOMDRAW, &CPatchListCtrl::OnNMCustomdraw)
59 ON_WM_DROPFILES()
60 END_MESSAGE_MAP()
64 // CPatchListCtrl message handlers
68 void CPatchListCtrl::OnNMDblclk(NMHDR *pNMHDR, LRESULT *pResult)
70 LPNMITEMACTIVATE pNMItemActivate = reinterpret_cast<LPNMITEMACTIVATE>(pNMHDR);
72 CString path=GetItemText(pNMItemActivate->iItem,0);
73 CTGitPath gitpath;
74 gitpath.SetFromWin(path);
76 CAppUtils::StartUnifiedDiffViewer(path, gitpath.GetFilename(), 0, !!(GetAsyncKeyState(VK_SHIFT) & 0x8000));
78 *pResult = 0;
81 void CPatchListCtrl::OnContextMenu(CWnd* /*pWnd*/, CPoint point)
83 int selected=this->GetSelectedCount();
84 int index=0;
85 POSITION pos=this->GetFirstSelectedItemPosition();
86 index=this->GetNextSelectedItem(pos);
88 CIconMenu popup;
89 if (popup.CreatePopupMenu())
91 if(selected == 1)
93 if( m_ContextMenuMask&GetMenuMask(MENU_VIEWPATCH))
94 popup.AppendMenuIcon(MENU_VIEWPATCH, IDS_MENU_VIEWPATCH, 0);
96 if( m_ContextMenuMask&GetMenuMask(MENU_VIEWWITHMERGE))
97 popup.AppendMenuIcon(MENU_VIEWWITHMERGE, IDS_MENU_VIEWWITHMERGE, 0);
99 popup.SetDefaultItem(MENU_VIEWPATCH, FALSE);
101 if(selected >= 1)
103 if( m_ContextMenuMask&GetMenuMask(MENU_SENDMAIL))
104 popup.AppendMenuIcon(MENU_SENDMAIL, IDS_MENU_SENDMAIL, IDI_MENUSENDMAIL);
106 if( m_ContextMenuMask&GetMenuMask(MENU_APPLY))
107 popup.AppendMenuIcon(MENU_APPLY, IDS_MENU_APPLY, 0);
110 int cmd = popup.TrackPopupMenu(TPM_RETURNCMD | TPM_LEFTALIGN | TPM_NONOTIFY, point.x, point.y, this);
112 switch (cmd)
114 case MENU_VIEWPATCH:
116 CString path=GetItemText(index,0);
117 CTGitPath gitpath;
118 gitpath.SetFromWin(path);
120 CAppUtils::StartUnifiedDiffViewer(path, gitpath.GetFilename(), 0, !!(GetAsyncKeyState(VK_SHIFT) & 0x8000));
121 break;
123 case MENU_VIEWWITHMERGE:
125 CString path=GetItemText(index,0);
126 CTGitPath gitpath;
127 gitpath.SetFromWin(path);
129 CTGitPath dir;
130 dir.SetFromGit(g_Git.m_CurrentDir);
132 CAppUtils::StartExtPatch(gitpath,dir);
133 break;
135 case MENU_SENDMAIL:
137 LaunchProc(L"sendmail");
138 break;
140 case MENU_APPLY:
142 LaunchProc(L"importpatch");
144 break;
146 default:
147 break;
152 int CPatchListCtrl::LaunchProc(const CString& command)
154 CString tempfile=GetTempFile();
155 POSITION pos=this->GetFirstSelectedItemPosition();
156 CFile file;
157 file.Open(tempfile,CFile::modeWrite|CFile::modeCreate);
159 while(pos)
161 int index = this->GetNextSelectedItem(pos);
162 CString one=this->GetItemText(index,0);
163 file.Write((LPCTSTR)one, sizeof(TCHAR) * one.GetLength());
164 file.Write(L"\n", sizeof(TCHAR) * 1);
167 file.Close();
169 CString cmd = L"/command:";
170 cmd += command;
171 cmd += L" /pathfile:\"";
172 cmd += tempfile;
173 cmd += L"\" /deletepathfile";
174 CAppUtils::RunTortoiseGitProc(cmd);
175 return 0;
178 void CPatchListCtrl::OnNMCustomdraw(NMHDR *pNMHDR, LRESULT *pResult)
180 NMLVCUSTOMDRAW *pNMCD = reinterpret_cast<NMLVCUSTOMDRAW*>(pNMHDR);
182 *pResult = 0;
184 switch (pNMCD->nmcd.dwDrawStage)
186 case CDDS_PREPAINT:
188 *pResult = CDRF_NOTIFYITEMDRAW;
189 return;
191 break;
192 case CDDS_ITEMPREPAINT:
194 // This is the prepaint stage for an item. Here's where we set the
195 // item's text color.
197 // Tell Windows to send draw notifications for each subitem.
198 *pResult = CDRF_NOTIFYSUBITEMDRAW;
200 DWORD_PTR data = this->GetItemData((int)pNMCD->nmcd.dwItemSpec);
201 if(data & (STATUS_APPLY_FAIL | STATUS_APPLY_SUCCESS | STATUS_APPLY_SKIP))
202 pNMCD->clrTextBk = RGB(200,200,200);
204 switch(data & STATUS_MASK)
206 case STATUS_APPLY_SUCCESS:
207 pNMCD->clrText = RGB(0,128,0);
208 break;
209 case STATUS_APPLY_FAIL:
210 pNMCD->clrText = RGB(255,0,0);
211 break;
212 case STATUS_APPLY_SKIP:
213 pNMCD->clrText = RGB(128,64,0);
214 break;
217 if(data & STATUS_APPLYING)
219 SelectObject(pNMCD->nmcd.hdc, m_boldFont.GetSafeHandle());
220 *pResult = CDRF_NOTIFYSUBITEMDRAW | CDRF_NEWFONT;
224 break;
226 *pResult = CDRF_DODEFAULT;
229 void CPatchListCtrl::OnDropFiles(HDROP hDropInfo)
231 UINT nNumFiles = DragQueryFile(hDropInfo, 0xFFFFFFFF, nullptr, 0);
232 for (UINT i = 0; i < nNumFiles; ++i)
234 CString file;
235 DragQueryFile(hDropInfo, i, CStrBuf(file, MAX_PATH), MAX_PATH);
236 if (PathIsDirectory(file))
237 continue;
239 // no duplicates
240 LVFINDINFO lvInfo;
241 lvInfo.flags = LVFI_STRING;
242 lvInfo.psz = file;
243 if (FindItem(&lvInfo, -1) != -1)
244 continue;
246 int index = InsertItem(GetItemCount(), file);
247 if (index >= 0)
248 SetCheck(index, true);
250 DragFinish(hDropInfo);
251 SetColumnWidth(0, LVSCW_AUTOSIZE);