Fixed some warnings
[TortoiseGit.git] / src / TortoiseGitBlame / TortoiseGitBlameView.h
blob22ca134feac0fe66c0f5c7791b84a17df481bd63
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2013 - TortoiseGit
4 // Copyright (C) 2003-2008 - TortoiseSVN
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 // TortoiseGitBlameView.h : interface of the CTortoiseGitBlameView class
26 #pragma once
28 #include "Scintilla.h"
29 #include "SciLexer.h"
30 #include "registry.h"
31 #include "SciEdit.h"
33 #include "GitBlameLogList.h"
34 #include "Tooltip.h"
36 const COLORREF black = RGB(0,0,0);
37 const COLORREF white = RGB(0xff,0xff,0xff);
38 const COLORREF red = RGB(0xFF, 0, 0);
39 const COLORREF offWhite = RGB(0xFF, 0xFB, 0xF0);
40 const COLORREF darkGreen = RGB(0, 0x80, 0);
41 const COLORREF darkBlue = RGB(0, 0, 0x80);
42 const COLORREF lightBlue = RGB(0xA6, 0xCA, 0xF0);
43 const int blockSize = 128 * 1024;
45 #define BLAMESPACE 5
46 #define HEADER_HEIGHT 18
47 #define LOCATOR_WIDTH 10
49 #define MAX_LOG_LENGTH 2000
52 #ifndef GET_X_LPARAM
53 #define GET_X_LPARAM(lp) ((int)(short)LOWORD(lp))
54 #endif
55 #ifndef GET_Y_LPARAM
56 #define GET_Y_LPARAM(lp) ((int)(short)HIWORD(lp))
57 #endif
59 class CSciEditBlame: public CSciEdit
61 DECLARE_DYNAMIC(CSciEditBlame)
62 public:
63 afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags)
65 switch (nChar)
67 case (VK_ESCAPE):
69 if ((Call(SCI_AUTOCACTIVE)==0)&&(Call(SCI_CALLTIPACTIVE)==0))
71 ::SendMessage(::AfxGetApp()->GetMainWnd()->m_hWnd, WM_CLOSE, 0, 0);
72 return;
75 break;
77 CWnd::OnKeyDown(nChar, nRepCnt, nFlags);
81 class CTortoiseGitBlameView : public CView
83 protected: // create from serialization only
84 CTortoiseGitBlameView();
85 DECLARE_DYNCREATE(CTortoiseGitBlameView)
87 // Attributes
88 public:
89 CTortoiseGitBlameDoc* GetDocument() const;
90 int GetEncode(unsigned char * buffer, int size, int *bomoffset);
91 // Operations
92 public:
94 // Overrides
95 public:
96 virtual void OnDraw(CDC* pDC); // overridden to draw this view
97 virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
98 protected:
99 virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
100 virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
101 virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
103 // Implementation
104 public:
105 virtual ~CTortoiseGitBlameView();
106 #ifdef _DEBUG
107 virtual void AssertValid() const;
108 virtual void Dump(CDumpContext& dc) const;
109 #endif
111 protected:
113 // Generated message map functions
114 protected:
115 BOOL PreTranslateMessage(MSG* pMsg);
116 afx_msg void OnChangeEncode(UINT nID);
117 afx_msg void OnEditFind();
118 afx_msg void OnEditGoto();
119 afx_msg void OnFilePrintPreview();
120 afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
121 afx_msg int OnCreate(LPCREATESTRUCT lpcs);
122 afx_msg void OnSize(UINT nType, int cx, int cy);
123 afx_msg void OnSciPainted(NMHDR*, LRESULT*);
124 afx_msg void OnLButtonDown(UINT nFlags,CPoint point);
125 afx_msg void OnRButtonDown(UINT nFlags,CPoint point){OnLButtonDown(nFlags,point);CView::OnRButtonDown(nFlags,point);};
126 afx_msg void OnSciGetBkColor(NMHDR*, LRESULT*);
127 afx_msg void OnMouseHover(UINT nFlags, CPoint point);
128 afx_msg void OnMouseMove(UINT nFlags, CPoint point);
129 afx_msg LRESULT OnFindDialogMessage(WPARAM wParam, LPARAM lParam);
130 afx_msg void OnViewNext();
131 afx_msg void OnViewPrev();
132 afx_msg void OnViewToggleAuthor();
133 afx_msg void OnUpdateViewToggleAuthor(CCmdUI *pCmdUI);
134 afx_msg void OnViewToggleFollowRenames();
135 afx_msg void OnUpdateViewToggleFollowRenames(CCmdUI *pCmdUI);
136 afx_msg void CopyHashToClipboard();
137 afx_msg void OnUpdateBlamePopupBlamePrevious(CCmdUI *pCmdUI);
138 afx_msg void OnUpdateBlamePopupDiffPrevious(CCmdUI *pCmdUI);
139 afx_msg void OnUpdateViewCopyToClipboard(CCmdUI *pCmdUI);
141 int FindNextLine(CGitHash commithash, bool bUpOrDown=false);
142 int FindFirstLine(CGitHash commithash, int line)
144 while(line>=0)
146 if( m_CommitHash[line] != commithash )
148 return line++;
150 line--;
152 return line;
155 DECLARE_MESSAGE_MAP()
157 static UINT m_FindDialogMessage;
158 public:
160 void UpdateInfo(int encode = 0);
161 void FocusOn(GitRev *pRev);
163 CSciEditBlame m_TextView;
164 CToolTips m_ToolTip;
166 HINSTANCE hInstance;
167 HINSTANCE hResource;
168 HWND currentDialog;
169 HWND wMain;
170 HWND m_wEditor;
171 HWND wBlame;
172 HWND wHeader;
173 HWND wLocator;
174 HWND hwndTT;
176 BOOL bIgnoreEOL;
177 BOOL bIgnoreSpaces;
178 BOOL bIgnoreAllSpaces;
180 BOOL m_bShowAuthor;
181 BOOL m_bShowDate;
182 BOOL m_bFollowRenames;
184 LRESULT SendEditor(UINT Msg, WPARAM wParam=0, LPARAM lParam=0);
186 void SetAStyle(int style, COLORREF fore, COLORREF back = ::GetSysColor(COLOR_WINDOW), int size = -1, CString face = CString());
188 void InitialiseEditor();
189 LONG GetBlameWidth();
190 void DrawBlame(HDC hDC);
191 void DrawLocatorBar(HDC hDC);
192 void CopyToClipboard();
193 void CopySelectedLogToClipboard();
194 void BlamePreviousRevision();
195 void DiffPreviousRevision();
196 void ShowLog();
197 bool DoSearch(CString what, DWORD flags);
198 bool GotoLine(long line);
199 bool ScrollToLine(long line);
200 void GotoLineDlg();
201 static INT_PTR CALLBACK GotoDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
203 void SetSelectedLine(LONG line) { m_SelectedLine=line;};
205 LONG m_mouserev;
206 LONG m_MouseLine;
207 LONG m_selectedrev;
208 LONG m_selectedorigrev;
209 CGitHash m_SelectedHash;
210 CGitHash m_selecteddate;
211 static long m_gotoline;
212 long m_lowestrev;
213 long m_highestrev;
214 bool m_colorage;
216 std::vector<LONG> m_ID;
217 std::vector<LONG> m_LineNum;
218 std::vector<CString> m_Dates;
219 std::vector<CString> m_Authors;
220 std::vector<CGitHash> m_CommitHash;
222 std::map<CString,GitRev> m_NoListCommit;
224 char m_szTip[MAX_LOG_LENGTH*2+6];
225 wchar_t m_wszTip[MAX_LOG_LENGTH*2+6];
226 void StringExpand(LPSTR str);
227 void StringExpand(LPWSTR str);
228 BOOL ttVisible;
230 CLogDataVector * GetLogData();
232 BOOL m_bShowLine;
234 protected:
235 void CreateFont();
236 void SetupLexer(CString filename);
237 void SetupCppLexer();
238 COLORREF InterColor(COLORREF c1, COLORREF c2, int Slider);
239 CString GetAppDirectory();
240 std::vector<COLORREF> colors;
241 HFONT m_font;
242 HFONT m_italicfont;
243 LONG m_blamewidth;
244 LONG m_revwidth;
245 LONG m_datewidth;
246 LONG m_authorwidth;
247 LONG m_linewidth;
248 LONG m_SelectedLine; ///< zero-based
250 COLORREF m_mouserevcolor;
251 COLORREF m_mouseauthorcolor;
252 COLORREF m_selectedrevcolor;
253 COLORREF m_selectedauthorcolor;
254 COLORREF m_windowcolor;
255 COLORREF m_textcolor;
256 COLORREF m_texthighlightcolor;
258 LRESULT m_directFunction;
259 LRESULT m_directPointer;
260 FINDREPLACE fr;
261 TCHAR szFindWhat[80];
263 CRegStdDWORD m_regOldLinesColor;
264 CRegStdDWORD m_regNewLinesColor;
266 CGitBlameLogList * GetLogList();
268 CFindReplaceDialog *m_pFindDialog;
270 char *m_Buffer;
272 DWORD m_DateFormat; // DATE_SHORTDATE or DATE_LONGDATE
273 bool m_bRelativeTimes; // Show relative times
275 CString m_sRev;
276 CString m_sAuthor;
277 CString m_sDate;
278 CString m_sMessage;
281 #ifndef _DEBUG // debug version in TortoiseGitBlameView.cpp
282 inline CTortoiseGitBlameDoc* CTortoiseGitBlameView::GetDocument() const
283 { return reinterpret_cast<CTortoiseGitBlameDoc*>(m_pDocument); }
284 #endif