Add find bar to patch viewer
[TortoiseGit.git] / src / TortoiseProc / PatchViewDlg.h
blob96261163e345398140c96f3d19c18d06656a03f3
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2011,2014-2015 - 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.
19 #pragma once
20 #include "SciEdit.h"
21 #include "FindBar.h"
23 class IHasPatchView
25 public:
26 virtual CWnd *GetPatchViewParentWnd() = 0;
27 virtual void TogglePatchView() = 0;
30 // CPatchViewDlg dialog
31 class CPatchViewDlg : public CDialog
33 DECLARE_DYNAMIC(CPatchViewDlg)
35 public:
36 CPatchViewDlg(CWnd* pParent = NULL); // standard constructor
37 virtual ~CPatchViewDlg();
38 IHasPatchView *m_ParentDlg;
39 void SetText(const CString& text);
40 void ClearView();
42 // Dialog Data
43 enum { IDD = IDD_PATCH_VIEW };
45 protected:
46 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
47 virtual BOOL PreTranslateMessage(MSG* pMsg);
49 public:
50 CSciEdit m_ctrlPatchView;
52 protected:
53 DECLARE_MESSAGE_MAP()
55 virtual BOOL OnInitDialog();
56 afx_msg void OnSize(UINT nType, int cx, int cy);
57 afx_msg void OnMoving(UINT fwSide, LPRECT pRect);
58 afx_msg void OnClose();
60 afx_msg void OnShowFindBar();
61 afx_msg void OnFindNext();
62 afx_msg void OnFindPrev();
63 afx_msg void OnFindReset();
64 afx_msg void OnFindExit();
65 afx_msg void OnEscape();
66 LRESULT OnFindNextMessage(WPARAM, LPARAM);
67 LRESULT OnFindPrevMessage(WPARAM, LPARAM);
68 LRESULT OnFindResetMessage(WPARAM, LPARAM);
69 LRESULT OnFindExitMessage(WPARAM, LPARAM);
71 CFindBar m_FindBar;
72 bool m_bShowFindBar;
74 HACCEL m_hAccel;