1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2015 - 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 // CleanTypeDlg.cpp : implementation file
23 #include "TortoiseProc.h"
24 #include "CleanTypeDlg.h"
28 // CCleanTypeDlg dialog
30 IMPLEMENT_DYNAMIC(CCleanTypeDlg
, CStateStandAloneDialog
)
32 CCleanTypeDlg::CCleanTypeDlg(CWnd
* pParent
/*=NULL*/)
33 : CStateStandAloneDialog(CCleanTypeDlg::IDD
, pParent
)
36 CString WorkingDir
=g_Git
.m_CurrentDir
;
37 WorkingDir
.Replace(_T(':'),_T('_'));
38 this->m_regDir
= CRegDWORD( CString(_T("Software\\TortoiseGit\\History\\CleanDir\\"))+WorkingDir
, 1);
39 this->m_regType
= CRegDWORD( CString(_T("Software\\TortoiseGit\\History\\CleanType\\"))+WorkingDir
, 0);
41 this->m_bDir
= this->m_regDir
;
42 this->m_CleanType
= this->m_regType
;
43 m_bNoRecycleBin
= !CRegDWORD(_T("Software\\TortoiseGit\\RevertWithRecycleBin"), TRUE
);
45 m_bSubmodules
= FALSE
;
48 CCleanTypeDlg::~CCleanTypeDlg()
52 void CCleanTypeDlg::DoDataExchange(CDataExchange
* pDX
)
54 CDialog::DoDataExchange(pDX
);
55 DDX_Check(pDX
, IDC_CHECK_DIR
, m_bDir
);
56 DDX_Check(pDX
, IDC_CHECK_NORECYCLEBIN
, m_bNoRecycleBin
);
57 DDX_Check(pDX
, IDC_CHECK_DRYRUN
, m_bDryRun
);
58 DDX_Check(pDX
, IDC_CHECKSUBMODULES
, m_bSubmodules
);
59 DDX_Radio(pDX
, IDC_RADIO_CLEAN_ALL
,m_CleanType
);
63 BEGIN_MESSAGE_MAP(CCleanTypeDlg
, CStateStandAloneDialog
)
67 // CCleanTypeDlg message handlers
69 BOOL
CCleanTypeDlg::OnInitDialog()
71 CStateStandAloneDialog::OnInitDialog();
72 CAppUtils::MarkWindowAsUnpinnable(m_hWnd
);
74 AdjustControlSize(IDC_RADIO_CLEAN_ALL
);
75 AdjustControlSize(IDC_RADIO_CLEAN_NO
);
76 AdjustControlSize(IDC_RADIO_CLEAN_IGNORE
);
77 AdjustControlSize(IDC_CHECK_DIR
);
78 AdjustControlSize(IDC_CHECK_NORECYCLEBIN
);
79 AdjustControlSize(IDC_CHECK_DRYRUN
);
80 AdjustControlSize(IDC_CHECKSUBMODULES
);
82 EnableSaveRestore(_T("CleanTypeDlg"));
86 return TRUE
; // return TRUE unless you set the focus to a control
87 // EXCEPTION: OCX Property Pages should return FALSE
90 void CCleanTypeDlg::OnOK()
94 this->m_regDir
= this->m_bDir
;
95 this->m_regType
= this->m_CleanType
;
97 CStateStandAloneDialog::OnOK();
100 void CCleanTypeDlg::SetDlgTitle()
102 if (m_sTitle
.IsEmpty())
103 GetWindowText(m_sTitle
);
105 if (m_pathList
.GetCount() == 1)
106 CAppUtils::SetWindowTitle(m_hWnd
, g_Git
.CombinePath(m_pathList
[0].GetUIPathString()), m_sTitle
);
108 CAppUtils::SetWindowTitle(m_hWnd
, g_Git
.CombinePath(m_pathList
.GetCommonRoot().GetDirectory()), m_sTitle
);