3 #include "HintListCtrl.h"
\r
5 #include "CommonResource.h"
\r
7 #include "ProjectProperties.h"
\r
8 #include "TGitPath.h"
\r
9 #include "registry.h"
\r
10 #include "SplitterControl.h"
\r
12 #include "MenuButton.h"
\r
13 #include "LogDlgHelper.h"
\r
14 #include "FilterEdit.h"
\r
16 #include "Tooltip.h"
\r
17 #include "HintListCtrl.h"
\r
18 //#include "GitLogList.h"
\r
23 #if (NTDDI_VERSION < NTDDI_LONGHORN)
\r
25 enum LISTITEMSTATES_MINE {
\r
30 LISS_SELECTEDNOTFOCUS = 5,
\r
31 LISS_HOTSELECTED = 6,
\r
34 #define MCS_NOTRAILINGDATES 0x0040
\r
35 #define MCS_SHORTDAYSOFWEEK 0x0080
\r
36 #define MCS_NOSELCHANGEONNAV 0x0100
\r
38 #define DTM_SETMCSTYLE (DTM_FIRST + 11)
\r
42 #define ICONITEMBORDER 5
\r
44 #define GITLOG_START 0
\r
45 #define GITLOG_START_ALL 1
\r
46 #define GITLOG_END 100
\r
48 #define LOGFILTER_ALL 1
\r
49 #define LOGFILTER_MESSAGES 2
\r
50 #define LOGFILTER_PATHS 3
\r
51 #define LOGFILTER_AUTHORS 4
\r
52 #define LOGFILTER_REVS 5
\r
53 #define LOGFILTER_REGEX 6
\r
54 #define LOGFILTER_BUGID 7
\r
56 typedef void CALLBACK_PROCESS(void * data, int progress);
\r
58 class CGitLogListBase : public CHintListCtrl
\r
60 DECLARE_DYNAMIC(CGitLogListBase)
\r
64 virtual ~CGitLogListBase();
\r
65 volatile LONG m_bNoDispUpdates;
\r
66 BOOL m_IsIDReplaceAction;
\r
67 BOOL m_bStrictStopped;
\r
68 BOOL m_bShowBugtraqColumn;
\r
69 BOOL m_bSearchIndex;
\r
73 volatile LONG m_bThreadRunning;
\r
83 LOGLIST_MESSAGE_MAX=300,
\r
84 LOGLIST_MESSAGE_MIN=200
\r
89 // needs to start with 1, since 0 is the return value if *nothing* is clicked on in the context menu
\r
119 ID_COMPAREWITHPREVIOUS,
\r
120 ID_BLAMEWITHPREVIOUS,
\r
128 void InsertGitColumn();
\r
129 void ResizeAllListCtrlCols();
\r
130 void CopySelectionToClipBoard(bool hashonly=FALSE);
\r
131 void DiffSelectedRevWithPrevious();
\r
132 bool IsSelectionContinuous();
\r
133 int FillGitShortLog();
\r
134 int FillGitLog(CTGitPath *path,int infomask=CGit:: LOG_INFO_STAT| CGit::LOG_INFO_FILESTATE);
\r
136 inline int ShownCountWithStopped() const { return (int)m_arShownList.GetCount() + (m_bStrictStopped ? 1 : 0); }
\r
137 int FetchLogAsync(CALLBACK_PROCESS *proc=NULL, void * data=NULL);
\r
138 CPtrArray m_arShownList;
\r
140 void RecalculateShownList(CPtrArray * pShownlist);
\r
143 int m_nSelectedFilter;
\r
144 CLogDataVector m_logEntries;
\r
145 void RemoveFilter();
\r
146 void StartFilter();
\r
147 bool ValidateRegexp(LPCTSTR regexp_str, tr1::wregex& pat, bool bMatchCase = false );
\r
148 CString m_sFilterText;
\r
155 void GetTimeRange(CTime &oldest,CTime &latest);
\r
156 virtual void ContextMenuAction(int cmd,int FirstSelect, int LastSelect)=0;
\r
157 void ReloadHashMap()
\r
160 g_Git.GetMapHashToFriendName(m_HashMap);
\r
162 void TerminateThread()
\r
164 if(this->m_LoadingThread)
\r
165 AfxTermThread((HINSTANCE)m_LoadingThread->m_hThread);
\r
168 volatile bool m_bExitThread;
\r
169 CWinThread* m_LoadingThread;
\r
171 DECLARE_MESSAGE_MAP()
\r
172 afx_msg void OnNMCustomdrawLoglist(NMHDR *pNMHDR, LRESULT *pResult);
\r
173 afx_msg void OnLvnGetdispinfoLoglist(NMHDR *pNMHDR, LRESULT *pResult);
\r
174 afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
\r
175 afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
\r
176 void OnNMDblclkLoglist(NMHDR * /*pNMHDR*/, LRESULT *pResult);
\r
177 afx_msg void OnLvnOdfinditemLoglist(NMHDR *pNMHDR, LRESULT *pResult);
\r
178 void PreSubclassWindow();
\r
179 virtual BOOL PreTranslateMessage(MSG* pMsg);
\r
180 static UINT LogThreadEntry(LPVOID pVoid);
\r
182 void FillBackGround(HDC hdc, int Index,CRect &rect);
\r
183 void DrawTagBranch(HDC,CRect &rect,INT_PTR index);
\r
184 void DrawGraph(HDC,CRect &rect,INT_PTR index);
\r
186 BOOL GetShortName(CString ref, CString &shortname,CString prefix);
\r
187 void paintGraphLane(HDC hdc,int laneHeight, int type, int x1, int x2,
\r
188 const COLORREF& col,int top) ;
\r
189 void DrawLine(HDC hdc, int x1, int y1, int x2, int y2){::MoveToEx(hdc,x1,y1,NULL);::LineTo(hdc,x2,y2);}
\r
192 BOOL IsEntryInDateRange(int i);
\r
196 bool m_bFilterWithRegex;
\r
202 HICON m_hModifiedIcon;
\r
203 HICON m_hReplacedIcon;
\r
204 HICON m_hAddedIcon;
\r
205 HICON m_hDeletedIcon;
\r
209 CRegDWORD m_regMaxBugIDColWidth;
\r
210 int m_nSearchIndex;
\r
212 CALLBACK_PROCESS *m_ProcCallBack;
\r
214 CStoreSelection* m_pStoreSelection;
\r
215 MAP_HASH_NAME m_HashMap;
\r