Fix diff-xls.js error reported from http://tortoisesvn.tigris.org/ds/viewMessage...
[TortoiseGit.git] / src / TortoiseGitBlame / OutputWnd.h
blob92a355bfee86b20dcd719963c9bddb6437cc131b
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2012 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #pragma once
23 #include "GitBlameLogList.h"
24 #include "ProjectProperties.h"
25 /////////////////////////////////////////////////////////////////////////////
26 // COutputList window
28 class COutputList : public CListBox
30 // Construction
31 public:
32 COutputList();
34 // Implementation
35 public:
36 virtual ~COutputList();
38 protected:
39 afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
40 afx_msg void OnViewOutput();
42 DECLARE_MESSAGE_MAP()
45 class COutputWnd;
47 class COutputWnd : public CDockablePane
49 DECLARE_DYNAMIC(COutputWnd)
50 // Construction
51 public:
52 COutputWnd();
54 // Attributes
55 public:
56 CFont m_Font;
58 CGitBlameLogList m_LogList;
60 protected:
61 void AdjustHorzScroll(CListBox& wndListBox);
63 private:
65 // Implementation
66 public:
67 virtual ~COutputWnd();
68 afx_msg void OnLvnItemchangedLoglist(NMHDR *pNMHDR, LRESULT *pResult);
69 int LoadHistory(CString filename, CString revision, bool follow);
71 protected:
72 afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
73 afx_msg void OnSize(UINT nType, int cx, int cy);
75 DECLARE_MESSAGE_MAP()