Make sounds for indicating a warning or error work
[TortoiseGit.git] / src / TortoiseProc / Settings / SetHooksAdv.h
blobf6d85ad0333be8d71cb70a830e29d1a717382134
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-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 "Hooks.h"
21 #include "StandAloneDlg.h"
22 #include "Tooltip.h"
24 /**
25 * \ingroup TortoiseProc
26 * helper dialog to configure client side hook scripts.
28 class CSetHooksAdv : public CResizableStandAloneDialog
30 DECLARE_DYNAMIC(CSetHooksAdv)
32 public:
33 CSetHooksAdv(CWnd* pParent = NULL); // standard constructor
34 virtual ~CSetHooksAdv();
36 // Dialog Data
37 enum { IDD = IDD_SETTINGSHOOKCONFIG };
39 hookkey key;
40 hookcmd cmd;
42 protected:
43 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
44 virtual BOOL OnInitDialog();
45 virtual BOOL PreTranslateMessage(MSG* pMsg);
46 virtual void OnOK();
47 afx_msg void OnBnClickedHookbrowse();
48 afx_msg void OnBnClickedHookcommandbrowse();
49 afx_msg void OnBnClickedHelp();
51 DECLARE_MESSAGE_MAP()
53 CString m_sPath;
54 CString m_sCommandLine;
55 BOOL m_bWait;
56 BOOL m_bHide;
57 CComboBox m_cHookTypeCombo;
58 CToolTips m_tooltips;