Fix diff-xls.js error reported from http://tortoisesvn.tigris.org/ds/viewMessage...
[TortoiseGit.git] / src / TortoiseMerge / Settings.cpp
blob536bc32e0fa0e1d0faeb037a8cd9a01a7ad2c331
1 // TortoiseGitMerge - a Diff/Patch program
3 // Copyright (C) 2006, 2009-2010 - TortoiseSVN
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 #include "stdafx.h"
20 #include "Settings.h"
21 #include "SetMainPage.h"
22 #include "SetColorPage.h"
24 IMPLEMENT_DYNAMIC(CSettings, CPropertySheet)
25 CSettings::CSettings(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
26 : CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
27 , m_pMainPage(NULL)
28 , m_pColorPage(NULL)
32 CSettings::CSettings(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
33 : CPropertySheet(pszCaption, pParentWnd, iSelectPage)
34 , m_pMainPage(NULL)
35 , m_pColorPage(NULL)
37 AddPropPages();
40 CSettings::~CSettings()
42 RemovePropPages();
45 void CSettings::AddPropPages()
47 m_pMainPage = new CSetMainPage();
48 m_pColorPage = new CSetColorPage();
50 AddPage(m_pMainPage);
51 AddPage(m_pColorPage);
54 void CSettings::RemovePropPages()
56 delete m_pMainPage;
57 m_pMainPage = NULL;
58 delete m_pColorPage;
59 m_pColorPage = NULL;
62 void CSettings::SaveData()
64 m_pMainPage->SaveData();
65 m_pColorPage->SaveData();
68 BOOL CSettings::IsReloadNeeded() const
70 BOOL bReload = FALSE;
71 bReload = (m_pMainPage->m_bReloadNeeded || bReload);
72 bReload = (m_pColorPage->m_bReloadNeeded || bReload);
73 return bReload;
76 BEGIN_MESSAGE_MAP(CSettings, CPropertySheet)
77 END_MESSAGE_MAP()
80 // CSettings message handlers
82 BOOL CSettings::OnInitDialog()
84 BOOL bResult = CPropertySheet::OnInitDialog();
85 return bResult;