Fixed issue #1499: Allow to show log if current HEAD and selected ref is orphan branc...
[TortoiseGit.git] / src / TortoiseGitBlame / OutputWnd.h
blobffced54e22ac4c4f878bdf0298d4f720a813cd40
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 CGitMFCTabCtrl: public CMFCTabCtrl
49 protected:
50 DECLARE_MESSAGE_MAP()
51 afx_msg void OnLvnItemchangedLoglist(NMHDR *pNMHDR, LRESULT *pResult);
53 DECLARE_DYNCREATE(CGitMFCTabCtrl);
56 class COutputWnd : public CDockablePane
58 DECLARE_DYNAMIC(COutputWnd)
59 // Construction
60 public:
61 COutputWnd();
63 // Attributes
64 public:
65 CFont m_Font;
67 CGitMFCTabCtrl m_wndTabs;
69 CGitBlameLogList m_LogList;
71 protected:
72 void AdjustHorzScroll(CListBox& wndListBox);
74 private:
76 // Implementation
77 public:
78 virtual ~COutputWnd();
79 afx_msg void OnLvnItemchangedLoglist(NMHDR *pNMHDR, LRESULT *pResult);
80 int LoadHistory(CString filename, CString revision, bool follow);
82 protected:
83 afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
84 afx_msg void OnSize(UINT nType, int cx, int cy);
86 DECLARE_MESSAGE_MAP()