Fixed issue #2076: Issue Tracker Integration is broken in 1.8.7.0
[TortoiseGit.git] / src / TortoiseProc / Settings / SettingsBugtraqConfig.h
blob26b6e8d54c4af408ef76442d75ce24366775e4dd
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2009-2014 - 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
21 #include "SettingsPropPage.h"
22 #include "RegexEdit.h"
23 #include "GitSettings.h"
24 // CSettingsBugtraqConfig dialog
26 class CSettingsBugtraqConfig : public ISettingsPropPage, public CGitSettings
28 DECLARE_DYNAMIC(CSettingsBugtraqConfig)
30 public:
31 CSettingsBugtraqConfig(CString cmdPath);
32 virtual ~CSettingsBugtraqConfig();
34 // Dialog Data
35 enum { IDD = IDD_SETTINGSBUGTRAQ_CONFIG };
36 UINT GetIconID() {return IDI_BUGTRAQ;}
38 protected:
39 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
41 virtual BOOL OnInitDialog();
42 virtual BOOL OnApply();
43 virtual BOOL PreTranslateMessage(MSG* pMsg);
45 afx_msg void OnBnClickedTestbugtraqregexbutton();
47 virtual void LoadDataImpl(git_config * config);
48 virtual BOOL SafeDataImpl(git_config * config);
49 virtual void EnDisableControls();
51 DECLARE_MESSAGE_MAP()
53 afx_msg void OnChange();
54 GITSETTINGS_RADIO_EVENT_HANDLE
56 CToolTips m_tooltips;
58 CRegexEdit m_BugtraqRegex1;
60 bool m_bNeedSave;
61 CString m_URL;
62 BOOL m_bInheritURL;
63 CComboBox m_cWarningifnoissue;
64 CString m_Message;
65 BOOL m_bInheritMessage;
66 CComboBox m_cAppend;
67 CString m_Label;
68 BOOL m_bInheritLabel;
69 CComboBox m_cNumber;
70 CString m_Logregex;
71 BOOL m_bInheritLogregex;
72 CString m_UUID32;
73 BOOL m_bInheritUUID32;
74 CString m_UUID64;
75 BOOL m_bInheritUUID64;
76 CString m_Params;
77 BOOL m_bInheritParams;