Updated libgit to version 2.46.2 based on Git for Windows sources
[TortoiseGit.git] / src / TortoiseProc / Settings / SettingsProgsAlternativeEditor.h
blob742223aab9e662f7c99caa943c607ff4ca047a20
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2008 - TortoiseSVN
4 // Copyright (C) 2011, 2018, 2023 - 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"
25 /**
26 * \ingroup TortoiseProc
27 * Settings page to configure external unified diff viewers.
29 class CSettingsProgsAlternativeEditor : public ISettingsPropPage
31 DECLARE_DYNAMIC(CSettingsProgsAlternativeEditor)
33 public:
34 CSettingsProgsAlternativeEditor();
35 virtual ~CSettingsProgsAlternativeEditor();
37 UINT GetIconID() override { return IDI_NOTEPAD; }
39 enum { IDD = IDD_SETTINGSPROGSALTERNATIVEEDITOR };
41 protected:
42 void DoDataExchange(CDataExchange* pDX) override; // DDX/DDV support
43 BOOL OnInitDialog() override;
44 BOOL OnApply() override;
45 afx_msg void OnBnClickedAlternativeEditorOff();
46 afx_msg void OnBnClickedAlternativeEditorOn();
47 afx_msg void OnBnClickedAlternativeEditorBrowse();
48 afx_msg void OnEnChangeAlternativeEditor();
50 DECLARE_MESSAGE_MAP()
52 private:
53 bool IsExternal(const CString& path) const { return !path.IsEmpty() && path.Left(1) != L"#"; }
54 void CheckProgComment();
56 CString m_sAlternativeEditorPath;
57 CRegString m_regAlternativeEditorPath;
58 int m_iAlternativeEditor;
60 CFileDropEdit m_cAlternativeEditorEdit;