OSDN Git Service

Update rebase pick\squash\edit\skip icon
[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         \r
1108                 if ( GetSelectedCount() >0 )\r
1109                 {\r
1110                         if(m_ContextMenuMask&GetContextMenuBit(ID_CHERRY_PICK))\r
1111                                 popup.AppendMenuIcon(ID_CHERRY_PICK, _T("Cherry Pick this version"), IDI_EXPORT);\r
1112         \r
1113                 }\r
1114 \r
1115                 if (GetSelectedCount() == 1)\r
1116                 {\r
1117                         CString str;\r
1118                         str.Format(_T("Rebase %s to this"),g_Git.GetCurrentBranch());\r
1119 \r
1120                         if(pSelLogEntry->m_CommitHash != m_HeadHash)\r
1121                                 if(m_ContextMenuMask&GetContextMenuBit(ID_REBASE_TO_VERSION))\r
1122                                         popup.AppendMenuIcon(ID_REBASE_TO_VERSION, str , IDI_REBASE);                   \r
1123 \r
1124                         if(m_ContextMenuMask&GetContextMenuBit(ID_EXPORT))\r
1125                                 popup.AppendMenuIcon(ID_EXPORT, _T("Export this version"), IDI_EXPORT); \r
1126                         \r
1127 \r
1128                         popup.AppendMenu(MF_SEPARATOR, NULL);\r
1129                 }\r
1130                 else if (GetSelectedCount() >= 2)\r
1131                 {\r
1132                         bool bAddSeparator = false;\r
1133                         if (IsSelectionContinuous() || (GetSelectedCount() == 2))\r
1134                         {\r
1135                                 if(m_ContextMenuMask&GetContextMenuBit(ID_COMPARETWO))\r
1136                                         popup.AppendMenuIcon(ID_COMPARETWO, IDS_LOG_POPUP_COMPARETWO, IDI_DIFF);\r
1137                         }\r
1138 \r
1139                         if (GetSelectedCount() == 2)\r
1140                         {\r
1141                                 //popup.AppendMenuIcon(ID_BLAMETWO, IDS_LOG_POPUP_BLAMEREVS, IDI_BLAME);\r
1142                                 if(m_ContextMenuMask&GetContextMenuBit(ID_GNUDIFF2))\r
1143                                         popup.AppendMenuIcon(ID_GNUDIFF2, IDS_LOG_POPUP_GNUDIFF, IDI_DIFF);\r
1144                                 bAddSeparator = true;\r
1145                         }\r
1146 \r
1147                         if ( IsSelectionContinuous() )\r
1148                         {\r
1149                                 if(m_ContextMenuMask&GetContextMenuBit(ID_COMBINE_COMMIT))\r
1150                                 {\r
1151                                         CString head;\r
1152                                         head.Format(_T("HEAD~%d"),LastSelect);\r
1153                                         CString hash=g_Git.GetHash(head);\r
1154                                         hash=hash.Left(40);\r
1155                                         GitRev* pLastEntry = reinterpret_cast<GitRev*>(m_arShownList.GetAt(LastSelect));\r
1156                                         if(pLastEntry->m_CommitHash == hash)\r
1157                                                 popup.AppendMenuIcon(ID_COMBINE_COMMIT,_T("Combine to one commit"),IDI_MERGE);\r
1158                                 }\r
1159                         }\r
1160                         if (m_hasWC)\r
1161                         {\r
1162                                 //popup.AppendMenuIcon(ID_REVERTREV, IDS_LOG_POPUP_REVERTREVS, IDI_REVERT);\r
1163 //                              if (m_hasWC)\r
1164 //                                      popup.AppendMenuIcon(ID_MERGEREV, IDS_LOG_POPUP_MERGEREVS, IDI_MERGE);\r
1165                                 bAddSeparator = true;\r
1166                         }\r
1167                         if (bAddSeparator)\r
1168                                 popup.AppendMenu(MF_SEPARATOR, NULL);\r
1169                 }\r
1170 #if 0\r
1171 //              if ((selEntries.size() > 0)&&(bAllFromTheSameAuthor))\r
1172 //              {\r
1173 //                      popup.AppendMenuIcon(ID_EDITAUTHOR, IDS_LOG_POPUP_EDITAUTHOR);\r
1174 //              }\r
1175 //              if (GetSelectedCount() == 1)\r
1176 //              {\r
1177 //                      popup.AppendMenuIcon(ID_EDITLOG, IDS_LOG_POPUP_EDITLOG);\r
1178 //                      popup.AppendMenuIcon(ID_REVPROPS, IDS_REPOBROWSE_SHOWREVPROP, IDI_PROPERTIES); // "Show Revision Properties"\r
1179 //                      popup.AppendMenu(MF_SEPARATOR, NULL);\r
1180 //              }\r
1181 #endif\r
1182 \r
1183                 \r
1184                 if (GetSelectedCount() == 1)\r
1185                 {\r
1186                         if(m_ContextMenuMask&GetContextMenuBit(ID_COPYHASH))\r
1187                                 popup.AppendMenuIcon(ID_COPYHASH, _T("Copy Commit Hash"));\r
1188                 }\r
1189                 if (GetSelectedCount() != 0)\r
1190                 {\r
1191                         if(m_ContextMenuMask&GetContextMenuBit(ID_COPYCLIPBOARD))\r
1192                                 popup.AppendMenuIcon(ID_COPYCLIPBOARD, IDS_LOG_POPUP_COPYTOCLIPBOARD);\r
1193                 }\r
1194 \r
1195                 if(m_ContextMenuMask&GetContextMenuBit(ID_FINDENTRY))\r
1196                         popup.AppendMenuIcon(ID_FINDENTRY, IDS_LOG_POPUP_FIND);\r
1197 \r
1198                 int cmd = popup.TrackPopupMenu(TPM_RETURNCMD | TPM_LEFTALIGN | TPM_NONOTIFY, point.x, point.y, this, 0);\r
1199 //              DialogEnableWindow(IDOK, FALSE);\r
1200 //              SetPromptApp(&theApp);\r
1201         \r
1202                 this->ContextMenuAction(cmd, FirstSelect, LastSelect);\r
1203                 \r
1204 //              EnableOKButton();\r
1205         } // if (popup.CreatePopupMenu())\r
1206 \r
1207 }\r
1208 \r
1209 bool CGitLogListBase::IsSelectionContinuous()\r
1210 {\r
1211         if ( GetSelectedCount()==1 )\r
1212         {\r
1213                 // if only one revision is selected, the selection is of course\r
1214                 // continuous\r
1215                 return true;\r
1216         }\r
1217 \r
1218         POSITION pos = GetFirstSelectedItemPosition();\r
1219         bool bContinuous = (m_arShownList.GetCount() == (INT_PTR)m_logEntries.size());\r
1220         if (bContinuous)\r
1221         {\r
1222                 int itemindex = GetNextSelectedItem(pos);\r
1223                 while (pos)\r
1224                 {\r
1225                         int nextindex = GetNextSelectedItem(pos);\r
1226                         if (nextindex - itemindex > 1)\r
1227                         {\r
1228                                 bContinuous = false;\r
1229                                 break;\r
1230                         }\r
1231                         itemindex = nextindex;\r
1232                 }\r
1233         }\r
1234         return bContinuous;\r
1235 }\r
1236 \r
1237 void CGitLogListBase::CopySelectionToClipBoard(bool HashOnly)\r
1238 {\r
1239 \r
1240         CString sClipdata;\r
1241         POSITION pos = GetFirstSelectedItemPosition();\r
1242         if (pos != NULL)\r
1243         {\r
1244                 CString sRev;\r
1245                 sRev.LoadString(IDS_LOG_REVISION);\r
1246                 CString sAuthor;\r
1247                 sAuthor.LoadString(IDS_LOG_AUTHOR);\r
1248                 CString sDate;\r
1249                 sDate.LoadString(IDS_LOG_DATE);\r
1250                 CString sMessage;\r
1251                 sMessage.LoadString(IDS_LOG_MESSAGE);\r
1252                 while (pos)\r
1253                 {\r
1254                         CString sLogCopyText;\r
1255                         CString sPaths;\r
1256                         GitRev * pLogEntry = reinterpret_cast<GitRev *>(m_arShownList.GetAt(GetNextSelectedItem(pos)));\r
1257 \r
1258                         if(!HashOnly)\r
1259                         {\r
1260                                 //pLogEntry->m_Files\r
1261                                 //LogChangedPathArray * cpatharray = pLogEntry->pArChangedPaths;\r
1262                         \r
1263                                 for (int cpPathIndex = 0; cpPathIndex<pLogEntry->m_Files.GetCount(); ++cpPathIndex)\r
1264                                 {\r
1265                                         sPaths += ((CTGitPath&)pLogEntry->m_Files[cpPathIndex]).GetActionName() + _T(" : ") + pLogEntry->m_Files[cpPathIndex].GetGitPathString();\r
1266                                         sPaths += _T("\r\n");\r
1267                                 }\r
1268                                 sPaths.Trim();\r
1269                                 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
1270                                         (LPCTSTR)sRev, pLogEntry->m_CommitHash,\r
1271                                         (LPCTSTR)sAuthor, (LPCTSTR)pLogEntry->m_AuthorName,\r
1272                                         (LPCTSTR)sDate, \r
1273                                         (LPCTSTR)CAppUtils::FormatDateAndTime( pLogEntry->m_AuthorDate, m_DateFormat, true, m_bRelativeTimes ),\r
1274                                         (LPCTSTR)sMessage, pLogEntry->m_Subject+_T("\r\n")+pLogEntry->m_Body,\r
1275                                         (LPCTSTR)sPaths);\r
1276                                 sClipdata +=  sLogCopyText;\r
1277                         }else\r
1278                         {\r
1279                                 sClipdata += pLogEntry->m_CommitHash;\r
1280                                 break;\r
1281                         }\r
1282 \r
1283                 }\r
1284                 CStringUtils::WriteAsciiStringToClipboard(sClipdata, GetSafeHwnd());\r
1285         }\r
1286 \r
1287 }\r
1288 \r
1289 void CGitLogListBase::DiffSelectedRevWithPrevious()\r
1290 {\r
1291 #if 0\r
1292         if (m_bThreadRunning)\r
1293                 return;\r
1294         UpdateLogInfoLabel();\r
1295         int selIndex = m_LogList.GetSelectionMark();\r
1296         if (selIndex < 0)\r
1297                 return;\r
1298         int selCount = m_LogList.GetSelectedCount();\r
1299         if (selCount != 1)\r
1300                 return;\r
1301 \r
1302         // Find selected entry in the log list\r
1303         POSITION pos = m_LogList.GetFirstSelectedItemPosition();\r
1304         PLOGENTRYDATA pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_arShownList.GetAt(m_LogList.GetNextSelectedItem(pos)));\r
1305         long rev1 = pLogEntry->Rev;\r
1306         long rev2 = rev1-1;\r
1307         CTGitPath path = m_path;\r
1308 \r
1309         // See how many files under the relative root were changed in selected revision\r
1310         int nChanged = 0;\r
1311         LogChangedPath * changed = NULL;\r
1312         for (INT_PTR c = 0; c < pLogEntry->pArChangedPaths->GetCount(); ++c)\r
1313         {\r
1314                 LogChangedPath * cpath = pLogEntry->pArChangedPaths->GetAt(c);\r
1315                 if (cpath  &&  cpath -> sPath.Left(m_sRelativeRoot.GetLength()).Compare(m_sRelativeRoot)==0)\r
1316                 {\r
1317                         ++nChanged;\r
1318                         changed = cpath;\r
1319                 }\r
1320         }\r
1321 \r
1322         if (m_path.IsDirectory() && nChanged == 1) \r
1323         {\r
1324                 // We're looking at the log for a directory and only one file under dir was changed in the revision\r
1325                 // Do diff on that file instead of whole directory\r
1326                 path.AppendPathString(changed->sPath.Mid(m_sRelativeRoot.GetLength()));\r
1327         } \r
1328 \r
1329         m_bCancelled = FALSE;\r
1330         DialogEnableWindow(IDOK, FALSE);\r
1331         SetPromptApp(&theApp);\r
1332         theApp.DoWaitCursor(1);\r
1333 \r
1334         if (PromptShown())\r
1335         {\r
1336                 GitDiff diff(this, m_hWnd, true);\r
1337                 diff.SetAlternativeTool(!!(GetAsyncKeyState(VK_SHIFT) & 0x8000));\r
1338                 diff.SetHEADPeg(m_LogRevision);\r
1339                 diff.ShowCompare(path, rev2, path, rev1);\r
1340         }\r
1341         else\r
1342         {\r
1343                 CAppUtils::StartShowCompare(m_hWnd, path, rev2, path, rev1, GitRev(), m_LogRevision, !!(GetAsyncKeyState(VK_SHIFT) & 0x8000));\r
1344         }\r
1345 \r
1346         theApp.DoWaitCursor(-1);\r
1347         EnableOKButton();\r
1348 #endif\r
1349 }\r
1350 \r
1351 void CGitLogListBase::OnLvnOdfinditemLoglist(NMHDR *pNMHDR, LRESULT *pResult)\r
1352 {\r
1353         LPNMLVFINDITEM pFindInfo = reinterpret_cast<LPNMLVFINDITEM>(pNMHDR);\r
1354         *pResult = -1;\r
1355         \r
1356         if (pFindInfo->lvfi.flags & LVFI_PARAM)\r
1357                 return; \r
1358         if ((pFindInfo->iStart < 0)||(pFindInfo->iStart >= m_arShownList.GetCount()))\r
1359                 return;\r
1360         if (pFindInfo->lvfi.psz == 0)\r
1361                 return;\r
1362 #if 0\r
1363         CString sCmp = pFindInfo->lvfi.psz;\r
1364         CString sRev;   \r
1365         for (int i=pFindInfo->iStart; i<m_arShownList.GetCount(); ++i)\r
1366         {\r
1367                 GitRev * pLogEntry = reinterpret_cast<GitRev*>(m_arShownList.GetAt(i));\r
1368                 sRev.Format(_T("%ld"), pLogEntry->Rev);\r
1369                 if (pFindInfo->lvfi.flags & LVFI_PARTIAL)\r
1370                 {\r
1371                         if (sCmp.Compare(sRev.Left(sCmp.GetLength()))==0)\r
1372                         {\r
1373                                 *pResult = i;\r
1374                                 return;\r
1375                         }\r
1376                 }\r
1377                 else\r
1378                 {\r
1379                         if (sCmp.Compare(sRev)==0)\r
1380                         {\r
1381                                 *pResult = i;\r
1382                                 return;\r
1383                         }\r
1384                 }\r
1385         }\r
1386         if (pFindInfo->lvfi.flags & LVFI_WRAP)\r
1387         {\r
1388                 for (int i=0; i<pFindInfo->iStart; ++i)\r
1389                 {\r
1390                         PLOGENTRYDATA pLogEntry = reinterpret_cast<PLOGENTRYDATA>(m_arShownList.GetAt(i));\r
1391                         sRev.Format(_T("%ld"), pLogEntry->Rev);\r
1392                         if (pFindInfo->lvfi.flags & LVFI_PARTIAL)\r
1393                         {\r
1394                                 if (sCmp.Compare(sRev.Left(sCmp.GetLength()))==0)\r
1395                                 {\r
1396                                         *pResult = i;\r
1397                                         return;\r
1398                                 }\r
1399                         }\r
1400                         else\r
1401                         {\r
1402                                 if (sCmp.Compare(sRev)==0)\r
1403                                 {\r
1404                                         *pResult = i;\r
1405                                         return;\r
1406                                 }\r
1407                         }\r
1408                 }\r
1409         }\r
1410 #endif\r
1411         *pResult = -1;\r
1412 }\r
1413 \r
1414 int CGitLogListBase::FillGitLog(CTGitPath *path,int info,CString *from,CString *to)\r
1415 {\r
1416         ClearText();\r
1417 \r
1418         this->m_logEntries.ClearAll();\r
1419         this->m_logEntries.ParserFromLog(path,-1,info,from,to);\r
1420 \r
1421         //this->m_logEntries.ParserFromLog();\r
1422         SetItemCountEx(this->m_logEntries.size());\r
1423 \r
1424         this->m_arShownList.RemoveAll();\r
1425 \r
1426         for(unsigned int i=0;i<m_logEntries.size();i++)\r
1427         {\r
1428                 if(m_IsOldFirst)\r
1429                 {\r
1430                         m_logEntries[m_logEntries.size()-i-1].m_IsFull=TRUE;\r
1431                         this->m_arShownList.Add(&m_logEntries[m_logEntries.size()-i-1]);\r
1432                 \r
1433                 }else\r
1434                 {\r
1435                         m_logEntries[i].m_IsFull=TRUE;\r
1436                         this->m_arShownList.Add(&m_logEntries[i]);\r
1437                 }\r
1438         }\r
1439 \r
1440     if(path)\r
1441         m_Path=*path;\r
1442         return 0;\r
1443 \r
1444 }\r
1445 \r
1446 int CGitLogListBase::FillGitShortLog()\r
1447 {\r
1448         ClearText();\r
1449 \r
1450         this->m_logEntries.ClearAll();\r
1451 \r
1452         m_LogCache.FetchCacheIndex(g_Git.m_CurrentDir);\r
1453 \r
1454     CTGitPath *path;\r
1455     if(this->m_Path.IsEmpty())\r
1456         path=NULL;\r
1457     else\r
1458         path=&this->m_Path;\r
1459 \r
1460         CString hash;\r
1461         int mask;\r
1462         mask = CGit::LOG_INFO_ONLY_HASH | CGit::LOG_INFO_BOUNDARY;\r
1463 //      if(this->m_bAllBranch)\r
1464         mask |= m_ShowMask;\r
1465 \r
1466         this->m_logEntries.ParserShortLog(path,hash,-1,mask);\r
1467         \r
1468 \r
1469         //this->m_logEntries.ParserFromLog();\r
1470         if(IsInWorkingThread())\r
1471                 PostMessage(LVM_SETITEMCOUNT, (WPARAM) this->m_logEntries.size(),(LPARAM) LVSICF_NOINVALIDATEALL);\r
1472         else\r
1473                 SetItemCountEx(this->m_logEntries.size());\r
1474 \r
1475         this->m_arShownList.RemoveAll();\r
1476 \r
1477         for(unsigned int i=0;i<m_logEntries.size();i++)\r
1478         {\r
1479                 if(this->m_IsOldFirst)\r
1480                 {\r
1481                         this->m_arShownList.Add(&m_logEntries[m_logEntries.size()-1-i]);\r
1482 \r
1483                 }else\r
1484                 {\r
1485                         this->m_arShownList.Add(&m_logEntries[i]);\r
1486                 }\r
1487         }\r
1488         return 0;\r
1489 }\r
1490 \r
1491 BOOL CGitLogListBase::PreTranslateMessage(MSG* pMsg)\r
1492 {\r
1493         // Skip Ctrl-C when copying text out of the log message or search filter\r
1494         BOOL bSkipAccelerator = ( pMsg->message == WM_KEYDOWN && pMsg->wParam=='C' && (GetFocus()==GetDlgItem(IDC_MSGVIEW) || GetFocus()==GetDlgItem(IDC_SEARCHEDIT) ) && GetKeyState(VK_CONTROL)&0x8000 );\r
1495         if (pMsg->message == WM_KEYDOWN && pMsg->wParam=='\r')\r
1496         {\r
1497                 //if (GetFocus()==GetDlgItem(IDC_LOGLIST))\r
1498                 {\r
1499                         if (CRegDWORD(_T("Software\\TortoiseGit\\DiffByDoubleClickInLog"), FALSE))\r
1500                         {\r
1501                                 DiffSelectedRevWithPrevious();\r
1502                                 return TRUE;\r
1503                         }\r
1504                 }\r
1505 #if 0\r
1506                 if (GetFocus()==GetDlgItem(IDC_LOGMSG))\r
1507                 {\r
1508                         DiffSelectedFile();\r
1509                         return TRUE;\r
1510                 }\r
1511 #endif\r
1512         }\r
1513 \r
1514 #if 0\r
1515         if (m_hAccel && !bSkipAccelerator)\r
1516         {\r
1517                 int ret = TranslateAccelerator(m_hWnd, m_hAccel, pMsg);\r
1518                 if (ret)\r
1519                         return TRUE;\r
1520         }\r
1521         \r
1522 #endif\r
1523         //m_tooltips.RelayEvent(pMsg);\r
1524         return __super::PreTranslateMessage(pMsg);\r
1525 }\r
1526 \r
1527 void CGitLogListBase::OnNMDblclkLoglist(NMHDR * /*pNMHDR*/, LRESULT *pResult)\r
1528 {\r
1529         // a double click on an entry in the revision list has happened\r
1530         *pResult = 0;\r
1531 \r
1532   if (CRegDWORD(_T("Software\\TortoiseGit\\DiffByDoubleClickInLog"), FALSE))\r
1533           DiffSelectedRevWithPrevious();\r
1534 }\r
1535 \r
1536 int CGitLogListBase::FetchLogAsync(void * data)\r
1537 {\r
1538         m_ProcData=data;\r
1539         m_bExitThread=FALSE;\r
1540         InterlockedExchange(&m_bThreadRunning, TRUE);\r
1541         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
1542         m_LoadingThread = AfxBeginThread(LogThreadEntry, this);\r
1543         if (m_LoadingThread ==NULL)\r
1544         {\r
1545                 InterlockedExchange(&m_bThreadRunning, FALSE);\r
1546                 InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1547                 CMessageBox::Show(NULL, IDS_ERR_THREADSTARTFAILED, IDS_APPNAME, MB_OK | MB_ICONERROR);\r
1548                 return -1;\r
1549         }\r
1550         return 0;\r
1551 }\r
1552 \r
1553 //this is the thread function which calls the subversion function\r
1554 UINT CGitLogListBase::LogThreadEntry(LPVOID pVoid)\r
1555 {\r
1556         return ((CGitLogListBase*)pVoid)->LogThread();\r
1557 }\r
1558 \r
1559 void CGitLogListBase::GetTimeRange(CTime &oldest, CTime &latest)\r
1560 {\r
1561         //CTime time;\r
1562         oldest=CTime::GetCurrentTime();\r
1563         latest=CTime(1971,1,2,0,0,0);\r
1564         for(unsigned int i=0;i<m_logEntries.size();i++)\r
1565         {\r
1566                 if(m_logEntries[i].m_AuthorDate.GetTime() < oldest.GetTime())\r
1567                         oldest = m_logEntries[i].m_AuthorDate.GetTime();\r
1568 \r
1569                 if(m_logEntries[i].m_AuthorDate.GetTime() > latest.GetTime())\r
1570                         latest = m_logEntries[i].m_AuthorDate.GetTime();\r
1571 \r
1572         }\r
1573 }\r
1574 \r
1575 //Helper class for FetchFullLogInfo()\r
1576 class CGitCall_FetchFullLogInfo : public CGitCall\r
1577 {\r
1578 public:\r
1579         CGitCall_FetchFullLogInfo(CGitLogListBase* ploglist):m_ploglist(ploglist),m_CollectedCount(0){}\r
1580         virtual bool OnOutputData(const BYTE* data, size_t size)\r
1581         {\r
1582                 if(size==0)\r
1583                         return m_ploglist->m_bExitThread;\r
1584                 //Add received data to byte collector\r
1585                 m_ByteCollector.append(data,size);\r
1586 \r
1587                 //Find loginfo endmarker\r
1588                 static const BYTE dataToFind[]={0,0};\r
1589                 int found=m_ByteCollector.findData(dataToFind,2);\r
1590                 if(found<0)\r
1591                         return m_ploglist->m_bExitThread;//Not found\r
1592                 found+=2;//Position after loginfo end-marker\r
1593 \r
1594                 //Prepare data for OnLogInfo and call it\r
1595                 BYTE_VECTOR logInfo;\r
1596                 logInfo.append(&*m_ByteCollector.begin(),found);\r
1597                 OnLogInfo(logInfo);\r
1598 \r
1599                 //Remove loginfo from bytecollector\r
1600                 m_ByteCollector.erase(m_ByteCollector.begin(),m_ByteCollector.begin()+found);\r
1601 \r
1602                 return m_ploglist->m_bExitThread;\r
1603         }\r
1604         virtual void OnEnd()\r
1605         {\r
1606                 //Rest should be a complete log line.\r
1607                 if(!m_ByteCollector.empty())\r
1608                         OnLogInfo(m_ByteCollector);\r
1609         }\r
1610 \r
1611 \r
1612         void OnLogInfo(BYTE_VECTOR& logInfo)\r
1613         {\r
1614                 GitRev fullRev;\r
1615                 fullRev.ParserFromLog(logInfo);\r
1616                 MAP_HASH_REV::iterator itRev=m_ploglist->m_logEntries.m_HashMap.find(fullRev.m_CommitHash);\r
1617                 if(itRev==m_ploglist->m_logEntries.m_HashMap.end())\r
1618                 {\r
1619                         //Should not occur, only when Git-tree updated in the mean time. (Race condition)\r
1620                         return;//Ignore\r
1621                 }\r
1622                 //Set updating\r
1623                 int rev=itRev->second;\r
1624                 GitRev* revInVector=&m_ploglist->m_logEntries[rev];\r
1625 \r
1626 \r
1627 //              fullRev.m_IsUpdateing=TRUE;\r
1628 //              fullRev.m_IsFull=TRUE;\r
1629 \r
1630 \r
1631                 if(InterlockedExchange(&revInVector->m_IsUpdateing,TRUE))\r
1632                         return;//Cannot update this row now. Ignore.\r
1633                 TCHAR oldmark=revInVector->m_Mark;\r
1634                 GIT_REV_LIST oldlist=revInVector->m_ParentHash;\r
1635 //              CString oldhash=m_CommitHash;\r
1636 \r
1637                 //Parse new rev info\r
1638                 revInVector->ParserFromLog(logInfo);\r
1639 \r
1640                 if(oldmark!=0)\r
1641                         revInVector->m_Mark=oldmark;  //parser full log will cause old mark overwrited. \r
1642                                                                //So we need keep old bound mark.\r
1643                 revInVector->m_ParentHash=oldlist;\r
1644 \r
1645                 //Reset updating\r
1646                 InterlockedExchange(&revInVector->m_IsFull,TRUE);\r
1647                 InterlockedExchange(&revInVector->m_IsUpdateing,FALSE);\r
1648 \r
1649                 //Notify listcontrol and update progress bar\r
1650                 ++m_CollectedCount;\r
1651 \r
1652                 ::PostMessage(m_ploglist->m_hWnd,MSG_LOADED,(WPARAM)rev,0);\r
1653 \r
1654                 DWORD percent=m_CollectedCount*98/m_ploglist->m_logEntries.size() + GITLOG_START+1;\r
1655                 if(percent == GITLOG_END)\r
1656                         percent = GITLOG_END -1;\r
1657                 \r
1658                 ::PostMessage(m_ploglist->GetParent()->m_hWnd,MSG_LOAD_PERCENTAGE,(WPARAM) percent,0);\r
1659         }\r
1660 \r
1661         CGitLogListBase*        m_ploglist;\r
1662         BYTE_VECTOR                     m_ByteCollector;\r
1663         int                                     m_CollectedCount;\r
1664 \r
1665 };\r
1666 \r
1667 void CGitLogListBase::FetchFullLogInfo()\r
1668 {\r
1669         CGitCall_FetchFullLogInfo fetcher(this);\r
1670         int mask=\r
1671                 CGit::LOG_INFO_STAT|\r
1672                 CGit::LOG_INFO_FILESTATE|\r
1673                 CGit::LOG_INFO_DETECT_COPYRENAME|\r
1674                 m_ShowMask;\r
1675         g_Git.GetLog(&fetcher,CString(),NULL,-1,mask);\r
1676 }\r
1677 \r
1678 void CGitLogListBase::FetchFullLogInfoOrig()\r
1679 {\r
1680         unsigned int updated=0;\r
1681         int percent=0;\r
1682         CRect rect;\r
1683         while(1)\r
1684         {\r
1685                 for(unsigned int i=0;i<m_logEntries.size();i++)\r
1686                 {\r
1687                         if(m_LogCache.GetCacheData(m_logEntries[i]))\r
1688                         {\r
1689                                 if(!m_logEntries.FetchFullInfo(i))\r
1690                                 {\r
1691                                         updated++;\r
1692                                 }\r
1693                                 m_LogCache.AddCacheEntry(m_logEntries[i]);\r
1694 \r
1695                         }else\r
1696                         {\r
1697                                 updated++;\r
1698                                 InterlockedExchange(&m_logEntries[i].m_IsUpdateing,FALSE);\r
1699                                 InterlockedExchange(&m_logEntries[i].m_IsFull,TRUE);\r
1700                         }\r
1701                         \r
1702                         ::PostMessage(m_hWnd,MSG_LOADED,(WPARAM)i,0);\r
1703 \r
1704                         if(m_bExitThread)\r
1705                         {\r
1706                                 InterlockedExchange(&m_bThreadRunning, FALSE);\r
1707                                 InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1708                                 return;\r
1709                         }\r
1710 \r
1711                         percent=updated*98/m_logEntries.size() + GITLOG_START+1;\r
1712                         if(percent == GITLOG_END)\r
1713                                 percent = GITLOG_END -1;\r
1714                         \r
1715                         ::PostMessage(this->GetParent()->m_hWnd,MSG_LOAD_PERCENTAGE,(WPARAM) percent,0);\r
1716 \r
1717                         \r
1718                 }\r
1719                 if(updated==m_logEntries.size())\r
1720                         break;\r
1721         }\r
1722 }\r
1723 \r
1724 UINT CGitLogListBase::LogThread()\r
1725 {\r
1726 \r
1727 //      if(m_ProcCallBack)\r
1728 //              m_ProcCallBack(m_ProcData,GITLOG_START);\r
1729         ::PostMessage(this->GetParent()->m_hWnd,MSG_LOAD_PERCENTAGE,(WPARAM) GITLOG_START,0);\r
1730 \r
1731         InterlockedExchange(&m_bThreadRunning, TRUE);\r
1732         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
1733 \r
1734     //does the user force the cache to refresh (shift or control key down)?\r
1735     bool refresh =    (GetKeyState (VK_CONTROL) < 0) \r
1736                    || (GetKeyState (VK_SHIFT) < 0);\r
1737 \r
1738         //disable the "Get All" button while we're receiving\r
1739         //log messages.\r
1740 \r
1741         FillGitShortLog();\r
1742         \r
1743         if(this->m_bExitThread)\r
1744         {\r
1745                 InterlockedExchange(&m_bThreadRunning, FALSE);\r
1746                 InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1747                 return 0;\r
1748         }\r
1749 #if 0\r
1750         RedrawItems(0, m_arShownList.GetCount());\r
1751 //      SetRedraw(false);\r
1752 //      ResizeAllListCtrlCols();\r
1753 //      SetRedraw(true);\r
1754 \r
1755         if ( m_pStoreSelection )\r
1756         {\r
1757                 // Deleting the instance will restore the\r
1758                 // selection of the CLogDlg.\r
1759                 delete m_pStoreSelection;\r
1760                 m_pStoreSelection = NULL;\r
1761         }\r
1762         else\r
1763         {\r
1764                 // If no selection has been set then this must be the first time\r
1765                 // the revisions are shown. Let's preselect the topmost revision.\r
1766                 if ( GetItemCount()>0 )\r
1767                 {\r
1768                         SetSelectionMark(0);\r
1769                         SetItemState(0, LVIS_SELECTED, LVIS_SELECTED);\r
1770                 }\r
1771         }\r
1772 #endif\r
1773         InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1774 \r
1775 \r
1776         //FetchFullLogInfo();\r
1777         FetchFullLogInfoOrig();\r
1778         //RefreshCursor();\r
1779         // make sure the filter is applied (if any) now, after we refreshed/fetched\r
1780         // the log messages\r
1781 \r
1782         ::PostMessage(this->GetParent()->m_hWnd,MSG_LOAD_PERCENTAGE,(WPARAM) GITLOG_END,0);\r
1783 \r
1784         InterlockedExchange(&m_bThreadRunning, FALSE);\r
1785 \r
1786         return 0;\r
1787 }\r
1788 \r
1789 void CGitLogListBase::Refresh()\r
1790 {       \r
1791         m_bExitThread=TRUE;\r
1792         DWORD ret =::WaitForSingleObject(m_LoadingThread->m_hThread,20000);\r
1793         if(ret == WAIT_TIMEOUT)\r
1794                 TerminateThread();\r
1795 \r
1796         this->Clear();\r
1797 \r
1798         //Update branch and Tag info\r
1799         ReloadHashMap();\r
1800         //Assume Thread have exited\r
1801         //if(!m_bThreadRunning)\r
1802         {\r
1803                 this->SetItemCountEx(0);\r
1804                 m_logEntries.clear();\r
1805                 m_bExitThread=FALSE;\r
1806                 InterlockedExchange(&m_bThreadRunning, TRUE);\r
1807                 InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
1808                 if (AfxBeginThread(LogThreadEntry, this)==NULL)\r
1809                 {\r
1810                         InterlockedExchange(&m_bThreadRunning, FALSE);\r
1811                         InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
1812                         CMessageBox::Show(NULL, IDS_ERR_THREADSTARTFAILED, IDS_APPNAME, MB_OK | MB_ICONERROR);\r
1813                 }\r
1814                 m_sFilterText.Empty();\r
1815                 m_From=CTime(1970,1,2,0,0,0);\r
1816                 m_To=CTime::GetCurrentTime();\r
1817         }\r
1818 }\r
1819 bool CGitLogListBase::ValidateRegexp(LPCTSTR regexp_str, tr1::wregex& pat, bool bMatchCase /* = false */)\r
1820 {\r
1821         try\r
1822         {\r
1823                 tr1::regex_constants::syntax_option_type type = tr1::regex_constants::ECMAScript;\r
1824                 if (!bMatchCase)\r
1825                         type |= tr1::regex_constants::icase;\r
1826                 pat = tr1::wregex(regexp_str, type);\r
1827                 return true;\r
1828         }\r
1829         catch (exception) {}\r
1830         return false;\r
1831 }\r
1832 \r
1833 void CGitLogListBase::RecalculateShownList(CPtrArray * pShownlist)\r
1834 {\r
1835 \r
1836         pShownlist->RemoveAll();\r
1837         tr1::wregex pat;//(_T("Remove"), tr1::regex_constants::icase);\r
1838         bool bRegex = false;\r
1839         if (m_bFilterWithRegex)\r
1840                 bRegex = ValidateRegexp(m_sFilterText, pat, false);\r
1841 \r
1842         tr1::regex_constants::match_flag_type flags = tr1::regex_constants::match_any;\r
1843         CString sRev;\r
1844         for (DWORD i=0; i<m_logEntries.size(); ++i)\r
1845         {\r
1846                 if ((bRegex)&&(m_bFilterWithRegex))\r
1847                 {\r
1848 #if 0\r
1849                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_BUGID))\r
1850                         {\r
1851                                 ATLTRACE(_T("bugID = \"%s\"\n"), (LPCTSTR)m_logEntries[i]->sBugIDs);\r
1852                                 if (regex_search(wstring((LPCTSTR)m_logEntries[i]->sBugIDs), pat, flags)&&IsEntryInDateRange(i))\r
1853                                 {\r
1854                                         pShownlist->Add(m_logEntries[i]);\r
1855                                         continue;\r
1856                                 }\r
1857                         }\r
1858 #endif\r
1859                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_MESSAGES))\r
1860                         {\r
1861                                 ATLTRACE(_T("messge = \"%s\"\n"),m_logEntries[i].m_Subject);\r
1862                                 if (regex_search(wstring((LPCTSTR)m_logEntries[i].m_Subject), pat, flags)&&IsEntryInDateRange(i))\r
1863                                 {\r
1864                                         pShownlist->Add(&m_logEntries[i]);\r
1865                                         continue;\r
1866                                 }\r
1867 \r
1868                                 ATLTRACE(_T("messge = \"%s\"\n"),m_logEntries[i].m_Body);\r
1869                                 if (regex_search(wstring((LPCTSTR)m_logEntries[i].m_Body), pat, flags)&&IsEntryInDateRange(i))\r
1870                                 {\r
1871                                         pShownlist->Add(&m_logEntries[i]);\r
1872                                         continue;\r
1873                                 }\r
1874                         }\r
1875 #if 0\r
1876                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_PATHS))\r
1877                         {\r
1878                                 LogChangedPathArray * cpatharray = m_logEntries[i]->pArChangedPaths;\r
1879 \r
1880                                 bool bGoing = true;\r
1881                                 for (INT_PTR cpPathIndex = 0; cpPathIndex<cpatharray->GetCount() && bGoing; ++cpPathIndex)\r
1882                                 {\r
1883                                         LogChangedPath * cpath = cpatharray->GetAt(cpPathIndex);\r
1884                                         if (regex_search(wstring((LPCTSTR)cpath->sCopyFromPath), pat, flags)&&IsEntryInDateRange(i))\r
1885                                         {\r
1886                                                 pShownlist->Add(m_logEntries[i]);\r
1887                                                 bGoing = false;\r
1888                                                 continue;\r
1889                                         }\r
1890                                         if (regex_search(wstring((LPCTSTR)cpath->sPath), pat, flags)&&IsEntryInDateRange(i))\r
1891                                         {\r
1892                                                 pShownlist->Add(m_logEntries[i]);\r
1893                                                 bGoing = false;\r
1894                                                 continue;\r
1895                                         }\r
1896                                         if (regex_search(wstring((LPCTSTR)cpath->GetAction()), pat, flags)&&IsEntryInDateRange(i))\r
1897                                         {\r
1898                                                 pShownlist->Add(m_logEntries[i]);\r
1899                                                 bGoing = false;\r
1900                                                 continue;\r
1901                                         }\r
1902                                 }\r
1903                                 if (!bGoing)\r
1904                                         continue;\r
1905                         }\r
1906 #endif\r
1907                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_AUTHORS))\r
1908                         {\r
1909                                 if (regex_search(wstring((LPCTSTR)m_logEntries[i].m_AuthorName), pat, flags)&&IsEntryInDateRange(i))\r
1910                                 {\r
1911                                         pShownlist->Add(&m_logEntries[i]);\r
1912                                         continue;\r
1913                                 }\r
1914                         }\r
1915                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_REVS))\r
1916                         {\r
1917                                 sRev.Format(_T("%s"), m_logEntries[i].m_CommitHash);\r
1918                                 if (regex_search(wstring((LPCTSTR)sRev), pat, flags)&&IsEntryInDateRange(i))\r
1919                                 {\r
1920                                         pShownlist->Add(&m_logEntries[i]);\r
1921                                         continue;\r
1922                                 }\r
1923                         }\r
1924                 } // if (bRegex)\r
1925                 else\r
1926                 {\r
1927                         CString find = m_sFilterText;\r
1928                         find.MakeLower();\r
1929 #if 0\r
1930                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_BUGID))\r
1931                         {\r
1932                                 CString sBugIDs = m_logEntries[i]->sBugIDs;\r
1933 \r
1934                                 sBugIDs = sBugIDs.MakeLower();\r
1935                                 if ((sBugIDs.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
1936                                 {\r
1937                                         pShownlist->Add(m_logEntries[i]);\r
1938                                         continue;\r
1939                                 }\r
1940                         }\r
1941 #endif\r
1942                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_MESSAGES))\r
1943                         {\r
1944                                 CString msg = m_logEntries[i].m_Subject;\r
1945 \r
1946                                 msg = msg.MakeLower();\r
1947                                 if ((msg.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
1948                                 {\r
1949                                         pShownlist->Add(&m_logEntries[i]);\r
1950                                         continue;\r
1951                                 }\r
1952                                 msg = m_logEntries[i].m_Body;\r
1953 \r
1954                                 msg = msg.MakeLower();\r
1955                                 if ((msg.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
1956                                 {\r
1957                                         pShownlist->Add(&m_logEntries[i]);\r
1958                                         continue;\r
1959                                 }\r
1960                         }\r
1961 #if 0\r
1962                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_PATHS))\r
1963                         {\r
1964                                 LogChangedPathArray * cpatharray = m_logEntries[i]->pArChangedPaths;\r
1965 \r
1966                                 bool bGoing = true;\r
1967                                 for (INT_PTR cpPathIndex = 0; cpPathIndex<cpatharray->GetCount() && bGoing; ++cpPathIndex)\r
1968                                 {\r
1969                                         LogChangedPath * cpath = cpatharray->GetAt(cpPathIndex);\r
1970                                         CString path = cpath->sCopyFromPath;\r
1971                                         path.MakeLower();\r
1972                                         if ((path.Find(find)>=0)&&(IsEntryInDateRange(i)))\r
1973                                         {\r
1974                                                 pShownlist->Add(m_logEntries[i]);\r
1975                                                 bGoing = false;\r
1976                                                 continue;\r
1977                                         }\r
1978                                         path = cpath->sPath;\r
1979                                         path.MakeLower();\r
1980                                         if ((path.Find(find)>=0)&&(IsEntryInDateRange(i)))\r
1981                                         {\r
1982                                                 pShownlist->Add(m_logEntries[i]);\r
1983                                                 bGoing = false;\r
1984                                                 continue;\r
1985                                         }\r
1986                                         path = cpath->GetAction();\r
1987                                         path.MakeLower();\r
1988                                         if ((path.Find(find)>=0)&&(IsEntryInDateRange(i)))\r
1989                                         {\r
1990                                                 pShownlist->Add(m_logEntries[i]);\r
1991                                                 bGoing = false;\r
1992                                                 continue;\r
1993                                         }\r
1994                                 }\r
1995                         }\r
1996 #endif\r
1997                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_AUTHORS))\r
1998                         {\r
1999                                 CString msg = m_logEntries[i].m_AuthorName;\r
2000                                 msg = msg.MakeLower();\r
2001                                 if ((msg.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
2002                                 {\r
2003                                         pShownlist->Add(&m_logEntries[i]);\r
2004                                         continue;\r
2005                                 }\r
2006                         }\r
2007                         if ((m_nSelectedFilter == LOGFILTER_ALL)||(m_nSelectedFilter == LOGFILTER_REVS))\r
2008                         {\r
2009                                 sRev.Format(_T("%s"), m_logEntries[i].m_CommitHash);\r
2010                                 if ((sRev.Find(find) >= 0)&&(IsEntryInDateRange(i)))\r
2011                                 {\r
2012                                         pShownlist->Add(&m_logEntries[i]);\r
2013                                         continue;\r
2014                                 }\r
2015                         }\r
2016                 } // else (from if (bRegex))    \r
2017         } // for (DWORD i=0; i<m_logEntries.size(); ++i) \r
2018 \r
2019 }\r
2020 \r
2021 BOOL CGitLogListBase::IsEntryInDateRange(int i)\r
2022 {\r
2023         __time64_t time = m_logEntries[i].m_AuthorDate.GetTime();\r
2024         if ((time >= m_From.GetTime())&&(time <= m_To.GetTime()))\r
2025                 return TRUE;\r
2026 \r
2027         return FALSE;\r
2028 \r
2029 //      return TRUE;\r
2030 }\r
2031 void CGitLogListBase::StartFilter()\r
2032 {\r
2033         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
2034         RecalculateShownList(&m_arShownList);\r
2035         InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
2036 \r
2037 \r
2038         DeleteAllItems();\r
2039         SetItemCountEx(ShownCountWithStopped());\r
2040         RedrawItems(0, ShownCountWithStopped());\r
2041         SetRedraw(false);\r
2042         //ResizeAllListCtrlCols();\r
2043         SetRedraw(true);\r
2044         Invalidate();\r
2045 \r
2046 }\r
2047 void CGitLogListBase::RemoveFilter()\r
2048 {\r
2049 \r
2050         InterlockedExchange(&m_bNoDispUpdates, TRUE);\r
2051 \r
2052         m_arShownList.RemoveAll();\r
2053 \r
2054         // reset the time filter too\r
2055 #if 0\r
2056         m_timFrom = (__time64_t(m_tFrom));\r
2057         m_timTo = (__time64_t(m_tTo));\r
2058         m_DateFrom.SetTime(&m_timFrom);\r
2059         m_DateTo.SetTime(&m_timTo);\r
2060         m_DateFrom.SetRange(&m_timFrom, &m_timTo);\r
2061         m_DateTo.SetRange(&m_timFrom, &m_timTo);\r
2062 #endif\r
2063 \r
2064         for (DWORD i=0; i<m_logEntries.size(); ++i)\r
2065         {\r
2066                 if(this->m_IsOldFirst)\r
2067                 {\r
2068                         m_arShownList.Add(&m_logEntries[m_logEntries.size()-i-1]);\r
2069                 }else\r
2070                 {\r
2071                         m_arShownList.Add(&m_logEntries[i]);\r
2072                 }\r
2073         }\r
2074 //      InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
2075         DeleteAllItems();\r
2076         SetItemCountEx(ShownCountWithStopped());\r
2077         RedrawItems(0, ShownCountWithStopped());\r
2078 //      SetRedraw(false);\r
2079 //      ResizeAllListCtrlCols();\r
2080 //      SetRedraw(true);\r
2081 \r
2082         InterlockedExchange(&m_bNoDispUpdates, FALSE);\r
2083 }\r
2084 \r
2085 void CGitLogListBase::Clear()\r
2086 {\r
2087         m_arShownList.RemoveAll();\r
2088         m_logEntries.clear();\r
2089         m_logEntries.m_HashMap.clear();\r
2090         DeleteAllItems();\r
2091         m_logEntries.m_Lns.clear();\r
2092 \r
2093         m_logEntries.m_FirstFreeLane=0;\r
2094         m_logEntries.m_Lns.clear();\r
2095 \r
2096 }\r
2097 \r
2098 void CGitLogListBase::OnDestroy()\r
2099 {\r
2100         // save the column widths to the registry\r
2101         SaveColumnWidths();\r
2102 \r
2103         if(this->m_bThreadRunning)\r
2104         {\r
2105                 this->m_bExitThread=true;\r
2106                 DWORD ret =::WaitForSingleObject(m_LoadingThread->m_hThread,20000);\r
2107                 if(ret == WAIT_TIMEOUT)\r
2108                         TerminateThread();\r
2109         }\r
2110         while(m_LogCache.SaveCache())\r
2111         {\r
2112                 if(CMessageBox::Show(NULL,_T("Cannot Save Log Cache to Disk. To retry click yes. To give up click no."),_T("TortoiseGit"),\r
2113                                                         MB_YESNO) == IDNO)\r
2114                                                         break;\r
2115         }\r
2116         CHintListCtrl::OnDestroy();\r
2117 }\r
2118 \r
2119 LRESULT CGitLogListBase::OnLoad(WPARAM wParam,LPARAM lParam)\r
2120 {\r
2121         CRect rect;\r
2122         int i=(int)wParam;\r
2123         this->GetItemRect(i,&rect,LVIR_BOUNDS);\r
2124         this->InvalidateRect(rect);\r
2125         return 0;\r
2126 }\r
2127 \r
2128 /**\r
2129  * Save column widths to the registry\r
2130  */\r
2131 void CGitLogListBase::SaveColumnWidths()\r
2132 {\r
2133         CHeaderCtrl* pHdrCtrl = (CHeaderCtrl*)(GetDlgItem(0));\r
2134         if (pHdrCtrl)\r
2135         {\r
2136                 int numcols = pHdrCtrl->GetItemCount();\r
2137                 for (int col = 0; col < numcols; col++)\r
2138                 {\r
2139                         int width = GetColumnWidth( col );\r
2140                         CString regentry;\r
2141                         regentry.Format( _T("Software\\TortoiseGit\\log\\ColWidth%d"), col);\r
2142                         CRegDWORD regwidth(regentry, 0);\r
2143                         regwidth = width;       // this writes it to reg\r
2144                 }\r
2145         }\r
2146 }\r
2147 \r