Fixed issue #4126: Capitalize the first letter in the Push dialog
[TortoiseGit.git] / src / TortoiseProc / SVNIgnoreTypeDlg.cpp
blob99b4b345f7579d5cff1fd3235f9f3a973b7adb60
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2012, 2014-2016, 2024 - 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.
20 #include "stdafx.h"
21 #include "TortoiseProc.h"
22 #include "SVNIgnoreTypeDlg.h"
23 #include "AppUtils.h"
24 #include "Git.h"
26 // CSVNIgnoreTypeDlg dialog
28 IMPLEMENT_DYNAMIC(CSVNIgnoreTypeDlg, CStandAloneDialog)
30 CSVNIgnoreTypeDlg::CSVNIgnoreTypeDlg(CWnd* pParent /*=nullptr*/)
31 : CStandAloneDialog(CSVNIgnoreTypeDlg::IDD, pParent)
32 , m_SVNIgnoreType(0)
36 CSVNIgnoreTypeDlg::~CSVNIgnoreTypeDlg()
40 void CSVNIgnoreTypeDlg::DoDataExchange(CDataExchange* pDX)
42 CDialog::DoDataExchange(pDX);
43 DDX_Radio(pDX, IDC_RADIO_EXCLUDE, m_SVNIgnoreType);
46 BEGIN_MESSAGE_MAP(CSVNIgnoreTypeDlg, CStandAloneDialog)
47 END_MESSAGE_MAP()
49 // CSVNIgnoreTypeDlg message handlers
51 BOOL CSVNIgnoreTypeDlg::OnInitDialog()
53 CStandAloneDialog::OnInitDialog();
54 CAppUtils::MarkWindowAsUnpinnable(m_hWnd);
56 AdjustControlSize(IDC_RADIO_EXCLUDE);
57 AdjustControlSize(IDC_RADIO_GITIGNORE);
59 CAppUtils::SetWindowTitle(*this, g_Git.m_CurrentDir);
61 return TRUE; // return TRUE unless you set the focus to a control
62 // EXCEPTION: OCX Property Pages should return FALSE