Add basic first start wizard
[TortoiseGit.git] / src / TortoiseProc / FirstStartWizard.cpp
blobfe880e7436ba7e63db4d025184960a09e64223b4
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2016 - 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.
19 #include "stdafx.h"
20 #include "TortoiseProc.h"
21 #include "FirstStartWizard.h"
22 #include "TaskbarUUID.h"
24 IMPLEMENT_DYNAMIC(CFirstStartWizard, CStandAloneDialogTmpl<CPropertySheetEx>)
26 CFirstStartWizard::CFirstStartWizard(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
27 :CStandAloneDialogTmpl<CPropertySheetEx>(nIDCaption, pParentWnd)
29 SetWizardMode();
30 SetActivePage(iSelectPage);
31 AddPage(&start);
32 AddPage(&user);
34 m_psh.dwFlags |= PSH_WIZARD97 | PSH_HEADER;
35 m_psh.pszbmHeader = L"TortoiseGit";
37 m_psh.hInstance = AfxGetResourceHandle();
40 CFirstStartWizard::~CFirstStartWizard()
44 BEGIN_MESSAGE_MAP(CFirstStartWizard, CStandAloneDialogTmpl<CPropertySheetEx>)
45 ON_WM_SYSCOMMAND()
46 ON_COMMAND(IDCANCEL, &CFirstStartWizard::OnCancel)
47 END_MESSAGE_MAP()
49 // CFirstStartWizard message handlers
50 BOOL CFirstStartWizard::OnInitDialog()
52 BOOL bResult = __super::OnInitDialog();
53 CAppUtils::MarkWindowAsUnpinnable(m_hWnd);
55 if (!m_pParentWnd && hWndExplorer)
56 CenterWindow(CWnd::FromHandle(hWndExplorer));
58 return bResult;
61 void CFirstStartWizard::OnSysCommand(UINT nID, LPARAM lParam)
63 switch (nID & 0xFFF0)
65 case SC_CLOSE:
67 CFirstStartWizardBasePage* page = (CFirstStartWizardBasePage*)GetActivePage();
68 if (page && !page->OkToCancel())
69 break;
71 // fall through
72 default:
73 __super::OnSysCommand(nID, lParam);
74 break;
78 void CFirstStartWizard::OnCancel()
80 CFirstStartWizardBasePage* page = (CFirstStartWizardBasePage*)GetActivePage();
81 if (!page || page->OkToCancel())
82 Default();