Allow to use libgit2 for unified diff
[TortoiseGit.git] / src / TortoiseProc / SVNIgnoreTypeDlg.cpp
blob11932e59b149f99fe0b88182d3dbbb998ada2fcf
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2012 - 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, CResizableStandAloneDialog)
29 CSVNIgnoreTypeDlg::CSVNIgnoreTypeDlg(CWnd* pParent /*=NULL*/)
30 : CResizableStandAloneDialog(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, CResizableStandAloneDialog)
48 END_MESSAGE_MAP()
51 // CSVNIgnoreTypeDlg message handlers
53 BOOL CSVNIgnoreTypeDlg::OnInitDialog()
55 CResizableStandAloneDialog::OnInitDialog();
56 CAppUtils::MarkWindowAsUnpinnable(m_hWnd);
58 AddAnchor(IDC_RADIO_EXCLUDE, TOP_LEFT);
59 AddAnchor(IDC_RADIO_GITIGNORE,TOP_LEFT);
60 AddAnchor(IDC_GROUP_TYPE,TOP_LEFT, BOTTOM_RIGHT);
62 AddAnchor(IDOK,BOTTOM_RIGHT);
63 AddAnchor(IDCANCEL,BOTTOM_RIGHT);
65 AdjustControlSize(IDC_RADIO_EXCLUDE);
66 AdjustControlSize(IDC_RADIO_GITIGNORE);
68 CString sWindowTitle;
69 GetWindowText(sWindowTitle);
70 CAppUtils::SetWindowTitle(m_hWnd, g_Git.m_CurrentDir, sWindowTitle);
72 return TRUE; // return TRUE unless you set the focus to a control
73 // EXCEPTION: OCX Property Pages should return FALSE