Add start and pre commit hooks
[TortoiseGit.git] / src / TortoiseMerge / RegexFiltersDlg.h
blob6abafafcc2c1d18adbec1b7ee114774824c49b17
1 // TortoiseMerge - a Diff/Patch program
3 // Copyright (C) 2013 - TortoiseSVN
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 "afxcmn.h"
21 #include "SimpleIni.h"
23 // CRegexFiltersDlg dialog
25 class CRegexFiltersDlg : public CDialogEx
27 DECLARE_DYNAMIC(CRegexFiltersDlg)
29 public:
30 CRegexFiltersDlg(CWnd* pParent = NULL); // standard constructor
31 virtual ~CRegexFiltersDlg();
33 // Dialog Data
34 enum { IDD = IDD_REGEXFILTERS };
36 void SetIniFile(CSimpleIni * pIni) { m_pIni = pIni; }
37 protected:
38 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
39 virtual BOOL OnInitDialog();
40 afx_msg void OnBnClickedAdd();
41 afx_msg void OnBnClickedEdit();
42 afx_msg void OnBnClickedRemove();
43 afx_msg void OnNMDblclkRegexlist(NMHDR *pNMHDR, LRESULT *pResult);
44 afx_msg void OnLvnItemchangedRegexlist(NMHDR *pNMHDR, LRESULT *pResult);
46 DECLARE_MESSAGE_MAP()
48 void SetupListControl();
49 private:
50 CListCtrl m_RegexList;
51 CSimpleIni * m_pIni;