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.
21 #include "StandAloneDlg.h"
24 class CBugTraqAssociation
;
27 * \ingroup TortoiseProc
28 * helper dialog to configure client side hook scripts.
30 class CSetBugTraqAdv
: public CResizableStandAloneDialog
32 DECLARE_DYNAMIC(CSetBugTraqAdv
)
35 CSetBugTraqAdv(CWnd
* pParent
= NULL
);
36 CSetBugTraqAdv(const CBugTraqAssociation
&assoc
, CWnd
* pParent
= NULL
);
37 virtual ~CSetBugTraqAdv();
39 CBugTraqAssociation
GetAssociation() const;
42 enum { IDD
= IDD_SETTINGSBUGTRAQADV
};
45 virtual void DoDataExchange(CDataExchange
* pDX
); // DDX/DDV support
46 virtual BOOL
OnInitDialog();
47 virtual BOOL
PreTranslateMessage(MSG
* pMsg
);
49 afx_msg
void OnDestroy();
50 afx_msg
void OnBnClickedBugTraqbrowse();
51 afx_msg
void OnCbnSelchangeBugtraqprovidercombo();
52 afx_msg
void OnBnClickedOptions();
56 void CheckHasOptions();
59 CLSID m_provider_clsid
;
60 CString m_sParameters
;
61 CComboBox m_cProviderCombo
;