CommitDlg: Update empty file list message
[TortoiseGit.git] / src / TortoiseProc / MergeAbortDlg.cpp
blob4f4a50cb3cdb0ed3f024911aa700ec7794308bea
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2013 - 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 /*=NULL*/)
33 : CStateStandAloneDialog(CMergeAbortDlg::IDD, pParent)
34 , m_ResetType(1)
39 CMergeAbortDlg::~CMergeAbortDlg()
43 void CMergeAbortDlg::DoDataExchange(CDataExchange* pDX)
45 CDialog::DoDataExchange(pDX);
49 BEGIN_MESSAGE_MAP(CMergeAbortDlg, CStateStandAloneDialog)
50 ON_BN_CLICKED(IDC_SHOW_MODIFIED_FILES, &CMergeAbortDlg::OnBnClickedShowModifiedFiles)
51 END_MESSAGE_MAP()
54 // CMergeAbortDlg message handlers
55 BOOL CMergeAbortDlg::OnInitDialog()
57 CStateStandAloneDialog::OnInitDialog();
58 CAppUtils::MarkWindowAsUnpinnable(m_hWnd);
60 CString sWindowTitle;
61 GetWindowText(sWindowTitle);
62 CAppUtils::SetWindowTitle(m_hWnd, g_Git.m_CurrentDir, sWindowTitle);
64 AdjustControlSize(IDC_RADIO_RESET_MIXED);
65 AdjustControlSize(IDC_RADIO_RESET_HARD);
67 EnableSaveRestore(_T("MergeAbortDlg"));
69 this->CheckRadioButton(IDC_RADIO_RESET_MIXED, IDC_RADIO_RESET_HARD, IDC_RADIO_RESET_MIXED + m_ResetType);
71 return FALSE;
74 void CMergeAbortDlg::OnOK()
76 this->UpdateData(TRUE);
77 m_ResetType = this->GetCheckedRadioButton(IDC_RADIO_RESET_MIXED, IDC_RADIO_RESET_HARD) - IDC_RADIO_RESET_MIXED;
78 return CStateStandAloneDialog::OnOK();
81 void CMergeAbortDlg::OnBnClickedShowModifiedFiles()
83 CFileDiffDlg dlg;
85 dlg.m_strRev1 = _T("0000000000000000000000000000000000000000");
86 dlg.m_strRev2 = _T("HEAD");
88 dlg.DoModal();