Make sounds for indicating a warning or error work
[TortoiseGit.git] / src / TortoiseProc / Settings / SettingsProgsAlternativeEditor.h
bloba0bdbf9631ad283a2e4a6a64452da757580d0fc6
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2008 - TortoiseSVN
4 // Copyright (C) 2011 - Sven Strickroth <email@cs-ware.de>
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.
20 #pragma once
21 #include "SettingsPropPage.h"
22 #include "SetProgsAdvDlg.h"
23 #include "FileDropEdit.h"
24 #include "Tooltip.h"
27 /**
28 * \ingroup TortoiseProc
29 * Settings page to configure external unified diff viewers.
31 class CSettingsProgsAlternativeEditor : public ISettingsPropPage
33 DECLARE_DYNAMIC(CSettingsProgsAlternativeEditor)
35 public:
36 CSettingsProgsAlternativeEditor();
37 virtual ~CSettingsProgsAlternativeEditor();
39 UINT GetIconID() {return IDI_DIFF;}
41 enum { IDD = IDD_SETTINGSPROGSALTERNATIVEEDITOR };
43 protected:
44 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
45 virtual BOOL OnInitDialog();
46 virtual BOOL PreTranslateMessage(MSG* pMsg);
47 virtual BOOL OnApply();
48 afx_msg void OnBnClickedAlternativeEditorOff();
49 afx_msg void OnBnClickedAlternativeEditorOn();
50 afx_msg void OnBnClickedAlternativeEditorBrowse();
51 afx_msg void OnEnChangeAlternativeEditor();
53 DECLARE_MESSAGE_MAP()
55 private:
56 bool IsExternal(const CString& path) const { return !path.IsEmpty() && path.Left(1) != _T("#"); }
57 void CheckProgComment();
59 CString m_sAlternativeEditorPath;
60 CRegString m_regAlternativeEditorPath;
61 int m_iAlternativeEditor;
62 CToolTips m_tooltips;
64 CFileDropEdit m_cAlternativeEditorEdit;