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.
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
)
32 CSettings::CSettings(LPCTSTR pszCaption
, CWnd
* pParentWnd
, UINT iSelectPage
)
33 : CPropertySheet(pszCaption
, pParentWnd
, iSelectPage
)
40 CSettings::~CSettings()
45 void CSettings::AddPropPages()
47 m_pMainPage
= new CSetMainPage();
48 m_pColorPage
= new CSetColorPage();
51 AddPage(m_pColorPage
);
54 void CSettings::RemovePropPages()
62 void CSettings::SaveData()
64 m_pMainPage
->SaveData();
65 m_pColorPage
->SaveData();
68 BOOL
CSettings::IsReloadNeeded() const
71 bReload
= (m_pMainPage
->m_bReloadNeeded
|| bReload
);
72 bReload
= (m_pColorPage
->m_bReloadNeeded
|| bReload
);
76 BEGIN_MESSAGE_MAP(CSettings
, CPropertySheet
)
80 // CSettings message handlers
82 BOOL
CSettings::OnInitDialog()
84 BOOL bResult
= CPropertySheet::OnInitDialog();