renamed ITEMIS_SUBMODULE to ITEMIS_SUBMODULECONTAINER
[TortoiseGit.git] / src / TortoiseGitBlame / OutputWnd.h
blobbc0f7064a5a382a1bfd42f5bd9bf2113bd84bfd9
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2011 - 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 OnEditCopy();
41 afx_msg void OnEditClear();
42 afx_msg void OnViewOutput();
44 DECLARE_MESSAGE_MAP()
47 class COutputWnd;
49 class CGitMFCTabCtrl: public CMFCTabCtrl
51 protected:
52 DECLARE_MESSAGE_MAP()
53 afx_msg void OnLvnItemchangedLoglist(NMHDR *pNMHDR, LRESULT *pResult);
55 DECLARE_DYNCREATE(CGitMFCTabCtrl);
58 class COutputWnd : public CDockablePane
60 DECLARE_DYNAMIC(COutputWnd)
61 // Construction
62 public:
63 COutputWnd();
65 // Attributes
66 public:
67 CFont m_Font;
69 CGitMFCTabCtrl m_wndTabs;
71 CGitBlameLogList m_LogList;
72 // COutputList m_wndOutputBuild;
73 // COutputList m_wndOutputDebug;
74 // COutputList m_wndOutputFind;
76 protected:
77 void FillBuildWindow();
78 void FillDebugWindow();
79 void FillFindWindow();
81 void AdjustHorzScroll(CListBox& wndListBox);
83 private:
85 // Implementation
86 public:
87 virtual ~COutputWnd();
88 afx_msg void OnLvnItemchangedLoglist(NMHDR *pNMHDR, LRESULT *pResult);
89 int LoadHistory(CString filename);
91 protected:
92 afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
93 afx_msg void OnSize(UINT nType, int cx, int cy);
95 DECLARE_MESSAGE_MAP()