Handle versioncheck.tortoisegit.org as official source
[TortoiseGit.git] / src / TortoiseProc / SVNIgnoreTypeDlg.cpp
blob8f6e0974bd74814c968e904b08da904c305611dd
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2012,2014 - 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"
25 // CSVNIgnoreTypeDlg dialog
27 IMPLEMENT_DYNAMIC(CSVNIgnoreTypeDlg, CStandAloneDialog)
29 CSVNIgnoreTypeDlg::CSVNIgnoreTypeDlg(CWnd* pParent /*=NULL*/)
30 : CStandAloneDialog(CSVNIgnoreTypeDlg::IDD, pParent)
31 , 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);
47 BEGIN_MESSAGE_MAP(CSVNIgnoreTypeDlg, CStandAloneDialog)
48 END_MESSAGE_MAP()
51 // CSVNIgnoreTypeDlg message handlers
53 BOOL CSVNIgnoreTypeDlg::OnInitDialog()
55 CStandAloneDialog::OnInitDialog();
56 CAppUtils::MarkWindowAsUnpinnable(m_hWnd);
58 AdjustControlSize(IDC_RADIO_EXCLUDE);
59 AdjustControlSize(IDC_RADIO_GITIGNORE);
61 CString sWindowTitle;
62 GetWindowText(sWindowTitle);
63 CAppUtils::SetWindowTitle(m_hWnd, g_Git.m_CurrentDir, sWindowTitle);
65 return TRUE; // return TRUE unless you set the focus to a control
66 // EXCEPTION: OCX Property Pages should return FALSE