git fetch show progress
[TortoiseGit.git] / src / TortoiseProc / Settings / SetBugTraqAdv.h
blob99af52da16c1d7c8b1c44c3cdb016b1d659f8d80
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008,2010 - 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 "resource.h"
21 #include "StandAloneDlg.h"
22 #include "Tooltip.h"
24 class CBugTraqAssociation;
26 /**
27 * \ingroup TortoiseProc
28 * helper dialog to configure client side hook scripts.
30 class CSetBugTraqAdv : public CResizableStandAloneDialog
32 DECLARE_DYNAMIC(CSetBugTraqAdv)
34 public:
35 CSetBugTraqAdv(CWnd* pParent = NULL);
36 CSetBugTraqAdv(const CBugTraqAssociation &assoc, CWnd* pParent = NULL);
37 virtual ~CSetBugTraqAdv();
39 CBugTraqAssociation GetAssociation() const;
41 // Dialog Data
42 enum { IDD = IDD_SETTINGSBUGTRAQADV };
44 protected:
45 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
46 virtual BOOL OnInitDialog();
47 virtual BOOL PreTranslateMessage(MSG* pMsg);
48 virtual void OnOK();
49 afx_msg void OnDestroy();
50 afx_msg void OnBnClickedBugTraqbrowse();
51 afx_msg void OnCbnSelchangeBugtraqprovidercombo();
52 afx_msg void OnBnClickedOptions();
54 DECLARE_MESSAGE_MAP()
56 void CheckHasOptions();
58 CString m_sPath;
59 CLSID m_provider_clsid;
60 CString m_sParameters;
61 CComboBox m_cProviderCombo;
62 CToolTips m_tooltips;