OSDN Git Service

58a3692d7afc525ee5b6879cc1ee7b7f4c1e2071
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / GitLogListBase.cpp
1 // GitLogList.cpp : implementation file\r
2 //\r
3 /*\r
4         Description: qgit revision list view\r
5 \r
6         Author: Marco Costalba (C) 2005-2007\r
7 \r
8         Copyright: See COPYING file that comes with this distribution\r
9 \r
10 */\r
11 #include "stdafx.h"\r
12 #include "GitLogListBase.h"\r
13 #include "GitRev.h"\r
14 //#include "VssStyle.h"\r
15 #include "IconMenu.h"\r
16 // CGitLogListBase\r
17 #include "cursor.h"\r
18 #include "InputDlg.h"\r
19 #include "PropDlg.h"\r
20 #include "SVNProgressDlg.h"\r
21 #include "ProgressDlg.h"\r
22 //#include "RepositoryBrowser.h"\r
23 //#include "CopyDlg.h"\r
24 //#include "StatGraphDlg.h"\r
25 #include "Logdlg.h"\r
26 #include "MessageBox.h"\r
27 #include "Registry.h"\r
28 #include "AppUtils.h"\r
29 #include "PathUtils.h"\r
30 #include "StringUtils.h"\r
31 #include "UnicodeUtils.h"\r
32 #include "TempFile.h"\r
33 //#include "GitInfo.h"\r
34 //#include "GitDiff.h"\r
35 #include "IconMenu.h"\r
36 //#include "RevisionRangeDlg.h"\r
37 //#include "BrowseFolder.h"\r
38 //#include "BlameDlg.h"\r
39 //#include "Blame.h"\r
40 //#include "GitHelpers.h"\r
41 #include "GitStatus.h"\r
42 //#include "LogDlgHelper.h"\r
43 //#include "CachedLogInfo.h"\r
44 //#include "RepositoryInfo.h"\r
45 //#include "EditPropertiesDlg.h"\r
46 #include "FileDiffDlg.h"\r
47 #include "..\\TortoiseShell\\Resource.h"\r
48 \r
49 \r
50 IMPLEMENT_DYNAMIC(CGitLogListBase, CHintListCtrl)\r
51 \r
52 CGitLogListBase::CGitLogListBase():CHintListCtrl()\r
53         ,m_regMaxBugIDColWidth(_T("Software\\TortoiseGit\\MaxBugIDColWidth"), 200)\r
54         ,m_nSearchIndex(0)\r
55         ,m_bNoDispUpdates(FALSE)\r
56         , m_bThreadRunning(FALSE)\r
57         , m_bStrictStopped(false)\r
58         , m_pStoreSelection(NULL)\r
59         , m_nSelectedFilter(LOGFILTER_ALL)\r
60 {\r
61         // use the default GUI font, create a copy of it and\r
62         // change the copy to BOLD (leave the rest of the font\r
63         // the same)\r
64         HFONT hFont = (HFONT)GetStockObject(DEFAULT_GUI_FONT);\r
65         LOGFONT lf = {0};\r
66         GetObject(hFont, sizeof(LOGFONT), &lf);\r
67         lf.lfWeight = FW_BOLD;\r
68         m_boldFont = CreateFontIndirect(&lf);\r
69         \r
70         m_bShowBugtraqColumn=0;\r
71 \r
72         m_IsIDReplaceAction=FALSE;\r
73 \r
74         m_wcRev.m_CommitHash=GIT_REV_ZERO;\r
75         m_wcRev.m_Subject=_T("Working Copy");\r
76 \r
77         m_hModifiedIcon = (HICON)LoadImage(AfxGetResourceHandle(), MAKEINTRESOURCE(IDI_ACTIONMODIFIED), IMAGE_ICON, 0, 0, LR_DEFAULTSIZE);\r
78         m_hReplacedIcon = (HICON)LoadImage(AfxGetResourceHandle(), MAKEINTRESOURCE(IDI_ACTIONREPLACED), IMAGE_ICON, 0, 0, LR_DEFAULTSIZE);\r
79         m_hAddedIcon    =  (HICON)LoadImage(AfxGetResourceHandle(), MAKEINTRESOURCE(IDI_ACTIONADDED), IMAGE_ICON, 0, 0, LR_DEFAULTSIZE);\r
80         m_hDeletedIcon = (HICON)LoadImage(AfxGetResourceHandle(), MAKEINTRESOURCE(IDI_ACTIONDELETED), IMAGE_ICON, 0, 0, LR_DEFAULTSIZE);\r
81 \r
82         m_bFilterWithRegex = !!CRegDWORD(_T("Software\\TortoiseGit\\UseRegexFilter"), TRUE);\r
83 \r
84         g_Git.GetMapHashToFriendName(m_HashMap);\r
85         m_CurrentBranch=g_Git.GetCurrentBranch();\r
86         this->m_HeadHash=g_Git.GetHash(CString(_T("HEAD"))).Left(40);\r
87 \r
88         m_From=CTime(1970,1,2,0,0,0);\r
89         m_To=CTime::GetCurrentTime();\r
90     m_ShowMask = 0;\r
91         m_LoadingThread = NULL;\r
92 \r
93         m_bExitThread=FALSE;\r
94         m_IsOldFirst = FALSE;\r
95         m_IsRebaseReplaceGraph = FALSE;\r
96 \r
97 \r
98         for(int i=0;i<Lanes::COLORS_NUM;i++)\r
99         {\r
100                 m_LineColors[i] = m_Colors.GetColor((CColors::Colors)(CColors::BranchLine1+i));\r
101         }\r
102         // get short/long datetime setting from registry\r
103         DWORD RegUseShortDateFormat = CRegDWORD(_T("Software\\TortoiseGit\\LogDateFormat"), TRUE);\r
104         if ( RegUseShortDateFormat )\r
105         {\r
106                 m_DateFormat = DATE_SHORTDATE;\r
107         }\r
108         else\r
109         {\r
110                 m_DateFormat = DATE_LONGDATE;\r
111         }\r
112         // get relative time display setting from registry\r
113         DWORD regRelativeTimes = CRegDWORD(_T("Software\\TortoiseGit\\RelativeTimes"), FALSE);\r
114         m_bRelativeTimes = (regRelativeTimes != 0);\r
115         m_ContextMenuMask = 0xFFFFFFFFFFFFFFFF;\r
116 \r
117         m_ContextMenuMask &= ~GetContextMenuBit(ID_REBASE_PICK);\r
118         m_ContextMenuMask &= ~GetContextMenuBit(ID_REBASE_SQUASH);\r
119         m_ContextMenuMask &= ~GetContextMenuBit(ID_REBASE_EDIT);\r
120         m_ContextMenuMask &= ~GetContextMenuBit(ID_REBASE_SKIP);\r
121 }\r
122 \r
123 CGitLogListBase::~CGitLogListBase()\r
124 {\r
125         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
126 \r
127         DestroyIcon(m_hModifiedIcon);\r
128         DestroyIcon(m_hReplacedIcon);\r
129         DestroyIcon(m_hAddedIcon);\r
130         DestroyIcon(m_hDeletedIcon);\r
131         m_logEntries.ClearAll();\r
132 \r
133         if (m_boldFont)\r
134                 DeleteObject(m_boldFont);\r
135 \r
136         if ( m_pStoreSelection )\r
137         {\r
138                 delete m_pStoreSelection;\r
139                 m_pStoreSelection = NULL;\r
140         }\r
141 \r
142         if(this->m_bThreadRunning)\r
143         {\r
144                 m_bExitThread=true;\r
145                 WaitForSingleObject(m_LoadingThread->m_hThread,1000);\r
146                 TerminateThread();\r
147         }\r
148 }\r
149 \r
150 \r
151 BEGIN_MESSAGE_MAP(CGitLogListBase, CHintListCtrl)\r
152         ON_NOTIFY_REFLECT(NM_CUSTOMDRAW, OnNMCustomdrawLoglist)\r
153         ON_NOTIFY_REFLECT(LVN_GETDISPINFO, OnLvnGetdispinfoLoglist)\r
154         ON_WM_CONTEXTMENU()\r
155         ON_NOTIFY_REFLECT(NM_DBLCLK, OnNMDblclkLoglist)\r
156         ON_NOTIFY_REFLECT(LVN_ODFINDITEM,OnLvnOdfinditemLoglist)\r
157         ON_WM_CREATE()\r
158         ON_WM_DESTROY()\r
159         ON_MESSAGE(MSG_LOADED,OnLoad)\r
160 END_MESSAGE_MAP()\r
161 \r
162 int CGitLogListBase:: OnCreate(LPCREATESTRUCT lpCreateStruct)\r
163 {\r
164         PreSubclassWindow();\r
165         return CHintListCtrl::OnCreate(lpCreateStruct);\r
166 }\r
167 \r
168 void CGitLogListBase::PreSubclassWindow()\r
169 {\r
170         SetExtendedStyle(LVS_EX_FULLROWSELECT | LVS_EX_SUBITEMIMAGES);\r
171         // load the icons for the action columns\r
172         m_Theme.SetWindowTheme(GetSafeHwnd(), L"Explorer", NULL);\r
173         CHintListCtrl::PreSubclassWindow();\r
174 }\r
175 \r
176 void CGitLogListBase::InsertGitColumn()\r
177 {\r
178         CString temp;\r
179 \r
180         int c = ((CHeaderCtrl*)(GetDlgItem(0)))->GetItemCount()-1;\r
181         \r
182         while (c>=0)\r
183                 DeleteColumn(c--);\r
184         temp.LoadString(IDS_LOG_GRAPH);\r
185 \r
186         if(m_IsRebaseReplaceGraph)\r
187         {\r
188                 temp=_T("Rebase");\r
189         }\r
190         else\r
191         {\r
192                 temp.LoadString(IDS_LOG_GRAPH);\r
193         }\r
194         InsertColumn(this->LOGLIST_GRAPH, temp);\r
195         \r
196 #if 0   \r
197         // make the revision column right aligned\r
198         LVCOLUMN Column;\r
199         Column.mask = LVCF_FMT;\r
200         Column.fmt = LVCFMT_RIGHT;\r
201         SetColumn(0, &Column); \r
202 #endif  \r
203 //      CString log;\r
204 //      g_Git.GetLog(log);\r
205 \r
206         if(m_IsIDReplaceAction)\r
207         {\r
208                 temp.LoadString(IDS_LOG_ID);\r
209                 InsertColumn(this->LOGLIST_ACTION, temp);\r
210         }\r
211         else\r
212         {\r
213                 temp.LoadString(IDS_LOG_ACTIONS);\r
214                 InsertColumn(this->LOGLIST_ACTION, temp);\r
215         }\r
216         temp.LoadString(IDS_LOG_MESSAGE);\r
217         InsertColumn(this->LOGLIST_MESSAGE, temp);\r
218         \r
219         temp.LoadString(IDS_LOG_AUTHOR);\r
220         InsertColumn(this->LOGLIST_AUTHOR, temp);\r
221         \r
222         temp.LoadString(IDS_LOG_DATE);\r
223         InsertColumn(this->LOGLIST_DATE, temp);\r
224         \r
225 \r
226         if (m_bShowBugtraqColumn)\r
227         {\r
228 //              temp = m_ProjectProperties.sLabel;\r
229                 if (temp.IsEmpty())\r
230                         temp.LoadString(IDS_LOG_BUGIDS);\r
231                 InsertColumn(this->LOGLIST_BUG, temp);\r
232 \r
233         }\r
234         \r
235         SetRedraw(false);\r
236         ResizeAllListCtrlCols();\r
237         SetRedraw(true);\r
238 \r
239 }\r
240 \r
241 /**\r
242  * Resizes all columns in a list control to values in registry.\r
243  */\r
244 void CGitLogListBase::ResizeAllListCtrlCols()\r
245 {\r
246         // column max and min widths to allow\r
247         static const int nMinimumWidth = 10;\r
248         static const int nMaximumWidth = 1000;\r
249         CHeaderCtrl* pHdrCtrl = (CHeaderCtrl*)(GetDlgItem(0));\r
250         if (pHdrCtrl)\r
251         {\r
252                 int numcols = pHdrCtrl->GetItemCount();\r
253                 for (int col = 0; col < numcols; col++)\r
254                 {\r
255                         // get width for this col last time from registry\r
256                         CString regentry;\r
257                         regentry.Format( _T("Software\\TortoiseGit\\log\\ColWidth%d"), col);\r
258                         CRegDWORD regwidth(regentry, 0);\r
259                         int cx = regwidth;\r
260                         if ( cx == 0 )\r
261                         {\r
262                                 // no saved value, setup sensible defaults\r
263                                 if (col == this->LOGLIST_MESSAGE)\r
264                                 {\r
265                                         cx = LOGLIST_MESSAGE_MIN;\r
266                                 }\r
267                                 else\r
268                                 {\r
269                                         cx = ICONITEMBORDER+16*4;\r
270                                 }\r
271                         }\r
272                         if (cx < nMinimumWidth)\r
273                         {\r
274                                 cx = nMinimumWidth;\r
275                         } else if (cx > nMaximumWidth)\r
276                         {\r
277                                 cx = nMaximumWidth;\r
278                         }\r
279 \r
280                         SetColumnWidth(col, cx);\r
281                 }\r
282         }\r
283 \r
284 }\r
285 \r
286 \r
287 BOOL CGitLogListBase::GetShortName(CString ref, CString &shortname,CString prefix)\r
288 {\r
289         TRACE(_T("%s %s\r\n"),ref,prefix);\r
290         if(ref.Left(prefix.GetLength()) ==  prefix)\r
291         {\r
292                 shortname = ref.Right(ref.GetLength()-prefix.GetLength());\r
293                 if(shortname.Right(3)==_T("^{}"))\r
294                         shortname=shortname.Left(shortname.GetLength()-3);\r
295                 return TRUE;\r
296         }\r
297         return FALSE;\r
298 }\r
299 void CGitLogListBase::FillBackGround(HDC hdc, int Index,CRect &rect)\r
300 {       \r
301 //      HBRUSH brush;\r
302         LVITEM   rItem;\r
303         SecureZeroMemory(&rItem, sizeof(LVITEM));\r
304         rItem.mask  = LVIF_STATE;\r
305         rItem.iItem = Index;\r
306         rItem.stateMask = LVIS_SELECTED | LVIS_FOCUSED;\r
307         GetItem(&rItem);\r
308 \r
309         GitRev* pLogEntry = (GitRev*)m_arShownList.GetAt(Index);\r
310 \r
311         if (m_Theme.IsAppThemed() && m_bVista)\r
312         {\r
313                 m_Theme.Open(m_hWnd, L"Explorer");\r
314                 int state = LISS_NORMAL;\r
315                 if (rItem.state & LVIS_SELECTED)\r
316                 {\r
317                         if (::GetFocus() == m_hWnd)\r
318                                 state |= LISS_SELECTED;\r
319                         else\r
320                                 state |= LISS_SELECTEDNOTFOCUS;\r
321                 }\r
322                 else\r
323                 {\r
324 #if 0\r
325                         if (pLogEntry->bCopiedSelf)\r
326                         {\r
327                                 // unfortunately, the pLVCD->nmcd.uItemState does not contain valid\r
328                                 // information at this drawing stage. But we can check the whether the\r
329                                 // previous stage changed the background color of the item\r
330                                 if (pLVCD->clrTextBk == GetSysColor(COLOR_MENU))\r
331                                 {\r
332                                         HBRUSH brush;\r
333                                         brush = ::CreateSolidBrush(::GetSysColor(COLOR_MENU));\r
334                                         if (brush)\r
335                                         {\r
336                                                 ::FillRect(pLVCD->nmcd.hdc, &rect, brush);\r
337                                                 ::DeleteObject(brush);\r
338                                         }\r
339                                 }\r
340                         }\r
341 #endif\r
342                 }\r
343 \r
344                 if (m_Theme.IsBackgroundPartiallyTransparent(LVP_LISTDETAIL, state))\r
345                         m_Theme.DrawParentBackground(m_hWnd, hdc, &rect);\r
346 \r
347                         m_Theme.DrawBackground(hdc, LVP_LISTDETAIL, state, &rect, NULL);\r
348         }\r
349         else\r
350         {\r
351                 HBRUSH brush;\r
352                 if (rItem.state & LVIS_SELECTED)\r
353                 {\r
354                         if (::GetFocus() == m_hWnd)\r
355                                 brush = ::CreateSolidBrush(::GetSysColor(COLOR_HIGHLIGHT));\r
356                         else\r
357                                 brush = ::CreateSolidBrush(::GetSysColor(COLOR_BTNFACE));\r
358                 }\r
359                 else\r
360                 {\r
361                         //if (pLogEntry->bCopiedSelf)\r
362                         //      brush = ::CreateSolidBrush(::GetSysColor(COLOR_MENU));\r
363                         //else\r
364                         if(pLogEntry->m_Action&CTGitPath::LOGACTIONS_REBASE_SQUASH)\r
365                                 brush = ::CreateSolidBrush(RGB(156,156,156));\r
366                         else if(pLogEntry->m_Action&CTGitPath::LOGACTIONS_REBASE_EDIT)\r
367                                 brush = ::CreateSolidBrush(RGB(200,200,128));\r
368                         else \r
369                                 brush = ::CreateSolidBrush(::GetSysColor(COLOR_WINDOW));\r
370                 }\r
371                 if (brush == NULL)\r
372                         return;\r
373 \r
374                 ::FillRect(hdc, &rect, brush);\r
375                 ::DeleteObject(brush);\r
376                 \r
377         }\r
378 }\r
379 \r
380 void CGitLogListBase::DrawTagBranch(HDC hdc,CRect &rect,INT_PTR index)\r
381 {\r
382         GitRev* data = (GitRev*)m_arShownList.GetAt(index);\r
383         CRect rt=rect;\r
384         LVITEM   rItem;\r
385         SecureZeroMemory(&rItem, sizeof(LVITEM));\r
386         rItem.mask  = LVIF_STATE;\r
387         rItem.iItem = index;\r
388         rItem.stateMask = LVIS_SELECTED | LVIS_FOCUSED;\r
389         GetItem(&rItem);\r
390 \r
391         for(unsigned int i=0;i<m_HashMap[data->m_CommitHash].size();i++)\r
392         {\r
393                 CString str;\r
394                 str=m_HashMap[data->m_CommitHash][i];\r
395                 \r
396                 CString shortname;\r
397                 HBRUSH brush=0;\r
398                 shortname=_T("");\r
399                 if(GetShortName(str,shortname,_T("refs/heads/")))\r
400                 {\r
401                         if( shortname == m_CurrentBranch )\r
402                                 brush = ::CreateSolidBrush(m_Colors.GetColor(CColors::CurrentBranch));\r
403                         else\r
404                                 brush = ::CreateSolidBrush(m_Colors.GetColor(CColors::LocalBranch));\r
405 \r
406                 }else if(GetShortName(str,shortname,_T("refs/remotes/")))\r
407                 {\r
408                         brush = ::CreateSolidBrush(m_Colors.GetColor(CColors::RemoteBranch));\r
409                 }\r
410                 else if(GetShortName(str,shortname,_T("refs/tags/")))\r
411                 {\r
412                         brush = ::CreateSolidBrush(m_Colors.GetColor(CColors::Tag));\r
413                 }\r
414 \r
415                 if(!shortname.IsEmpty())\r
416                 {\r
417                         SIZE size;\r
418                         memset(&size,0,sizeof(SIZE));\r
419                         GetTextExtentPoint32(hdc, shortname,shortname.GetLength(),&size);\r
420                 \r
421                         rt.SetRect(rt.left,rt.top,rt.left+size.cx,rt.bottom);\r
422                         rt.right+=4;\r
423                         ::FillRect(hdc, &rt, brush);\r
424                         if (rItem.state & LVIS_SELECTED)\r
425                         {\r
426                                 COLORREF   clrOld   = ::SetTextColor(hdc,::GetSysColor(COLOR_HIGHLIGHTTEXT));   \r
427                                 ::DrawText(hdc,shortname,shortname.GetLength(),&rt,DT_CENTER);\r
428                                 ::SetTextColor(hdc,clrOld);   \r
429                         }else\r
430                         {\r
431                                 ::DrawText(hdc,shortname,shortname.GetLength(),&rt,DT_CENTER);\r
432                         }\r
433 \r
434                         \r
435                         ::MoveToEx(hdc,rt.left,rt.top,NULL);\r
436                         ::LineTo(hdc,rt.right,rt.top);\r
437                         ::LineTo(hdc,rt.right,rt.bottom);\r
438                         ::LineTo(hdc,rt.left,rt.bottom);\r
439                         ::LineTo(hdc,rt.left,rt.top);\r
440                                 \r
441                         rt.left=rt.right+3;\r
442                 }\r
443                 if(brush)\r
444                         ::DeleteObject(brush);\r
445         }               \r
446         rt.right=rect.right;\r
447 \r
448         if (rItem.state & LVIS_SELECTED)\r
449         {\r
450                 COLORREF   clrOld   = ::SetTextColor(hdc,::GetSysColor(COLOR_HIGHLIGHTTEXT));   \r
451                 ::DrawText(hdc,data->m_Subject,data->m_Subject.GetLength(),&rt,DT_LEFT);\r
452                 ::SetTextColor(hdc,clrOld);   \r
453         }else\r
454         {\r
455                 ::DrawText(hdc,data->m_Subject,data->m_Subject.GetLength(),&rt,DT_LEFT);\r
456         }\r
457         \r
458 }\r
459 \r
460 void CGitLogListBase::paintGraphLane(HDC hdc, int laneHeight,int type, int x1, int x2,\r
461                                       const COLORREF& col,int top\r
462                                                                           )  \r
463 {\r
464         int h = laneHeight / 2;\r
465         int m = (x1 + x2) / 2;\r
466         int r = (x2 - x1) / 3;\r
467         int d =  2 * r;\r
468 \r
469         #define P_CENTER m , h+top\r
470         #define P_0      x2, h+top\r
471         #define P_90     m , 0+top\r
472         #define P_180    x1, h+top\r
473         #define P_270    m , 2 * h+top\r
474         #define R_CENTER m - r, h - r+top, m - r+d, h - r+top+d\r
475 \r
476         //static QPen myPen(Qt::black, 2); // fast path here\r
477         CPen pen;\r
478         pen.CreatePen(PS_SOLID,2,col);\r
479         //myPen.setColor(col);\r
480         HPEN oldpen=(HPEN)::SelectObject(hdc,(HPEN)pen);\r
481 \r
482         //p->setPen(myPen);\r
483 \r
484         // vertical line\r
485         switch (type) {\r
486         case Lanes::ACTIVE:\r
487         case Lanes::NOT_ACTIVE:\r
488         case Lanes::MERGE_FORK:\r
489         case Lanes::MERGE_FORK_R:\r
490         case Lanes::MERGE_FORK_L:\r
491         case Lanes::JOIN:\r
492         case Lanes::JOIN_R:\r
493         case Lanes::JOIN_L:\r
494                 DrawLine(hdc,P_90,P_270);\r
495                 //p->drawLine(P_90, P_270);\r
496                 break;\r
497         case Lanes::HEAD:\r
498         case Lanes::HEAD_R:\r
499         case Lanes::HEAD_L:\r
500         case Lanes::BRANCH:\r
501                 DrawLine(hdc,P_CENTER,P_270);\r
502                 //p->drawLine(P_CENTER, P_270);\r
503                 break;\r
504         case Lanes::TAIL:\r
505         case Lanes::TAIL_R:\r
506         case Lanes::TAIL_L:\r
507         case Lanes::INITIAL:\r
508         case Lanes::BOUNDARY:\r
509         case Lanes::BOUNDARY_C:\r
510         case Lanes::BOUNDARY_R:\r
511         case Lanes::BOUNDARY_L:\r
512                 DrawLine(hdc,P_90, P_CENTER);\r
513                 //p->drawLine(P_90, P_CENTER);\r
514                 break;\r
515         default:\r
516                 break;\r
517         }\r
518 \r
519         // horizontal line\r
520         switch (type) {\r
521         case Lanes::MERGE_FORK:\r
522         case Lanes::JOIN:\r
523         case Lanes::HEAD:\r
524         case Lanes::TAIL:\r
525         case Lanes::CROSS:\r
526         case Lanes::CROSS_EMPTY:\r
527         case Lanes::BOUNDARY_C:\r
528                 DrawLine(hdc,P_180,P_0);\r
529                 //p->drawLine(P_180, P_0);\r
530                 break;\r
531         case Lanes::MERGE_FORK_R:\r
532         case Lanes::JOIN_R:\r
533         case Lanes::HEAD_R:\r
534         case Lanes::TAIL_R:\r
535         case Lanes::BOUNDARY_R:\r
536                 DrawLine(hdc,P_180,P_CENTER);\r
537                 //p->drawLine(P_180, P_CENTER);\r
538                 break;\r
539         case Lanes::MERGE_FORK_L:\r
540         case Lanes::JOIN_L:\r
541         case Lanes::HEAD_L:\r
542         case Lanes::TAIL_L:\r
543         case Lanes::BOUNDARY_L:\r
544                 DrawLine(hdc,P_CENTER,P_0);\r
545                 //p->drawLine(P_CENTER, P_0);\r
546                 break;\r
547         default:\r
548                 break;\r
549         }\r
550 \r
551         CBrush brush;\r
552         brush.CreateSolidBrush(col);\r
553         HBRUSH oldbrush=(HBRUSH)::SelectObject(hdc,(HBRUSH)brush);\r
554         // center symbol, e.g. rect or ellipse\r
555         switch (type) {\r
556         case Lanes::ACTIVE:\r
557         case Lanes::INITIAL:\r
558         case Lanes::BRANCH:\r
559 \r
560                 //p->setPen(Qt::NoPen);\r
561                 //p->setBrush(col);\r
562                 ::Ellipse(hdc, R_CENTER);\r
563                 //p->drawEllipse(R_CENTER);\r
564                 break;\r
565         case Lanes::MERGE_FORK:\r
566         case Lanes::MERGE_FORK_R:\r
567         case Lanes::MERGE_FORK_L:\r
568                 //p->setPen(Qt::NoPen);\r
569                 //p->setBrush(col);\r
570                 //p->drawRect(R_CENTER);\r
571                 Rectangle(hdc,R_CENTER);\r
572                 break;\r
573         case Lanes::UNAPPLIED:\r
574                 // Red minus sign\r
575                 //p->setPen(Qt::NoPen);\r
576                 //p->setBrush(Qt::red);\r
577                 //p->drawRect(m - r, h - 1, d, 2);\r
578                 ::Rectangle(hdc,m-r,h-1,d,2);\r
579                 break;\r
580         case Lanes::APPLIED:\r
581                 // Green plus sign\r
582                 //p->setPen(Qt::NoPen);\r
583                 //p->setBrush(DARK_GREEN);\r
584                 //p->drawRect(m - r, h - 1, d, 2);\r
585                 //p->drawRect(m - 1, h - r, 2, d);\r
586                 ::Rectangle(hdc,m-r,h-1,d,2);\r
587                 ::Rectangle(hdc,m-1,h-r,2,d);\r
588                 break;\r
589         case Lanes::BOUNDARY:\r
590                 //p->setBrush(back);\r
591                 //p->drawEllipse(R_CENTER);\r
592                 ::Ellipse(hdc, R_CENTER);\r
593                 break;\r
594         case Lanes::BOUNDARY_C:\r
595         case Lanes::BOUNDARY_R:\r
596         case Lanes::BOUNDARY_L:\r
597                 //p->setBrush(back);\r
598                 //p->drawRect(R_CENTER);\r
599                 ::Rectangle(hdc,R_CENTER);\r
600                 break;\r
601         default:\r
602                 break;\r
603         }\r
604 \r
605         ::SelectObject(hdc,oldpen);\r
606         ::SelectObject(hdc,oldbrush);\r
607         #undef P_CENTER\r
608         #undef P_0\r
609         #undef P_90\r
610         #undef P_180\r
611         #undef P_270\r
612         #undef R_CENTER\r
613 }\r
614 \r
615 void CGitLogListBase::DrawGraph(HDC hdc,CRect &rect,INT_PTR index)\r
616 {\r
617         //todo unfinished\r
618 //      return;\r
619         GitRev* data = (GitRev*)m_arShownList.GetAt(index);\r
620         CRect rt=rect;\r
621         LVITEM   rItem;\r
622         SecureZeroMemory(&rItem, sizeof(LVITEM));\r
623         rItem.mask  = LVIF_STATE;\r
624         rItem.iItem = index;\r
625         rItem.stateMask = LVIS_SELECTED | LVIS_FOCUSED;\r
626         GetItem(&rItem);\r
627 \r
628         \r
629 //      p->translate(QPoint(opt.rect.left(), opt.rect.top()));\r
630 \r
631 \r
632 \r
633         if (data->m_Lanes.size() == 0)\r
634                 m_logEntries.setLane(data->m_CommitHash);\r
635 \r
636         std::vector<int>& lanes=data->m_Lanes;\r
637         UINT laneNum = lanes.size();\r
638         UINT mergeLane = 0;\r
639         for (UINT i = 0; i < laneNum; i++)\r
640                 if (Lanes::isMerge(lanes[i])) {\r
641                         mergeLane = i;\r
642                         break;\r
643                 }\r
644 \r
645         int x1 = 0, x2 = 0;\r
646         int maxWidth = rect.Width();\r
647         int lw = 3 * rect.Height() / 4; //laneWidth() \r
648         for (UINT i = 0; i < laneNum && x2 < maxWidth; i++) {\r
649 \r
650                 x1 = x2;\r
651                 x2 += lw;\r
652 \r
653                 int ln = lanes[i];\r
654                 if (ln == Lanes::EMPTY)\r
655                         continue;\r
656 \r
657                 UINT col = (  Lanes:: isHead(ln) ||Lanes:: isTail(ln) || Lanes::isJoin(ln)\r
658                             || ln ==Lanes:: CROSS_EMPTY) ? mergeLane : i;\r
659 \r
660                 if (ln == Lanes::CROSS) {\r
661                         paintGraphLane(hdc, rect.Height(),Lanes::NOT_ACTIVE, x1, x2, m_LineColors[col % Lanes::COLORS_NUM],rect.top);\r
662                         paintGraphLane(hdc, rect.Height(),Lanes::CROSS, x1, x2, m_LineColors[mergeLane % Lanes::COLORS_NUM],rect.top);\r
663                 } else\r
664                         paintGraphLane(hdc, rect.Height(),ln, x1, x2, m_LineColors[col % Lanes::COLORS_NUM],rect.top);\r
665         }\r
666 \r
667         TRACE(_T("index %d %d\r\n"),index,data->m_Lanes.size());\r
668 }\r
669 \r
670 void CGitLogListBase::OnNMCustomdrawLoglist(NMHDR *pNMHDR, LRESULT *pResult)\r
671 {\r
672 \r
673         NMLVCUSTOMDRAW* pLVCD = reinterpret_cast<NMLVCUSTOMDRAW*>( pNMHDR );\r
674         // Take the default processing unless we set this to something else below.\r
675         *pResult = CDRF_DODEFAULT;\r
676 \r
677         if (m_bNoDispUpdates)\r
678                 return;\r
679 \r
680 \r
681 \r
682         switch (pLVCD->nmcd.dwDrawStage)\r
683         {\r
684         case CDDS_PREPAINT:\r
685                 {\r
686                         *pResult = CDRF_NOTIFYITEMDRAW;\r
687                         return;\r
688                 }\r
689                 break;\r
690         case CDDS_ITEMPREPAINT:\r
691                 {\r
692                         // This is the prepaint stage for an item. Here's where we set the\r
693                         // item's text color. \r
694                         \r
695                         // Tell Windows to send draw notifications for each subitem.\r
696                         *pResult = CDRF_NOTIFYSUBITEMDRAW;\r
697 \r
698                         COLORREF crText = GetSysColor(COLOR_WINDOWTEXT);\r
699 \r
700                         if (m_arShownList.GetCount() > (INT_PTR)pLVCD->nmcd.dwItemSpec)\r
701                         {\r
702                                 GitRev* data = (GitRev*)m_arShownList.GetAt(pLVCD->nmcd.dwItemSpec);\r
703                                 if (data)\r
704                                 {\r
705 #if 0\r
706                                         if (data->bCopiedSelf)\r
707                                         {\r
708                                                 // only change the background color if the item is not 'hot' (on vista with m_Themes enabled)\r
709                                                 if (!m_Theme.IsAppm_Themed() || !m_bVista || ((pLVCD->nmcd.uItemState & CDIS_HOT)==0))\r
710                                                         pLVCD->clrTextBk = GetSysColor(COLOR_MENU);\r
711                                         }\r
712 \r
713                                         if (data->bCopies)\r
714                                                 crText = m_Colors.GetColor(CColors::Modified);\r
715 #endif\r
716                                         if (data->m_Action& (CTGitPath::LOGACTIONS_REBASE_DONE| CTGitPath::LOGACTIONS_REBASE_SKIP) ) \r
717                                                 crText = RGB(128,128,128);\r
718 \r
719                                         if(data->m_Action&CTGitPath::LOGACTIONS_REBASE_SQUASH)\r
720                                                 pLVCD->clrTextBk = RGB(156,156,156);\r
721                                         else if(data->m_Action&CTGitPath::LOGACTIONS_REBASE_EDIT)\r
722                                                 pLVCD->clrTextBk  = RGB(200,200,128);\r
723                                         else \r
724                                                 pLVCD->clrTextBk  = ::GetSysColor(COLOR_WINDOW);\r
725 \r
726                                         if(data->m_Action&CTGitPath::LOGACTIONS_REBASE_CURRENT)\r
727                                         {\r
728                                                 SelectObject(pLVCD->nmcd.hdc, m_boldFont);\r
729                                                 *pResult = CDRF_NOTIFYSUBITEMDRAW | CDRF_NEWFONT;\r
730                                         }\r
731 \r
732                                         if(data->m_CommitHash == m_HeadHash)\r
733                                         {\r
734                                                 SelectObject(pLVCD->nmcd.hdc, m_boldFont);\r
735                                                 *pResult = CDRF_NOTIFYSUBITEMDRAW | CDRF_NEWFONT;\r
736                                         }\r
737 \r
738 //                                      if ((data->childStackDepth)||(m_mergedRevs.find(data->Rev) != m_mergedRevs.end()))\r
739 //                                              crText = GetSysColor(COLOR_GRAYTEXT);\r
740 //                                      if (data->Rev == m_wcRev)\r
741 //                                      {\r
742 //                                              SelectObject(pLVCD->nmcd.hdc, m_boldFont);\r
743                                                 // We changed the font, so we're returning CDRF_NEWFONT. This\r
744                                                 // tells the control to recalculate the extent of the text.\r
745 //                                              *pResult = CDRF_NOTIFYSUBITEMDRAW | CDRF_NEWFONT;\r
746 //                                      }\r
747                                 }\r
748                         }\r
749                         if (m_arShownList.GetCount() == (INT_PTR)pLVCD->nmcd.dwItemSpec)\r
750                         {\r
751                                 if (m_bStrictStopped)\r
752                                         crText = GetSysColor(COLOR_GRAYTEXT);\r
753                         }\r
754                         // Store the color back in the NMLVCUSTOMDRAW struct.\r
755                         pLVCD->clrText = crText;\r
756                         return;\r
757                 }\r
758                 break;\r
759         case CDDS_ITEMPREPAINT|CDDS_ITEM|CDDS_SUBITEM:\r
760                 {\r
761                         if ((m_bStrictStopped)&&(m_arShownList.GetCount() == (INT_PTR)pLVCD->nmcd.dwItemSpec))\r
762                         {\r
763                                 pLVCD->nmcd.uItemState &= ~(CDIS_SELECTED|CDIS_FOCUS);\r
764                         }\r
765 \r
766                         if (pLVCD->iSubItem == LOGLIST_GRAPH)\r
767                         {\r
768                                 if (m_arShownList.GetCount() > (INT_PTR)pLVCD->nmcd.dwItemSpec && (!this->m_IsRebaseReplaceGraph) )\r
769                                 {\r
770                                         CRect rect;\r
771                                         GetSubItemRect(pLVCD->nmcd.dwItemSpec, pLVCD->iSubItem, LVIR_BOUNDS, rect);\r
772                                         \r
773                                         FillBackGround(pLVCD->nmcd.hdc, (INT_PTR)pLVCD->nmcd.dwItemSpec,rect);\r
774                                         DrawGraph(pLVCD->nmcd.hdc,rect,pLVCD->nmcd.dwItemSpec);\r
775 \r
776                                         *pResult = CDRF_SKIPDEFAULT;\r
777                                         return;\r
778                                 \r
779                                 }\r
780                         }\r
781 \r
782                         if (pLVCD->iSubItem == LOGLIST_MESSAGE)\r
783                         {\r
784                                 if (m_arShownList.GetCount() > (INT_PTR)pLVCD->nmcd.dwItemSpec)\r
785                                 {\r
786                                         GitRev* data = (GitRev*)m_arShownList.GetAt(pLVCD->nmcd.dwItemSpec);\r
787                                         //if(!data->m_IsFull)\r
788                                         //{\r
789                                                 //if(data->SafeFetchFullInfo(&g_Git))\r
790                                                 //      this->Invalidate();\r
791                                                 //TRACE(_T("Update ... %d\r\n"),pLVCD->nmcd.dwItemSpec);\r
792                                         //}\r
793 \r
794                                         if(m_HashMap[data->m_CommitHash].size()!=0)\r
795                                         {\r
796                                                 CRect rect;\r
797 \r
798                                                 GetSubItemRect(pLVCD->nmcd.dwItemSpec, pLVCD->iSubItem, LVIR_BOUNDS, rect);\r
799                                         \r
800                                                 FillBackGround(pLVCD->nmcd.hdc, (INT_PTR)pLVCD->nmcd.dwItemSpec,rect);\r
801                                                 DrawTagBranch(pLVCD->nmcd.hdc,rect,pLVCD->nmcd.dwItemSpec);\r
802 \r
803                                                 *pResult = CDRF_SKIPDEFAULT;\r
804                                                 return;\r
805 \r
806                                         }\r
807                                 }\r
808                         }\r
809                         \r
810                         if (pLVCD->iSubItem == 1)\r
811                         {\r
812                                 if(this->m_IsIDReplaceAction)\r
813                                 {\r
814                                         *pResult = CDRF_DODEFAULT;\r
815                                         return;\r
816                                 }\r
817                                 *pResult = CDRF_DODEFAULT;\r
818 \r
819                                 if (m_arShownList.GetCount() <= (INT_PTR)pLVCD->nmcd.dwItemSpec)\r
820                                         return;\r
821 \r
822                                 int             nIcons = 0;\r
823                                 int             iconwidth = ::GetSystemMetrics(SM_CXSMICON);\r
824                                 int             iconheight = ::GetSystemMetrics(SM_CYSMICON);\r
825 \r
826                                 GitRev* pLogEntry = reinterpret_cast<GitRev *>(m_arShownList.GetAt(pLVCD->nmcd.dwItemSpec));\r
827                                 CRect rect;\r
828                                 GetSubItemRect(pLVCD->nmcd.dwItemSpec, pLVCD->iSubItem, LVIR_BOUNDS, rect);\r
829                                 // Get the selected state of the\r
830                                 // item being drawn.                                                    \r
831 \r
832                                 // Fill the background\r
833                                 FillBackGround(pLVCD->nmcd.hdc, (INT_PTR)pLVCD->nmcd.dwItemSpec,rect);\r
834                                 \r
835                                 // Draw the icon(s) into the compatible DC\r
836                                 if (pLogEntry->m_Action & CTGitPath::LOGACTIONS_MODIFIED)\r
837                                         ::DrawIconEx(pLVCD->nmcd.hdc, rect.left + ICONITEMBORDER, rect.top, m_hModifiedIcon, iconwidth, iconheight, 0, NULL, DI_NORMAL);\r
838                                 nIcons++;\r
839 \r
840                                 if (pLogEntry->m_Action & (CTGitPath::LOGACTIONS_ADDED|CTGitPath::LOGACTIONS_COPY) )\r
841                                         ::DrawIconEx(pLVCD->nmcd.hdc, rect.left+nIcons*iconwidth + ICONITEMBORDER, rect.top, m_hAddedIcon, iconwidth, iconheight, 0, NULL, DI_NORMAL);\r
842                                 nIcons++;\r
843 \r
844                                 if (pLogEntry->m_Action & CTGitPath::LOGACTIONS_DELETED)\r
845                                         ::DrawIconEx(pLVCD->nmcd.hdc, rect.left+nIcons*iconwidth + ICONITEMBORDER, rect.top, m_hDeletedIcon, iconwidth, iconheight, 0, NULL, DI_NORMAL);\r
846                                 nIcons++;\r
847 \r
848                                 if (pLogEntry->m_Action & CTGitPath::LOGACTIONS_REPLACED)\r
849                                         ::DrawIconEx(pLVCD->nmcd.hdc, rect.left+nIcons*iconwidth + ICONITEMBORDER, rect.top, m_hReplacedIcon, iconwidth, iconheight, 0, NULL, DI_NORMAL);\r
850                                 nIcons++;\r
851                                 *pResult = CDRF_SKIPDEFAULT;\r
852                                 return;\r
853                         }\r
854                 }\r
855                 break;\r
856         }\r
857         *pResult = CDRF_DODEFAULT;\r
858 \r
859 }\r
860 \r
861 // CGitLogListBase message handlers\r
862 \r
863 void CGitLogListBase::OnLvnGetdispinfoLoglist(NMHDR *pNMHDR, LRESULT *pResult)\r
864 {\r
865         NMLVDISPINFO *pDispInfo = reinterpret_cast<NMLVDISPINFO*>(pNMHDR);\r
866 \r
867         // Create a pointer to the item\r
868         LV_ITEM* pItem = &(pDispInfo)->item;\r
869 \r
870         // Do the list need text information?\r
871         if (!(pItem->mask & LVIF_TEXT))\r
872                 return;\r
873 \r
874         // By default, clear text buffer.\r
875         lstrcpyn(pItem->pszText, _T(""), pItem->cchTextMax);\r
876 \r
877         bool bOutOfRange = pItem->iItem >= ShownCountWithStopped();\r
878         \r
879         *pResult = 0;\r
880         if (m_bNoDispUpdates || bOutOfRange)\r
881                 return;\r
882 \r
883         // Which item number?\r
884         int itemid = pItem->iItem;\r
885         GitRev * pLogEntry = NULL;\r
886         if (itemid < m_arShownList.GetCount())\r
887                 pLogEntry = reinterpret_cast<GitRev*>(m_arShownList.GetAt(pItem->iItem));\r
888 \r
889         CString temp;\r
890         if(m_IsOldFirst)\r
891         {\r
892                 temp.Format(_T("%d"),pItem->iItem+1);\r
893 \r
894         }else\r
895         {\r
896                 temp.Format(_T("%d"),m_arShownList.GetCount()-pItem->iItem);\r
897         }\r
898             \r
899         // Which column?\r
900         switch (pItem->iSubItem)\r
901         {\r
902         case this->LOGLIST_GRAPH:       //Graphic\r
903                 if (pLogEntry)\r
904                 {\r
905                         if(this->m_IsRebaseReplaceGraph)\r
906                         {\r
907                                 CTGitPath path;\r
908                                 path.m_Action=pLogEntry->m_Action&CTGitPath::LOGACTIONS_REBASE_MODE_MASK;\r
909 \r
910                                 lstrcpyn(pItem->pszText,path.GetActionName(), pItem->cchTextMax);\r
911                         }\r
912                 }\r
913                 break;\r
914         case this->LOGLIST_ACTION: //action -- no text in the column\r
915                 if(this->m_IsIDReplaceAction)\r
916                         lstrcpyn(pItem->pszText, temp, pItem->cchTextMax);\r
917                 break;\r
918         case this->LOGLIST_MESSAGE: //Message\r
919                 if (pLogEntry)\r
920                         lstrcpyn(pItem->pszText, (LPCTSTR)pLogEntry->m_Subject, pItem->cchTextMax);\r
921                 break;\r
922         case this->LOGLIST_AUTHOR: //Author\r
923                 if (pLogEntry)\r
924                         lstrcpyn(pItem->pszText, (LPCTSTR)pLogEntry->m_AuthorName, pItem->cchTextMax);\r
925                 break;\r
926         case this->LOGLIST_DATE: //Date\r
927                 if (pLogEntry)\r
928                         lstrcpyn(pItem->pszText,\r
929                                 CAppUtils::FormatDateAndTime( pLogEntry->m_AuthorDate, m_DateFormat, true, m_bRelativeTimes ), \r
930                                 pItem->cchTextMax);\r
931                 break;\r
932                 \r
933         case 5:\r
934 \r
935                 break;\r
936         default:\r
937                 ASSERT(false);\r
938         }\r
939 }\r
940 \r
941 void CGitLogListBase::OnContextMenu(CWnd* pWnd, CPoint point)\r
942 {\r
943 \r
944         int selIndex = GetSelectionMark();\r
945         if (selIndex < 0)\r
946                 return; // nothing selected, nothing to do with a context menu\r
947 \r
948         // if the user selected the info text telling about not all revisions shown due to\r
949         // the "stop on copy/rename" option, we also don't show the context menu\r
950         if ((m_bStrictStopped)&&(selIndex == m_arShownList.GetCount()))\r
951                 return;\r
952 \r
953         // if the context menu is invoked through the keyboard, we have to use\r
954         // a calculated position on where to anchor the menu on\r
955         if ((point.x == -1) && (point.y == -1))\r
956         {\r
957                 CRect rect;\r
958                 GetItemRect(selIndex, &rect, LVIR_LABEL);\r
959                 ClientToScreen(&rect);\r
960                 point = rect.CenterPoint();\r
961         }\r
962         m_nSearchIndex = selIndex;\r
963         m_bCancelled = FALSE;\r
964 \r
965         // calculate some information the context menu commands can use\r
966 //      CString pathURL = GetURLFromPath(m_path);\r
967 \r
968         POSITION pos = GetFirstSelectedItemPosition();\r
969         int indexNext = GetNextSelectedItem(pos);\r
970         if (indexNext < 0)\r
971                 return;\r
972 \r
973         GitRev* pSelLogEntry = reinterpret_cast<GitRev*>(m_arShownList.GetAt(indexNext));\r
974 #if 0\r
975         GitRev revSelected = pSelLogEntry->Rev;\r
976         GitRev revPrevious = git_revnum_t(revSelected)-1;\r
977         if ((pSelLogEntry->pArChangedPaths)&&(pSelLogEntry->pArChangedPaths->GetCount() <= 2))\r
978         {\r
979                 for (int i=0; i<pSelLogEntry->pArChangedPaths->GetCount(); ++i)\r
980                 {\r
981                         LogChangedPath * changedpath = (LogChangedPath *)pSelLogEntry->pArChangedPaths->GetAt(i);\r
982                         if (changedpath->lCopyFromRev)\r
983                                 revPrevious = changedpath->lCopyFromRev;\r
984                 }\r
985         }\r
986         GitRev revSelected2;\r
987         if (pos)\r
988         {\r
989                 PLOGENTRYDATA pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_arShownList.GetAt(GetNextSelectedItem(pos)));\r
990                 revSelected2 = pLogEntry->Rev;\r
991         }\r
992         bool bAllFromTheSameAuthor = true;\r
993         CString firstAuthor;\r
994         CLogDataVector selEntries;\r
995         GitRev revLowest, revHighest;\r
996         GitRevRangeArray revisionRanges;\r
997         {\r
998                 POSITION pos = GetFirstSelectedItemPosition();\r
999                 PLOGENTRYDATA pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_arShownList.GetAt(GetNextSelectedItem(pos)));\r
1000                 revisionRanges.AddRevision(pLogEntry->Rev);\r
1001                 selEntries.push_back(pLogEntry);\r
1002                 firstAuthor = pLogEntry->sAuthor;\r
1003                 revLowest = pLogEntry->Rev;\r
1004                 revHighest = pLogEntry->Rev;\r
1005                 while (pos)\r
1006                 {\r
1007                         pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_arShownList.GetAt(GetNextSelectedItem(pos)));\r
1008                         revisionRanges.AddRevision(pLogEntry->Rev);\r
1009                         selEntries.push_back(pLogEntry);\r
1010                         if (firstAuthor.Compare(pLogEntry->sAuthor))\r
1011                                 bAllFromTheSameAuthor = false;\r
1012                         revLowest = (git_revnum_t(pLogEntry->Rev) > git_revnum_t(revLowest) ? revLowest : pLogEntry->Rev);\r
1013                         revHighest = (git_revnum_t(pLogEntry->Rev) < git_revnum_t(revHighest) ? revHighest : pLogEntry->Rev);\r
1014                 }\r
1015         }\r
1016 \r
1017 #endif\r
1018 \r
1019         int FirstSelect=-1, LastSelect=-1;\r
1020         pos = GetFirstSelectedItemPosition();\r
1021         FirstSelect = GetNextSelectedItem(pos);\r
1022         while(pos)\r
1023         {\r
1024                 LastSelect = GetNextSelectedItem(pos);\r
1025         }\r
1026         //entry is selected, now show the popup menu\r
1027         CIconMenu popup;\r
1028         if (popup.CreatePopupMenu())\r
1029         {\r
1030 \r
1031                 if(m_ContextMenuMask&GetContextMenuBit(ID_REBASE_PICK))\r
1032                         popup.AppendMenuIcon(ID_REBASE_PICK,   _T("Pick"),   IDI_PICK);\r
1033 \r
1034                 if(m_ContextMenuMask&GetContextMenuBit(ID_REBASE_SQUASH))\r
1035                         popup.AppendMenuIcon(ID_REBASE_SQUASH, _T("Squash"), IDI_SQUASH);\r
1036 \r
1037                 if(m_ContextMenuMask&GetContextMenuBit(ID_REBASE_EDIT))\r
1038                         popup.AppendMenuIcon(ID_REBASE_EDIT,   _T("Edit"),   IDI_EDIT);\r
1039 \r
1040                 if(m_ContextMenuMask&GetContextMenuBit(ID_REBASE_SKIP))\r
1041                         popup.AppendMenuIcon(ID_REBASE_SKIP,   _T("SKIP"),   IDI_SKIP);\r
1042                 \r
1043                 if(m_ContextMenuMask&(GetContextMenuBit(ID_REBASE_SKIP)|GetContextMenuBit(ID_REBASE_EDIT)|\r
1044                               GetContextMenuBit(ID_REBASE_SQUASH)|GetContextMenuBit(ID_REBASE_PICK)))\r
1045                         popup.AppendMenu(MF_SEPARATOR, NULL);\r
1046 \r
1047                 if (GetSelectedCount() == 1)\r
1048                 {\r
1049                         {\r
1050                                 if (m_hasWC)\r
1051                                 {\r
1052                                         if(m_ContextMenuMask&GetContextMenuBit(ID_COMPARE))\r
1053                                                 popup.AppendMenuIcon(ID_COMPARE, IDS_LOG_POPUP_COMPARE, IDI_DIFF);\r
1054                                         // TODO:\r
1055                                         // TortoiseMerge could be improved to take a /blame switch\r
1056                                         // and then not 'cat' the files from a unified diff but\r
1057                                         // blame then.\r
1058                                         // But until that's implemented, the context menu entry for\r
1059                                         // this feature is commented out.\r
1060                                         //popup.AppendMenu(ID_BLAMECOMPARE, IDS_LOG_POPUP_BLAMECOMPARE, IDI_BLAME);\r
1061                                 }\r
1062                                 if(m_ContextMenuMask&GetContextMenuBit(ID_GNUDIFF1))\r
1063                                         popup.AppendMenuIcon(ID_GNUDIFF1, IDS_LOG_POPUP_GNUDIFF_CH, IDI_DIFF);\r
1064 \r
1065                                 if(m_ContextMenuMask&GetContextMenuBit(ID_COMPAREWITHPREVIOUS))\r
1066                                         popup.AppendMenuIcon(ID_COMPAREWITHPREVIOUS, IDS_LOG_POPUP_COMPAREWITHPREVIOUS, IDI_DIFF);\r
1067                                 //popup.AppendMenuIcon(ID_BLAMEWITHPREVIOUS, IDS_LOG_POPUP_BLAMEWITHPREVIOUS, IDI_BLAME);\r
1068                                 popup.AppendMenu(MF_SEPARATOR, NULL);\r
1069                         }\r
1070 \r
1071 //                      if (!m_ProjectProperties.sWebViewerRev.IsEmpty())\r
1072 //                      {\r
1073 //                              popup.AppendMenuIcon(ID_VIEWREV, IDS_LOG_POPUP_VIEWREV);\r
1074 //                      }\r
1075 //                      if (!m_ProjectProperties.sWebViewerPathRev.IsEmpty())\r
1076 //                      {\r
1077 //                              popup.AppendMenuIcon(ID_VIEWPATHREV, IDS_LOG_POPUP_VIEWPATHREV);\r
1078 //                      }\r
1079 //                      if ((!m_ProjectProperties.sWebViewerPathRev.IsEmpty())||\r
1080 //                              (!m_ProjectProperties.sWebViewerRev.IsEmpty()))\r
1081 //                      {\r
1082 //                              popup.AppendMenu(MF_SEPARATOR, NULL);\r
1083 //                      }\r
1084 \r
1085                         //if (m_hasWC)\r
1086                         //      popup.AppendMenuIcon(ID_REVERTTOREV, IDS_LOG_POPUP_REVERTTOREV, IDI_REVERT);\r
1087                         //if (m_hasWC)\r
1088                         //      popup.AppendMenuIcon(ID_REVERTREV, IDS_LOG_POPUP_REVERTREV, IDI_REVERT);\r
1089                         //if (m_hasWC)\r
1090                         //      popup.AppendMenuIcon(ID_MERGEREV, IDS_LOG_POPUP_MERGEREV, IDI_MERGE);\r
1091                         \r
1092                         CString str;\r
1093                         str.Format(_T("Reset %s to this"),g_Git.GetCurrentBranch());\r
1094 \r
1095                         if(m_ContextMenuMask&GetContextMenuBit(ID_RESET))\r
1096                                 popup.AppendMenuIcon(ID_RESET,str,IDI_REVERT);\r
1097 \r
1098                         if(m_ContextMenuMask&GetContextMenuBit(ID_SWITCHTOREV))\r
1099                                 popup.AppendMenuIcon(ID_SWITCHTOREV, _T("Switch/Checkout to this") , IDI_SWITCH);\r
1100 \r
1101                         if(m_ContextMenuMask&GetContextMenuBit(ID_CREATE_BRANCH))\r
1102                                 popup.AppendMenuIcon(ID_CREATE_BRANCH, _T("Create Branch at this version") , IDI_COPY);\r
1103 \r
1104                         if(m_ContextMenuMask&GetContextMenuBit(ID_CREATE_TAG))\r
1105                                 popup.AppendMenuIcon(ID_CREATE_TAG, _T("Create Tag at this version"), IDI_COPY);\r
1106                         \r
1107                         str.Format(_T("*Rebase %s to this"),g_Git.GetCurrentBranch());\r
1108 \r
1109                         if(pSelLogEntry->m_CommitHash != m_HeadHash)\r
1110                                 if(m_ContextMenuMask&GetContextMenuBit(ID_REBASE_TO_VERSION))\r
1111                                         popup.AppendMenuIcon(ID_REBASE_TO_VERSION, str , IDI_REBASE);                   \r
1112 \r
1113                         if(m_ContextMenuMask&GetContextMenuBit(ID_EXPORT))\r
1114                                 popup.AppendMenuIcon(ID_EXPORT, _T("Export this version"), IDI_EXPORT); \r
1115                         \r
1116 \r
1117                         popup.AppendMenu(MF_SEPARATOR, NULL);\r
1118 \r
1119                 }\r
1120         \r
1121                 if (GetSelectedCount() >= 2)\r
1122                 {\r
1123                         bool bAddSeparator = false;\r
1124                         if (IsSelectionContinuous() || (GetSelectedCount() == 2))\r
1125                         {\r
1126                                 if(m_ContextMenuMask&GetContextMenuBit(ID_COMPARETWO))\r
1127                                         popup.AppendMenuIcon(ID_COMPARETWO, IDS_LOG_POPUP_COMPARETWO, IDI_DIFF);\r
1128                         }\r
1129 \r
1130                         if (GetSelectedCount() == 2)\r
1131                         {\r
1132                                 //popup.AppendMenuIcon(ID_BLAMETWO, IDS_LOG_POPUP_BLAMEREVS, IDI_BLAME);\r
1133                                 if(m_ContextMenuMask&GetContextMenuBit(ID_GNUDIFF2))\r
1134                                         popup.AppendMenuIcon(ID_GNUDIFF2, IDS_LOG_POPUP_GNUDIFF, IDI_DIFF);\r
1135                                 bAddSeparator = true;\r
1136                         }\r
1137 \r
1138                         if (m_hasWC)\r
1139                         {\r
1140                                 //popup.AppendMenuIcon(ID_REVERTREV, IDS_LOG_POPUP_REVERTREVS, IDI_REVERT);\r
1141 //                              if (m_hasWC)\r
1142 //                                      popup.AppendMenuIcon(ID_MERGEREV, IDS_LOG_POPUP_MERGEREVS, IDI_MERGE);\r
1143                                 bAddSeparator = true;\r
1144                         }\r
1145                         if (bAddSeparator)\r
1146                                 popup.AppendMenu(MF_SEPARATOR, NULL);\r
1147                 }\r
1148 \r
1149                 if ( GetSelectedCount() >0 )\r
1150                 {\r
1151                         if ( IsSelectionContinuous() && GetSelectedCount() >= 2 )\r
1152                         {\r
1153                                 if(m_ContextMenuMask&GetContextMenuBit(ID_COMBINE_COMMIT))\r
1154                                 {\r
1155                                         CString head;\r
1156                                         int headindex;\r
1157                                         headindex = this->GetHeadIndex();\r
1158                                         if(headindex>=0)\r
1159                                         {\r
1160                                                 head.Format(_T("HEAD~%d"),LastSelect-headindex);\r
1161                                                 CString hash=g_Git.GetHash(head);\r
1162                                                 hash=hash.Left(40);\r
1163                                                 GitRev* pLastEntry = reinterpret_cast<GitRev*>(m_arShownList.GetAt(LastSelect));\r
1164                                                 if(pLastEntry->m_CommitHash == hash)\r
1165                                                         popup.AppendMenuIcon(ID_COMBINE_COMMIT,_T("*Combine to one commit"),IDI_COMBINE);\r
1166                                         }\r
1167                                 }\r
1168                         }\r
1169                         if(m_ContextMenuMask&GetContextMenuBit(ID_CHERRY_PICK))\r
1170                                 popup.AppendMenuIcon(ID_CHERRY_PICK, _T("Cherry Pick this version"), IDI_EXPORT);\r
1171                         popup.AppendMenu(MF_SEPARATOR, NULL);\r
1172         \r
1173                 }\r
1174 \r
1175                 \r
1176 #if 0\r
1177 //              if ((selEntries.size() > 0)&&(bAllFromTheSameAuthor))\r
1178 //              {\r
1179 //                      popup.AppendMenuIcon(ID_EDITAUTHOR, IDS_LOG_POPUP_EDITAUTHOR);\r
1180 //              }\r
1181 //              if (GetSelectedCount() == 1)\r
1182 //              {\r
1183 //                      popup.AppendMenuIcon(ID_EDITLOG, IDS_LOG_POPUP_EDITLOG);\r
1184 //                      popup.AppendMenuIcon(ID_REVPROPS, IDS_REPOBROWSE_SHOWREVPROP, IDI_PROPERTIES); // "Show Revision Properties"\r
1185 //                      popup.AppendMenu(MF_SEPARATOR, NULL);\r
1186 //              }\r
1187 #endif\r
1188 \r
1189                 \r
1190                 if (GetSelectedCount() == 1)\r
1191                 {\r
1192                         if(m_ContextMenuMask&GetContextMenuBit(ID_COPYHASH))\r
1193                                 popup.AppendMenuIcon(ID_COPYHASH, _T("Copy Commit Hash"));\r
1194                 }\r
1195                 if (GetSelectedCount() != 0)\r
1196                 {\r
1197                         if(m_ContextMenuMask&GetContextMenuBit(ID_COPYCLIPBOARD))\r
1198                                 popup.AppendMenuIcon(ID_COPYCLIPBOARD, IDS_LOG_POPUP_COPYTOCLIPBOARD);\r
1199                 }\r
1200 \r
1201                 if(m_ContextMenuMask&GetContextMenuBit(ID_FINDENTRY))\r
1202                         popup.AppendMenuIcon(ID_FINDENTRY, IDS_LOG_POPUP_FIND);\r
1203 \r
1204                 int cmd = popup.TrackPopupMenu(TPM_RETURNCMD | TPM_LEFTALIGN | TPM_NONOTIFY, point.x, point.y, this, 0);\r
1205 //              DialogEnableWindow(IDOK, FALSE);\r
1206 //              SetPromptApp(&theApp);\r
1207         \r
1208                 this->ContextMenuAction(cmd, FirstSelect, LastSelect);\r
1209                 \r
1210 //              EnableOKButton();\r
1211         } // if (popup.CreatePopupMenu())\r
1212 \r
1213 }\r
1214 \r
1215 bool CGitLogListBase::IsSelectionContinuous()\r
1216 {\r
1217         if ( GetSelectedCount()==1 )\r
1218         {\r
1219                 // if only one revision is selected, the selection is of course\r
1220                 // continuous\r
1221                 return true;\r
1222         }\r
1223 \r
1224         POSITION pos = GetFirstSelectedItemPosition();\r
1225         bool bContinuous = (m_arShownList.GetCount() == (INT_PTR)m_logEntries.size());\r
1226         if (bContinuous)\r
1227         {\r
1228                 int itemindex = GetNextSelectedItem(pos);\r
1229                 while (pos)\r
1230                 {\r
1231                         int nextindex = GetNextSelectedItem(pos);\r
1232                         if (nextindex - itemindex > 1)\r
1233                         {\r
1234                                 bContinuous = false;\r
1235                                 break;\r
1236                         }\r
1237                         itemindex = nextindex;\r
1238                 }\r
1239         }\r
1240         return bContinuous;\r
1241 }\r
1242 \r
1243 void CGitLogListBase::CopySelectionToClipBoard(bool HashOnly)\r
1244 {\r
1245 \r
1246         CString sClipdata;\r
1247         POSITION pos = GetFirstSelectedItemPosition();\r
1248         if (pos != NULL)\r
1249         {\r
1250                 CString sRev;\r
1251                 sRev.LoadString(IDS_LOG_REVISION);\r
1252                 CString sAuthor;\r
1253                 sAuthor.LoadString(IDS_LOG_AUTHOR);\r
1254                 CString sDate;\r
1255                 sDate.LoadString(IDS_LOG_DATE);\r
1256                 CString sMessage;\r
1257                 sMessage.LoadString(IDS_LOG_MESSAGE);\r
1258                 while (pos)\r
1259                 {\r
1260                         CString sLogCopyText;\r
1261                         CString sPaths;\r
1262                         GitRev * pLogEntry = reinterpret_cast<GitRev *>(m_arShownList.GetAt(GetNextSelectedItem(pos)));\r
1263 \r
1264                         if(!HashOnly)\r
1265                         {\r
1266                                 //pLogEntry->m_Files\r
1267                                 //LogChangedPathArray * cpatharray = pLogEntry->pArChangedPaths;\r
1268                         \r
1269                                 for (int cpPathIndex = 0; cpPathIndex<pLogEntry->m_Files.GetCount(); ++cpPathIndex)\r
1270                                 {\r
1271                                         sPaths += ((CTGitPath&)pLogEntry->m_Files[cpPathIndex]).GetActionName() + _T(" : ") + pLogEntry->m_Files[cpPathIndex].GetGitPathString();\r
1272                                         sPaths += _T("\r\n");\r
1273                                 }\r
1274                                 sPaths.Trim();\r
1275                                 sLogCopyText.Format(_T("%s: %s\r\n%s: %s\r\n%s: %s\r\n%s:\r\n%s\r\n----\r\n%s\r\n\r\n"),\r
1276                                         (LPCTSTR)sRev, pLogEntry->m_CommitHash,\r
1277                                         (LPCTSTR)sAuthor, (LPCTSTR)pLogEntry->m_AuthorName,\r
1278                                         (LPCTSTR)sDate, \r
1279                                         (LPCTSTR)CAppUtils::FormatDateAndTime( pLogEntry->m_AuthorDate, m_DateFormat, true, m_bRelativeTimes ),\r
1280                                         (LPCTSTR)sMessage, pLogEntry->m_Subject+_T("\r\n")+pLogEntry->m_Body,\r
1281                                         (LPCTSTR)sPaths);\r
1282                                 sClipdata +=  sLogCopyText;\r
1283                         }else\r
1284                         {\r
1285                                 sClipdata += pLogEntry->m_CommitHash;\r
1286                                 break;\r
1287                         }\r
1288 \r
1289                 }\r
1290                 CStringUtils::WriteAsciiStringToClipboard(sClipdata, GetSafeHwnd());\r
1291         }\r
1292 \r
1293 }\r
1294 \r
1295 void CGitLogListBase::DiffSelectedRevWithPrevious()\r
1296 {\r
1297 #if 0\r
1298         if (m_bThreadRunning)\r
1299                 return;\r
1300         UpdateLogInfoLabel();\r
1301         int selIndex = m_LogList.GetSelectionMark();\r
1302         if (selIndex < 0)\r
1303                 return;\r
1304         int selCount = m_LogList.GetSelectedCount();\r
1305         if (selCount != 1)\r
1306                 return;\r
1307 \r
1308         // Find selected entry in the log list\r
1309         POSITION pos = m_LogList.GetFirstSelectedItemPosition();\r
1310         PLOGENTRYDATA pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_arShownList.GetAt(m_LogList.GetNextSelectedItem(pos)));\r
1311         long rev1 = pLogEntry->Rev;\r
1312         long rev2 = rev1-1;\r
1313         CTGitPath path = m_path;\r
1314 \r
1315         // See how many files under the relative root were changed in selected revision\r
1316         int nChanged = 0;\r
1317         LogChangedPath * changed = NULL;\r
1318         for (INT_PTR c = 0; c < pLogEntry->pArChangedPaths->GetCount(); ++c)\r
1319         {\r
1320                 LogChangedPath * cpath = pLogEntry->pArChangedPaths->GetAt(c);\r
1321                 if (cpath  &&  cpath -> sPath.Left(m_sRelativeRoot.GetLength()).Compare(m_sRelativeRoot)==0)\r
1322                 {\r
1323                         ++nChanged;\r
1324                         changed = cpath;\r
1325                 }\r
1326         }\r
1327 \r
1328         if (m_path.IsDirectory() && nChanged == 1) \r
1329         {\r
1330                 // We're looking at the log for a directory and only one file under dir was changed in the revision\r
1331                 // Do diff on that file instead of whole directory\r
1332                 path.AppendPathString(changed->sPath.Mid(m_sRelativeRoot.GetLength()));\r
1333         } \r
1334 \r
1335         m_bCancelled = FALSE;\r
1336         DialogEnableWindow(IDOK, FALSE);\r
1337         SetPromptApp(&theApp);\r
1338         theApp.DoWaitCursor(1);\r
1339 \r
1340         if (PromptShown())\r
1341         {\r
1342                 GitDiff diff(this, m_hWnd, true);\r
1343                 diff.SetAlternativeTool(!!(GetAsyncKeyState(VK_SHIFT) & 0x8000));\r
1344                 diff.SetHEADPeg(m_LogRevision);\r
1345                 diff.ShowCompare(path, rev2, path, rev1);\r
1346         }\r
1347         else\r
1348         {\r
1349                 CAppUtils::StartShowCompare(m_hWnd, path, rev2, path, rev1, GitRev(), m_LogRevision, !!(GetAsyncKeyState(VK_SHIFT) & 0x8000));\r
1350         }\r
1351 \r
1352         theApp.DoWaitCursor(-1);\r
1353         EnableOKButton();\r
1354 #endif\r
1355 }\r
1356 \r
1357 void CGitLogListBase::OnLvnOdfinditemLoglist(NMHDR *pNMHDR, LRESULT *pResult)\r
1358 {\r
1359         LPNMLVFINDITEM pFindInfo = reinterpret_cast<LPNMLVFINDITEM>(pNMHDR);\r
1360         *pResult = -1;\r
1361         \r
1362         if (pFindInfo->lvfi.flags & LVFI_PARAM)\r
1363                 return; \r
1364         if ((pFindInfo->iStart < 0)||(pFindInfo->iStart >= m_arShownList.GetCount()))\r
1365                 return;\r
1366         if (pFindInfo->lvfi.psz == 0)\r
1367                 return;\r
1368 #if 0\r
1369         CString sCmp = pFindInfo->lvfi.psz;\r
1370         CString sRev;   \r
1371         for (int i=pFindInfo->iStart; i<m_arShownList.GetCount(); ++i)\r
1372         {\r
1373                 GitRev * pLogEntry = reinterpret_cast<GitRev*>(m_arShownList.GetAt(i));\r
1374                 sRev.Format(_T("%ld"), pLogEntry->Rev);\r
1375                 if (pFindInfo->lvfi.flags & LVFI_PARTIAL)\r
1376                 {\r
1377                         if (sCmp.Compare(sRev.Left(sCmp.GetLength()))==0)\r
1378                         {\r
1379                                 *pResult = i;\r
1380                                 return;\r
1381                         }\r
1382                 }\r
1383                 else\r
1384                 {\r
1385                         if (sCmp.Compare(sRev)==0)\r
1386                         {\r
1387                                 *pResult = i;\r
1388                                 return;\r
1389                         }\r
1390                 }\r
1391         }\r
1392         if (pFindInfo->lvfi.flags & LVFI_WRAP)\r
1393         {\r
1394                 for (int i=0; i<pFindInfo->iStart; ++i)\r
1395                 {\r
1396                         PLOGENTRYDATA pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_arShownList.GetAt(i));\r
1397                         sRev.Format(_T("%ld"), pLogEntry->Rev);\r
1398                         if (pFindInfo->lvfi.flags & LVFI_PARTIAL)\r
1399                         {\r
1400                                 if (sCmp.Compare(sRev.Left(sCmp.GetLength()))==0)\r
1401                                 {\r
1402                                         *pResult = i;\r
1403                                         return;\r
1404                                 }\r
1405                         }\r
1406                         else\r
1407                         {\r
1408                                 if (sCmp.Compare(sRev)==0)\r
1409                                 {\r
1410                                         *pResult = i;\r
1411                                         return;\r
1412                                 }\r
1413                         }\r
1414                 }\r
1415         }\r
1416 #endif\r
1417         *pResult = -1;\r
1418 }\r
1419 \r
1420 int CGitLogListBase::FillGitLog(CTGitPath *path,int info,CString *from,CString *to)\r
1421 {\r
1422         ClearText();\r
1423 \r
1424         this->m_logEntries.ClearAll();\r
1425         this->m_logEntries.ParserFromLog(path,-1,info,from,to);\r
1426 \r
1427         //this->m_logEntries.ParserFromLog();\r
1428         SetItemCountEx(this->m_logEntries.size());\r
1429 \r
1430         this->m_arShownList.RemoveAll();\r
1431 \r
1432         for(unsigned int i=0;i<m_logEntries.size();i++)\r
1433         {\r
1434                 if(m_IsOldFirst)\r
1435                 {\r
1436                         m_logEntries[m_logEntries.size()-i-1].m_IsFull=TRUE;\r
1437                         this->m_arShownList.Add(&m_logEntries[m_logEntries.size()-i-1]);\r
1438                 \r
1439                 }else\r
1440                 {\r
1441                         m_logEntries[i].m_IsFull=TRUE;\r
1442                         this->m_arShownList.Add(&m_logEntries[i]);\r
1443                 }\r
1444         }\r
1445 \r
1446     if(path)\r
1447         m_Path=*path;\r
1448         return 0;\r
1449 \r
1450 }\r
1451 \r
1452 int CGitLogListBase::FillGitShortLog()\r
1453 {\r
1454         ClearText();\r
1455 \r
1456         this->m_logEntries.ClearAll();\r
1457 \r
1458         m_LogCache.FetchCacheIndex(g_Git.m_CurrentDir);\r
1459 \r
1460     CTGitPath *path;\r
1461     if(this->m_Path.IsEmpty())\r
1462         path=NULL;\r
1463     else\r
1464         path=&this->m_Path;\r
1465 \r
1466         CString hash;\r
1467         int mask;\r
1468         mask = CGit::LOG_INFO_ONLY_HASH | CGit::LOG_INFO_BOUNDARY;\r
1469 //      if(this->m_bAllBranch)\r
1470         mask |= m_ShowMask;\r
1471 \r
1472         this->m_logEntries.ParserShortLog(path,hash,-1,mask);\r
1473         \r
1474 \r
1475         //this->m_logEntries.ParserFromLog();\r
1476         if(IsInWorkingThread())\r
1477                 PostMessage(LVM_SETITEMCOUNT, (WPARAM) this->m_logEntries.size(),(LPARAM) LVSICF_NOINVALIDATEALL);\r
1478         else\r
1479                 SetItemCountEx(this->m_logEntries.size());\r
1480 \r
1481         this->m_arShownList.RemoveAll();\r
1482 \r
1483         for(unsigned int i=0;i<m_logEntries.size();i++)\r
1484         {\r
1485                 if(this->m_IsOldFirst)\r
1486                 {\r
1487                         this->m_arShownList.Add(&m_logEntries[m_logEntries.size()-1-i]);\r
1488 \r
1489                 }else\r
1490                 {\r
1491                         this->m_arShownList.Add(&m_logEntries[i]);\r
1492                 }\r
1493         }\r
1494         return 0;\r
1495 }\r
1496 \r
1497 BOOL CGitLogListBase::PreTranslateMessage(MSG* pMsg)\r
1498 {\r
1499         // Skip Ctrl-C when copying text out of the log message or search filter\r
1500         BOOL bSkipAccelerator = ( pMsg->message == WM_KEYDOWN && pMsg->wParam=='C' && (GetFocus()==GetDlgItem(IDC_MSGVIEW) || GetFocus()==GetDlgItem(IDC_SEARCHEDIT) ) && GetKeyState(VK_CONTROL)&0x8000 );\r
1501         if (pMsg->message == WM_KEYDOWN && pMsg->wParam=='\r')\r
1502         {\r
1503                 //if (GetFocus()==GetDlgItem(IDC_LOGLIST))\r
1504                 {\r
1505                         if (CRegDWORD(_T("Software\\TortoiseGit\\DiffByDoubleClickInLog"), FALSE))\r
1506                         {\r
1507                                 DiffSelectedRevWithPrevious();\r
1508                                 return TRUE;\r
1509                         }\r
1510                 }\r
1511 #if 0\r
1512                 if (GetFocus()==GetDlgItem(IDC_LOGMSG))\r
1513                 {\r
1514                         DiffSelectedFile();\r
1515                         return TRUE;\r
1516                 }\r
1517 #endif\r
1518         }\r
1519 \r
1520 #if 0\r
1521         if (m_hAccel && !bSkipAccelerator)\r
1522         {\r
1523                 int ret = TranslateAccelerator(m_hWnd, m_hAccel, pMsg);\r
1524                 if (ret)\r
1525                         return TRUE;\r
1526         }\r
1527         \r
1528 #endif\r
1529         //m_tooltips.RelayEvent(pMsg);\r
1530         return __super::PreTranslateMessage(pMsg);\r
1531 }\r
1532 \r
1533 void CGitLogListBase::OnNMDblclkLoglist(NMHDR * /*pNMHDR*/, LRESULT *pResult)\r
1534 {\r
1535         // a double click on an entry in the revision list has happened\r
1536         *pResult = 0;\r
1537 \r
1538   if (CRegDWORD(_T("Software\\TortoiseGit\\DiffByDoubleClickInLog"), FALSE))\r
1539           DiffSelectedRevWithPrevious();\r
1540 }\r
1541 \r
1542 int CGitLogListBase::FetchLogAsync(void * data)\r
1543 {\r
1544         m_ProcData=data;\r
1545         m_bExitThread=FALSE;\r
1546         InterlockedExchange(&m_bThreadRunning, TRUE);\r
1547         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
1548         m_LoadingThread = AfxBeginThread(LogThreadEntry, this);\r
1549         if (m_LoadingThread ==NULL)\r
1550         {\r
1551                 InterlockedExchange(&m_bThreadRunning, FALSE);\r
1552                 InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1553                 CMessageBox::Show(NULL, IDS_ERR_THREADSTARTFAILED, IDS_APPNAME, MB_OK | MB_ICONERROR);\r
1554                 return -1;\r
1555         }\r
1556         return 0;\r
1557 }\r
1558 \r
1559 //this is the thread function which calls the subversion function\r
1560 UINT CGitLogListBase::LogThreadEntry(LPVOID pVoid)\r
1561 {\r
1562         return ((CGitLogListBase*)pVoid)->LogThread();\r
1563 }\r
1564 \r
1565 void CGitLogListBase::GetTimeRange(CTime &oldest, CTime &latest)\r
1566 {\r
1567         //CTime time;\r
1568         oldest=CTime::GetCurrentTime();\r
1569         latest=CTime(1971,1,2,0,0,0);\r
1570         for(unsigned int i=0;i<m_logEntries.size();i++)\r
1571         {\r
1572                 if(m_logEntries[i].m_AuthorDate.GetTime() < oldest.GetTime())\r
1573                         oldest = m_logEntries[i].m_AuthorDate.GetTime();\r
1574 \r
1575                 if(m_logEntries[i].m_AuthorDate.GetTime() > latest.GetTime())\r
1576                         latest = m_logEntries[i].m_AuthorDate.GetTime();\r
1577 \r
1578         }\r
1579 }\r
1580 \r
1581 //Helper class for FetchFullLogInfo()\r
1582 class CGitCall_FetchFullLogInfo : public CGitCall\r
1583 {\r
1584 public:\r
1585         CGitCall_FetchFullLogInfo(CGitLogListBase* ploglist):m_ploglist(ploglist),m_CollectedCount(0){}\r
1586         virtual bool OnOutputData(const BYTE* data, size_t size)\r
1587         {\r
1588                 if(size==0)\r
1589                         return m_ploglist->m_bExitThread;\r
1590                 //Add received data to byte collector\r
1591                 m_ByteCollector.append(data,size);\r
1592 \r
1593                 //Find loginfo endmarker\r
1594                 static const BYTE dataToFind[]={0,0};\r
1595                 int found=m_ByteCollector.findData(dataToFind,2);\r
1596                 if(found<0)\r
1597                         return m_ploglist->m_bExitThread;//Not found\r
1598                 found+=2;//Position after loginfo end-marker\r
1599 \r
1600                 //Prepare data for OnLogInfo and call it\r
1601                 BYTE_VECTOR logInfo;\r
1602                 logInfo.append(&*m_ByteCollector.begin(),found);\r
1603                 OnLogInfo(logInfo);\r
1604 \r
1605                 //Remove loginfo from bytecollector\r
1606                 m_ByteCollector.erase(m_ByteCollector.begin(),m_ByteCollector.begin()+found);\r
1607 \r
1608                 return m_ploglist->m_bExitThread;\r
1609         }\r
1610         virtual void OnEnd()\r
1611         {\r
1612                 //Rest should be a complete log line.\r
1613                 if(!m_ByteCollector.empty())\r
1614                         OnLogInfo(m_ByteCollector);\r
1615         }\r
1616 \r
1617 \r
1618         void OnLogInfo(BYTE_VECTOR& logInfo)\r
1619         {\r
1620                 GitRev fullRev;\r
1621                 fullRev.ParserFromLog(logInfo);\r
1622                 MAP_HASH_REV::iterator itRev=m_ploglist->m_logEntries.m_HashMap.find(fullRev.m_CommitHash);\r
1623                 if(itRev==m_ploglist->m_logEntries.m_HashMap.end())\r
1624                 {\r
1625                         //Should not occur, only when Git-tree updated in the mean time. (Race condition)\r
1626                         return;//Ignore\r
1627                 }\r
1628                 //Set updating\r
1629                 int rev=itRev->second;\r
1630                 GitRev* revInVector=&m_ploglist->m_logEntries[rev];\r
1631 \r
1632 \r
1633 //              fullRev.m_IsUpdateing=TRUE;\r
1634 //              fullRev.m_IsFull=TRUE;\r
1635 \r
1636 \r
1637                 if(InterlockedExchange(&revInVector->m_IsUpdateing,TRUE))\r
1638                         return;//Cannot update this row now. Ignore.\r
1639                 TCHAR oldmark=revInVector->m_Mark;\r
1640                 GIT_REV_LIST oldlist=revInVector->m_ParentHash;\r
1641 //              CString oldhash=m_CommitHash;\r
1642 \r
1643                 //Parse new rev info\r
1644                 revInVector->ParserFromLog(logInfo);\r
1645 \r
1646                 if(oldmark!=0)\r
1647                         revInVector->m_Mark=oldmark;  //parser full log will cause old mark overwrited. \r
1648                                                                //So we need keep old bound mark.\r
1649                 revInVector->m_ParentHash=oldlist;\r
1650 \r
1651                 //Reset updating\r
1652                 InterlockedExchange(&revInVector->m_IsFull,TRUE);\r
1653                 InterlockedExchange(&revInVector->m_IsUpdateing,FALSE);\r
1654 \r
1655                 //Notify listcontrol and update progress bar\r
1656                 ++m_CollectedCount;\r
1657 \r
1658                 ::PostMessage(m_ploglist->m_hWnd,MSG_LOADED,(WPARAM)rev,0);\r
1659 \r
1660                 DWORD percent=m_CollectedCount*98/m_ploglist->m_logEntries.size() + GITLOG_START+1;\r
1661                 if(percent == GITLOG_END)\r
1662                         percent = GITLOG_END -1;\r
1663                 \r
1664                 ::PostMessage(m_ploglist->GetParent()->m_hWnd,MSG_LOAD_PERCENTAGE,(WPARAM) percent,0);\r
1665         }\r
1666 \r
1667         CGitLogListBase*        m_ploglist;\r
1668         BYTE_VECTOR                     m_ByteCollector;\r
1669         int                                     m_CollectedCount;\r
1670 \r
1671 };\r
1672 \r
1673 void CGitLogListBase::FetchFullLogInfo()\r
1674 {\r
1675         CGitCall_FetchFullLogInfo fetcher(this);\r
1676         int mask=\r
1677                 CGit::LOG_INFO_STAT|\r
1678                 CGit::LOG_INFO_FILESTATE|\r
1679                 CGit::LOG_INFO_DETECT_COPYRENAME|\r
1680                 m_ShowMask;\r
1681         g_Git.GetLog(&fetcher,CString(),NULL,-1,mask);\r
1682 }\r
1683 \r
1684 void CGitLogListBase::FetchFullLogInfoOrig()\r
1685 {\r
1686         unsigned int updated=0;\r
1687         int percent=0;\r
1688         CRect rect;\r
1689         while(1)\r
1690         {\r
1691                 for(unsigned int i=0;i<m_logEntries.size();i++)\r
1692                 {\r
1693                         if(m_LogCache.GetCacheData(m_logEntries[i]))\r
1694                         {\r
1695                                 if(!m_logEntries.FetchFullInfo(i))\r
1696                                 {\r
1697                                         updated++;\r
1698                                 }\r
1699                                 m_LogCache.AddCacheEntry(m_logEntries[i]);\r
1700 \r
1701                         }else\r
1702                         {\r
1703                                 updated++;\r
1704                                 InterlockedExchange(&m_logEntries[i].m_IsUpdateing,FALSE);\r
1705                                 InterlockedExchange(&m_logEntries[i].m_IsFull,TRUE);\r
1706                         }\r
1707                         \r
1708                         ::PostMessage(m_hWnd,MSG_LOADED,(WPARAM)i,0);\r
1709 \r
1710                         if(m_bExitThread)\r
1711                         {\r
1712                                 InterlockedExchange(&m_bThreadRunning, FALSE);\r
1713                                 InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1714                                 return;\r
1715                         }\r
1716 \r
1717                         percent=updated*98/m_logEntries.size() + GITLOG_START+1;\r
1718                         if(percent == GITLOG_END)\r
1719                                 percent = GITLOG_END -1;\r
1720                         \r
1721                         ::PostMessage(this->GetParent()->m_hWnd,MSG_LOAD_PERCENTAGE,(WPARAM) percent,0);\r
1722 \r
1723                         \r
1724                 }\r
1725                 if(updated==m_logEntries.size())\r
1726                         break;\r
1727         }\r
1728 }\r
1729 \r
1730 UINT CGitLogListBase::LogThread()\r
1731 {\r
1732 \r
1733 //      if(m_ProcCallBack)\r
1734 //              m_ProcCallBack(m_ProcData,GITLOG_START);\r
1735         ::PostMessage(this->GetParent()->m_hWnd,MSG_LOAD_PERCENTAGE,(WPARAM) GITLOG_START,0);\r
1736 \r
1737         InterlockedExchange(&m_bThreadRunning, TRUE);\r
1738         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
1739 \r
1740     //does the user force the cache to refresh (shift or control key down)?\r
1741     bool refresh =    (GetKeyState (VK_CONTROL) < 0) \r
1742                    || (GetKeyState (VK_SHIFT) < 0);\r
1743 \r
1744         //disable the "Get All" button while we're receiving\r
1745         //log messages.\r
1746 \r
1747         FillGitShortLog();\r
1748         \r
1749         if(this->m_bExitThread)\r
1750         {\r
1751                 InterlockedExchange(&m_bThreadRunning, FALSE);\r
1752                 InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1753                 return 0;\r
1754         }\r
1755 #if 0\r
1756         RedrawItems(0, m_arShownList.GetCount());\r
1757 //      SetRedraw(false);\r
1758 //      ResizeAllListCtrlCols();\r
1759 //      SetRedraw(true);\r
1760 \r
1761         if ( m_pStoreSelection )\r
1762         {\r
1763                 // Deleting the instance will restore the\r
1764                 // selection of the CLogDlg.\r
1765                 delete m_pStoreSelection;\r
1766                 m_pStoreSelection = NULL;\r
1767         }\r
1768         else\r
1769         {\r
1770                 // If no selection has been set then this must be the first time\r
1771                 // the revisions are shown. Let's preselect the topmost revision.\r
1772                 if ( GetItemCount()>0 )\r
1773                 {\r
1774                         SetSelectionMark(0);\r
1775                         SetItemState(0, LVIS_SELECTED, LVIS_SELECTED);\r
1776                 }\r
1777         }\r
1778 #endif\r
1779         InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1780 \r
1781 \r
1782         //FetchFullLogInfo();\r
1783         FetchFullLogInfoOrig();\r
1784         //RefreshCursor();\r
1785         // make sure the filter is applied (if any) now, after we refreshed/fetched\r
1786         // the log messages\r
1787 \r
1788         ::PostMessage(this->GetParent()->m_hWnd,MSG_LOAD_PERCENTAGE,(WPARAM) GITLOG_END,0);\r
1789 \r
1790         InterlockedExchange(&m_bThreadRunning, FALSE);\r
1791 \r
1792         return 0;\r
1793 }\r
1794 \r
1795 void CGitLogListBase::Refresh()\r
1796 {       \r
1797         m_bExitThread=TRUE;\r
1798         if(m_LoadingThread!=NULL)\r
1799         {\r
1800                 DWORD ret =::WaitForSingleObject(m_LoadingThread->m_hThread,20000);\r
1801                 if(ret == WAIT_TIMEOUT)\r
1802                         TerminateThread();\r
1803         }\r
1804 \r
1805         this->Clear();\r
1806 \r
1807         //Update branch and Tag info\r
1808         ReloadHashMap();\r
1809         //Assume Thread have exited\r
1810         //if(!m_bThreadRunning)\r
1811         {\r
1812                 this->SetItemCountEx(0);\r
1813                 m_logEntries.clear();\r
1814                 m_bExitThread=FALSE;\r
1815                 InterlockedExchange(&m_bThreadRunning, TRUE);\r
1816                 InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
1817                 if (AfxBeginThread(LogThreadEntry, this)==NULL)\r
1818                 {\r
1819                         InterlockedExchange(&m_bThreadRunning, FALSE);\r
1820                         InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1821                         CMessageBox::Show(NULL, IDS_ERR_THREADSTARTFAILED, IDS_APPNAME, MB_OK | MB_ICONERROR);\r
1822                 }\r
1823                 m_sFilterText.Empty();\r
1824                 m_From=CTime(1970,1,2,0,0,0);\r
1825                 m_To=CTime::GetCurrentTime();\r
1826         }\r
1827 }\r
1828 bool CGitLogListBase::ValidateRegexp(LPCTSTR regexp_str, tr1::wregex& pat, bool bMatchCase /* = false */)\r
1829 {\r
1830         try\r
1831         {\r
1832                 tr1::regex_constants::syntax_option_type type = tr1::regex_constants::ECMAScript;\r
1833                 if (!bMatchCase)\r
1834                         type |= tr1::regex_constants::icase;\r
1835                 pat = tr1::wregex(regexp_str, type);\r
1836                 return true;\r
1837         }\r
1838         catch (exception) {}\r
1839         return false;\r
1840 }\r
1841 \r
1842 void CGitLogListBase::RecalculateShownList(CPtrArray * pShownlist)\r
1843 {\r
1844 \r
1845         pShownlist->RemoveAll();\r
1846         tr1::wregex pat;//(_T("Remove"), tr1::regex_constants::icase);\r
1847         bool bRegex = false;\r
1848         if (m_bFilterWithRegex)\r
1849                 bRegex = ValidateRegexp(m_sFilterText, pat, false);\r
1850 \r
1851         tr1::regex_constants::match_flag_type flags = tr1::regex_constants::match_any;\r
1852         CString sRev;\r
1853         for (DWORD i=0; i<m_logEntries.size(); ++i)\r
1854         {\r
1855                 if ((bRegex)&&(m_bFilterWithRegex))\r
1856                 {\r
1857 #if 0\r
1858                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_BUGID))\r
1859                         {\r
1860                                 ATLTRACE(_T("bugID = \"%s\"\n"), (LPCTSTR)m_logEntries[i]->sBugIDs);\r
1861                                 if (regex_search(wstring((LPCTSTR)m_logEntries[i]->sBugIDs), pat, flags)&&IsEntryInDateRange(i))\r
1862                                 {\r
1863                                         pShownlist->Add(m_logEntries[i]);\r
1864                                         continue;\r
1865                                 }\r
1866                         }\r
1867 #endif\r
1868                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_MESSAGES))\r
1869                         {\r
1870                                 ATLTRACE(_T("messge = \"%s\"\n"),m_logEntries[i].m_Subject);\r
1871                                 if (regex_search(wstring((LPCTSTR)m_logEntries[i].m_Subject), pat, flags)&&IsEntryInDateRange(i))\r
1872                                 {\r
1873                                         pShownlist->Add(&m_logEntries[i]);\r
1874                                         continue;\r
1875                                 }\r
1876 \r
1877                                 ATLTRACE(_T("messge = \"%s\"\n"),m_logEntries[i].m_Body);\r
1878                                 if (regex_search(wstring((LPCTSTR)m_logEntries[i].m_Body), pat, flags)&&IsEntryInDateRange(i))\r
1879                                 {\r
1880                                         pShownlist->Add(&m_logEntries[i]);\r
1881                                         continue;\r
1882                                 }\r
1883                         }\r
1884 #if 0\r
1885                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_PATHS))\r
1886                         {\r
1887                                 LogChangedPathArray * cpatharray = m_logEntries[i]->pArChangedPaths;\r
1888 \r
1889                                 bool bGoing = true;\r
1890                                 for (INT_PTR cpPathIndex = 0; cpPathIndex<cpatharray->GetCount() && bGoing; ++cpPathIndex)\r
1891                                 {\r
1892                                         LogChangedPath * cpath = cpatharray->GetAt(cpPathIndex);\r
1893                                         if (regex_search(wstring((LPCTSTR)cpath->sCopyFromPath), pat, flags)&&IsEntryInDateRange(i))\r
1894                                         {\r
1895                                                 pShownlist->Add(m_logEntries[i]);\r
1896                                                 bGoing = false;\r
1897                                                 continue;\r
1898                                         }\r
1899                                         if (regex_search(wstring((LPCTSTR)cpath->sPath), pat, flags)&&IsEntryInDateRange(i))\r
1900                                         {\r
1901                                                 pShownlist->Add(m_logEntries[i]);\r
1902                                                 bGoing = false;\r
1903                                                 continue;\r
1904                                         }\r
1905                                         if (regex_search(wstring((LPCTSTR)cpath->GetAction()), pat, flags)&&IsEntryInDateRange(i))\r
1906                                         {\r
1907                                                 pShownlist->Add(m_logEntries[i]);\r
1908                                                 bGoing = false;\r
1909                                                 continue;\r
1910                                         }\r
1911                                 }\r
1912                                 if (!bGoing)\r
1913                                         continue;\r
1914                         }\r
1915 #endif\r
1916                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_AUTHORS))\r
1917                         {\r
1918                                 if (regex_search(wstring((LPCTSTR)m_logEntries[i].m_AuthorName), pat, flags)&&IsEntryInDateRange(i))\r
1919                                 {\r
1920                                         pShownlist->Add(&m_logEntries[i]);\r
1921                                         continue;\r
1922                                 }\r
1923                         }\r
1924                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_REVS))\r
1925                         {\r
1926                                 sRev.Format(_T("%s"), m_logEntries[i].m_CommitHash);\r
1927                                 if (regex_search(wstring((LPCTSTR)sRev), pat, flags)&&IsEntryInDateRange(i))\r
1928                                 {\r
1929                                         pShownlist->Add(&m_logEntries[i]);\r
1930                                         continue;\r
1931                                 }\r
1932                         }\r
1933                 } // if (bRegex)\r
1934                 else\r
1935                 {\r
1936                         CString find = m_sFilterText;\r
1937                         find.MakeLower();\r
1938 #if 0\r
1939                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_BUGID))\r
1940                         {\r
1941                                 CString sBugIDs = m_logEntries[i]->sBugIDs;\r
1942 \r
1943                                 sBugIDs = sBugIDs.MakeLower();\r
1944                                 if ((sBugIDs.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
1945                                 {\r
1946                                         pShownlist->Add(m_logEntries[i]);\r
1947                                         continue;\r
1948                                 }\r
1949                         }\r
1950 #endif\r
1951                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_MESSAGES))\r
1952                         {\r
1953                                 CString msg = m_logEntries[i].m_Subject;\r
1954 \r
1955                                 msg = msg.MakeLower();\r
1956                                 if ((msg.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
1957                                 {\r
1958                                         pShownlist->Add(&m_logEntries[i]);\r
1959                                         continue;\r
1960                                 }\r
1961                                 msg = m_logEntries[i].m_Body;\r
1962 \r
1963                                 msg = msg.MakeLower();\r
1964                                 if ((msg.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
1965                                 {\r
1966                                         pShownlist->Add(&m_logEntries[i]);\r
1967                                         continue;\r
1968                                 }\r
1969                         }\r
1970 #if 0\r
1971                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_PATHS))\r
1972                         {\r
1973                                 LogChangedPathArray * cpatharray = m_logEntries[i]->pArChangedPaths;\r
1974 \r
1975                                 bool bGoing = true;\r
1976                                 for (INT_PTR cpPathIndex = 0; cpPathIndex<cpatharray->GetCount() && bGoing; ++cpPathIndex)\r
1977                                 {\r
1978                                         LogChangedPath * cpath = cpatharray->GetAt(cpPathIndex);\r
1979                                         CString path = cpath->sCopyFromPath;\r
1980                                         path.MakeLower();\r
1981                                         if ((path.Find(find)>=0)&&(IsEntryInDateRange(i)))\r
1982                                         {\r
1983                                                 pShownlist->Add(m_logEntries[i]);\r
1984                                                 bGoing = false;\r
1985                                                 continue;\r
1986                                         }\r
1987                                         path = cpath->sPath;\r
1988                                         path.MakeLower();\r
1989                                         if ((path.Find(find)>=0)&&(IsEntryInDateRange(i)))\r
1990                                         {\r
1991                                                 pShownlist->Add(m_logEntries[i]);\r
1992                                                 bGoing = false;\r
1993                                                 continue;\r
1994                                         }\r
1995                                         path = cpath->GetAction();\r
1996                                         path.MakeLower();\r
1997                                         if ((path.Find(find)>=0)&&(IsEntryInDateRange(i)))\r
1998                                         {\r
1999                                                 pShownlist->Add(m_logEntries[i]);\r
2000                                                 bGoing = false;\r
2001                                                 continue;\r
2002                                         }\r
2003                                 }\r
2004                         }\r
2005 #endif\r
2006                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_AUTHORS))\r
2007                         {\r
2008                                 CString msg = m_logEntries[i].m_AuthorName;\r
2009                                 msg = msg.MakeLower();\r
2010                                 if ((msg.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
2011                                 {\r
2012                                         pShownlist->Add(&m_logEntries[i]);\r
2013                                         continue;\r
2014                                 }\r
2015                         }\r
2016                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_REVS))\r
2017                         {\r
2018                                 sRev.Format(_T("%s"), m_logEntries[i].m_CommitHash);\r
2019                                 if ((sRev.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
2020                                 {\r
2021                                         pShownlist->Add(&m_logEntries[i]);\r
2022                                         continue;\r
2023                                 }\r
2024                         }\r
2025                 } // else (from if (bRegex))    \r
2026         } // for (DWORD i=0; i<m_logEntries.size(); ++i) \r
2027 \r
2028 }\r
2029 \r
2030 BOOL CGitLogListBase::IsEntryInDateRange(int i)\r
2031 {\r
2032         __time64_t time = m_logEntries[i].m_AuthorDate.GetTime();\r
2033         if ((time >= m_From.GetTime())&&(time <= m_To.GetTime()))\r
2034                 return TRUE;\r
2035 \r
2036         return FALSE;\r
2037 \r
2038 //      return TRUE;\r
2039 }\r
2040 void CGitLogListBase::StartFilter()\r
2041 {\r
2042         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
2043         RecalculateShownList(&m_arShownList);\r
2044         InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
2045 \r
2046 \r
2047         DeleteAllItems();\r
2048         SetItemCountEx(ShownCountWithStopped());\r
2049         RedrawItems(0, ShownCountWithStopped());\r
2050         SetRedraw(false);\r
2051         //ResizeAllListCtrlCols();\r
2052         SetRedraw(true);\r
2053         Invalidate();\r
2054 \r
2055 }\r
2056 void CGitLogListBase::RemoveFilter()\r
2057 {\r
2058 \r
2059         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
2060 \r
2061         m_arShownList.RemoveAll();\r
2062 \r
2063         // reset the time filter too\r
2064 #if 0\r
2065         m_timFrom = (__time64_t(m_tFrom));\r
2066         m_timTo = (__time64_t(m_tTo));\r
2067         m_DateFrom.SetTime(&m_timFrom);\r
2068         m_DateTo.SetTime(&m_timTo);\r
2069         m_DateFrom.SetRange(&m_timFrom, &m_timTo);\r
2070         m_DateTo.SetRange(&m_timFrom, &m_timTo);\r
2071 #endif\r
2072 \r
2073         for (DWORD i=0; i<m_logEntries.size(); ++i)\r
2074         {\r
2075                 if(this->m_IsOldFirst)\r
2076                 {\r
2077                         m_arShownList.Add(&m_logEntries[m_logEntries.size()-i-1]);\r
2078                 }else\r
2079                 {\r
2080                         m_arShownList.Add(&m_logEntries[i]);\r
2081                 }\r
2082         }\r
2083 //      InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
2084         DeleteAllItems();\r
2085         SetItemCountEx(ShownCountWithStopped());\r
2086         RedrawItems(0, ShownCountWithStopped());\r
2087 //      SetRedraw(false);\r
2088 //      ResizeAllListCtrlCols();\r
2089 //      SetRedraw(true);\r
2090 \r
2091         InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
2092 }\r
2093 \r
2094 void CGitLogListBase::Clear()\r
2095 {\r
2096         m_arShownList.RemoveAll();\r
2097         m_logEntries.clear();\r
2098         m_logEntries.m_HashMap.clear();\r
2099         DeleteAllItems();\r
2100         m_logEntries.m_Lns.clear();\r
2101 \r
2102         m_logEntries.m_FirstFreeLane=0;\r
2103         m_logEntries.m_Lns.clear();\r
2104 \r
2105 }\r
2106 \r
2107 void CGitLogListBase::OnDestroy()\r
2108 {\r
2109         // save the column widths to the registry\r
2110         SaveColumnWidths();\r
2111 \r
2112         if(this->m_bThreadRunning)\r
2113         {\r
2114                 this->m_bExitThread=true;\r
2115                 DWORD ret =::WaitForSingleObject(m_LoadingThread->m_hThread,20000);\r
2116                 if(ret == WAIT_TIMEOUT)\r
2117                         TerminateThread();\r
2118         }\r
2119         while(m_LogCache.SaveCache())\r
2120         {\r
2121                 if(CMessageBox::Show(NULL,_T("Cannot Save Log Cache to Disk. To retry click yes. To give up click no."),_T("TortoiseGit"),\r
2122                                                         MB_YESNO) == IDNO)\r
2123                                                         break;\r
2124         }\r
2125         CHintListCtrl::OnDestroy();\r
2126 }\r
2127 \r
2128 LRESULT CGitLogListBase::OnLoad(WPARAM wParam,LPARAM lParam)\r
2129 {\r
2130         CRect rect;\r
2131         int i=(int)wParam;\r
2132         this->GetItemRect(i,&rect,LVIR_BOUNDS);\r
2133         this->InvalidateRect(rect);\r
2134         return 0;\r
2135 }\r
2136 \r
2137 /**\r
2138  * Save column widths to the registry\r
2139  */\r
2140 void CGitLogListBase::SaveColumnWidths()\r
2141 {\r
2142         CHeaderCtrl* pHdrCtrl = (CHeaderCtrl*)(GetDlgItem(0));\r
2143         if (pHdrCtrl)\r
2144         {\r
2145                 int numcols = pHdrCtrl->GetItemCount();\r
2146                 for (int col = 0; col < numcols; col++)\r
2147                 {\r
2148                         int width = GetColumnWidth( col );\r
2149                         CString regentry;\r
2150                         regentry.Format( _T("Software\\TortoiseGit\\log\\ColWidth%d"), col);\r
2151                         CRegDWORD regwidth(regentry, 0);\r
2152                         regwidth = width;       // this writes it to reg\r
2153                 }\r
2154         }\r
2155 }\r
2156 \r
2157 int CGitLogListBase::GetHeadIndex()\r
2158 {\r
2159         if(m_HeadHash.IsEmpty())\r
2160                 return -1;\r
2161 \r
2162         for(int i=0;i<m_arShownList.GetCount();i++)\r
2163         {\r
2164                 GitRev *pRev = (GitRev*)m_arShownList[i];\r
2165                 if(pRev)\r
2166                 {\r
2167                         if(pRev->m_CommitHash == m_HeadHash )\r
2168                                 return i;\r
2169                 }\r
2170         }\r
2171         return -1;\r
2172 }