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
23 #include "TortoiseProc.h"
24 #include "PatchListCtrl.h"
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
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
)
58 ON_NOTIFY_REFLECT(NM_CUSTOMDRAW
, &CPatchListCtrl::OnNMCustomdraw
)
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);
74 gitpath
.SetFromWin(path
);
76 CAppUtils::StartUnifiedDiffViewer(path
, gitpath
.GetFilename(), 0, !!(GetAsyncKeyState(VK_SHIFT
) & 0x8000));
81 void CPatchListCtrl::OnContextMenu(CWnd
* /*pWnd*/, CPoint point
)
83 int selected
=this->GetSelectedCount();
85 POSITION pos
=this->GetFirstSelectedItemPosition();
86 index
=this->GetNextSelectedItem(pos
);
89 if (popup
.CreatePopupMenu())
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
);
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);
116 CString path
=GetItemText(index
,0);
118 gitpath
.SetFromWin(path
);
120 CAppUtils::StartUnifiedDiffViewer(path
, gitpath
.GetFilename(), 0, !!(GetAsyncKeyState(VK_SHIFT
) & 0x8000));
123 case MENU_VIEWWITHMERGE
:
125 CString path
=GetItemText(index
,0);
127 gitpath
.SetFromWin(path
);
130 dir
.SetFromGit(g_Git
.m_CurrentDir
);
132 CAppUtils::StartExtPatch(gitpath
,dir
);
137 LaunchProc(L
"sendmail");
142 LaunchProc(L
"importpatch");
152 int CPatchListCtrl::LaunchProc(const CString
& command
)
154 CString tempfile
=GetTempFile();
155 POSITION pos
=this->GetFirstSelectedItemPosition();
157 file
.Open(tempfile
,CFile::modeWrite
|CFile::modeCreate
);
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);
169 CString cmd
= L
"/command:";
171 cmd
+= L
" /pathfile:\"";
173 cmd
+= L
"\" /deletepathfile";
174 CAppUtils::RunTortoiseGitProc(cmd
);
178 void CPatchListCtrl::OnNMCustomdraw(NMHDR
*pNMHDR
, LRESULT
*pResult
)
180 NMLVCUSTOMDRAW
*pNMCD
= reinterpret_cast<NMLVCUSTOMDRAW
*>(pNMHDR
);
184 switch (pNMCD
->nmcd
.dwDrawStage
)
188 *pResult
= CDRF_NOTIFYITEMDRAW
;
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);
209 case STATUS_APPLY_FAIL
:
210 pNMCD
->clrText
= RGB(255,0,0);
212 case STATUS_APPLY_SKIP
:
213 pNMCD
->clrText
= RGB(128,64,0);
217 if(data
& STATUS_APPLYING
)
219 SelectObject(pNMCD
->nmcd
.hdc
, m_boldFont
.GetSafeHandle());
220 *pResult
= CDRF_NOTIFYSUBITEMDRAW
| CDRF_NEWFONT
;
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
)
235 DragQueryFile(hDropInfo
, i
, CStrBuf(file
, MAX_PATH
), MAX_PATH
);
236 if (PathIsDirectory(file
))
241 lvInfo
.flags
= LVFI_STRING
;
243 if (FindItem(&lvInfo
, -1) != -1)
246 int index
= InsertItem(GetItemCount(), file
);
248 SetCheck(index
, true);
250 DragFinish(hDropInfo
);
251 SetColumnWidth(0, LVSCW_AUTOSIZE
);