Provide (experimental) clang-format file
[TortoiseGit.git] / src / TortoiseProc / MergeAbortDlg.cpp
blobaa1e0bcb8578fd094f73b2b380a5beb70302eeae
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2013, 2016-2017 - TortoiseGit
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 // MergeAbort.cpp : implementation file
22 #include "stdafx.h"
23 #include "TortoiseProc.h"
24 #include "MergeAbortDlg.h"
25 #include "FileDiffDlg.h"
26 #include "AppUtils.h"
28 // CMergeAbortDlg dialog
30 IMPLEMENT_DYNAMIC(CMergeAbortDlg, CStateStandAloneDialog)
32 CMergeAbortDlg::CMergeAbortDlg(CWnd* pParent /*=nullptr*/)
33 : CStateStandAloneDialog(CMergeAbortDlg::IDD, pParent)
34 , m_ResetType(0)
38 CMergeAbortDlg::~CMergeAbortDlg()
42 void CMergeAbortDlg::DoDataExchange(CDataExchange* pDX)
44 CDialog::DoDataExchange(pDX);
48 BEGIN_MESSAGE_MAP(CMergeAbortDlg, CStateStandAloneDialog)
49 ON_BN_CLICKED(IDC_SHOW_MODIFIED_FILES, &CMergeAbortDlg::OnBnClickedShowModifiedFiles)
50 END_MESSAGE_MAP()
53 // CMergeAbortDlg message handlers
54 BOOL CMergeAbortDlg::OnInitDialog()
56 CStateStandAloneDialog::OnInitDialog();
57 CAppUtils::MarkWindowAsUnpinnable(m_hWnd);
59 CString sWindowTitle;
60 GetWindowText(sWindowTitle);
61 CAppUtils::SetWindowTitle(m_hWnd, g_Git.m_CurrentDir, sWindowTitle);
63 AdjustControlSize(IDC_RADIO_RESET_MERGE);
64 AdjustControlSize(IDC_RADIO_RESET_MIXED);
65 AdjustControlSize(IDC_RADIO_RESET_HARD);
67 EnableSaveRestore(L"MergeAbortDlg");
69 this->CheckRadioButton(IDC_RADIO_RESET_MERGE, IDC_RADIO_RESET_HARD, IDC_RADIO_RESET_MERGE + m_ResetType);
71 return FALSE;
74 void CMergeAbortDlg::OnOK()
76 this->UpdateData(TRUE);
77 m_ResetType = this->GetCheckedRadioButton(IDC_RADIO_RESET_MERGE, IDC_RADIO_RESET_HARD) - IDC_RADIO_RESET_MERGE;
78 return CStateStandAloneDialog::OnOK();
81 void CMergeAbortDlg::OnBnClickedShowModifiedFiles()
83 CFileDiffDlg dlg;
85 dlg.m_strRev1 = L"HEAD";
86 dlg.m_strRev2 = GIT_REV_ZERO;
88 dlg.DoModal();