replace own balloon implementation with mfc one
[TortoiseGit.git] / src / TortoiseProc / Settings / SetBugTraqAdv.h
bloba2354aa4d79ce3c145c0d884f26e86bf413b9a7b
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 OnBnClickedHelp();
52 afx_msg void OnCbnSelchangeBugtraqprovidercombo();
53 afx_msg void OnBnClickedOptions();
55 DECLARE_MESSAGE_MAP()
57 void CheckHasOptions();
59 CString m_sPath;
60 CLSID m_provider_clsid;
61 CString m_sParameters;
62 CComboBox m_cProviderCombo;
63 CToolTips m_tooltips;