Merge branch 'scintilla-551'
[TortoiseGit.git] / src / TortoiseProc / HistoryDlg.h
blob816b73fc1210cf1ff4313815e65a4c4f663260cd
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2023 - TortoiseGit
4 // Copyright (C) 2003-2007 - 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.
20 #pragma once
21 #include "StandAloneDlg.h"
22 #include "RegHistory.h"
24 #include "HistoryCombo.h"
25 /**
26 * \ingroup TortoiseProc
27 * Dialog showing the log message history.
29 class CHistoryDlg : public CResizableStandAloneDialog
31 DECLARE_DYNAMIC(CHistoryDlg)
32 public:
33 CHistoryDlg(CWnd* pParent = nullptr); // standard constructor
34 virtual ~CHistoryDlg();
36 /// Returns the text of the selected entry.
37 CString GetSelectedText() const {return m_SelectedText;}
38 /// Sets the history object to use
39 void SetHistory(CRegHistory& history) {m_history = &history;}
40 // Dialog Data
41 enum { IDD = IDD_HISTORYDLG };
43 CString m_Version;
44 CString m_Title;
46 protected:
47 void DoDataExchange(CDataExchange* pDX) override; // DDX/DDV support
48 BOOL OnInitDialog() override;
49 afx_msg void OnBnClickedOk();
50 afx_msg void OnLbnDblclkHistorylist();
51 BOOL PreTranslateMessage(MSG* pMsg) override;
53 DECLARE_MESSAGE_MAP()
54 private:
55 CListBox m_List;
56 CString m_SelectedText;
57 CRegHistory* m_history = nullptr;
58 CHistoryCombo m_VersionCombo;