Fixed issue #2495: "Show Reflog" dialog shows empty action for "push" entries
[TortoiseGit.git] / src / TortoiseProc / BugtraqRegexTestDlg.h
blob0ac2057048ae38998c521fa72c65d5f1cc938592
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2014 - TortoiseGit
4 // Copyright (C) 2011 - 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 "RegexEdit.h"
23 #include "SciEdit.h"
25 // CBugtraqRegexTestDlg dialog
27 class CBugtraqRegexTestDlg : public CResizableStandAloneDialog
29 DECLARE_DYNAMIC(CBugtraqRegexTestDlg)
31 public:
32 CBugtraqRegexTestDlg(CWnd* pParent = nullptr); // standard constructor
33 virtual ~CBugtraqRegexTestDlg();
35 // Dialog Data
36 enum { IDD = IDD_BUGTRAQREGEXTESTER };
38 CString m_sBugtraqRegex1;
39 CString m_sBugtraqRegex2;
41 protected:
42 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
43 virtual BOOL OnInitDialog();
45 DECLARE_MESSAGE_MAP()
47 afx_msg void OnEnChangeBugtraqlogregex1();
48 afx_msg void OnEnChangeBugtraqlogregex2();
50 private:
51 void UpdateLogControl();
52 CRegexEdit m_BugtraqRegex1;
53 CRegexEdit m_BugtraqRegex2;
54 CSciEdit m_cLogMessage;