1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2016, 2018, 2023 - TortoiseGit
4 // Copyright (C) 2003-2008,2010 - TortoiseSVN
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include "StandAloneDlg.h"
25 * \ingroup TortoiseProc
26 * helper dialog to configure client side hook scripts.
28 class CSetHooksAdv
: public CResizableStandAloneDialog
30 DECLARE_DYNAMIC(CSetHooksAdv
)
33 CSetHooksAdv(CWnd
* pParent
= nullptr); // standard constructor
34 virtual ~CSetHooksAdv();
37 enum { IDD
= IDD_SETTINGSHOOKCONFIG
};
43 void DoDataExchange(CDataExchange
* pDX
) override
; // DDX/DDV support
44 BOOL
OnInitDialog() override
;
46 afx_msg
void OnBnClickedHookbrowse();
47 afx_msg
void OnBnClickedHookcommandbrowse();
48 afx_msg
void OnBnClickedLocalcheck();
53 CString m_sCommandLine
;
58 CComboBox m_cHookTypeCombo
;