You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
1.8 KiB
95 lines
1.8 KiB
// Copyright (c) 2001 Microsoft Corporation
|
|
//
|
|
// File: RemoteDesktopPage.h
|
|
//
|
|
// Synopsis: Defines the Remote Desktop page
|
|
// for the CYS Wizard
|
|
//
|
|
// History: 12/18/2001 JeffJon Created
|
|
|
|
|
|
#include "pch.h"
|
|
#include "resource.h"
|
|
|
|
#include "InstallationUnitProvider.h"
|
|
#include "RemoteDesktopPage.h"
|
|
#include "state.h"
|
|
|
|
static PCWSTR REMOTEDESKTOP_PAGE_HELP = L"cys.chm::/cys_configuring_remote_desktop_server.htm";
|
|
|
|
RemoteDesktopPage::RemoteDesktopPage()
|
|
:
|
|
CYSWizardPage(
|
|
IDD_REMOTE_DESKTOP_PAGE,
|
|
IDS_REMOTE_DESKTOP_TITLE,
|
|
IDS_REMOTE_DESKTOP_SUBTITLE,
|
|
REMOTEDESKTOP_PAGE_HELP)
|
|
{
|
|
LOG_CTOR(RemoteDesktopPage);
|
|
}
|
|
|
|
|
|
|
|
RemoteDesktopPage::~RemoteDesktopPage()
|
|
{
|
|
LOG_DTOR(RemoteDesktopPage);
|
|
}
|
|
|
|
|
|
void
|
|
RemoteDesktopPage::OnInit()
|
|
{
|
|
LOG_FUNCTION(RemoteDesktopPage::OnInit);
|
|
|
|
}
|
|
|
|
|
|
bool
|
|
RemoteDesktopPage::OnSetActive()
|
|
{
|
|
LOG_FUNCTION(RemoteDesktopPage::OnSetActive);
|
|
|
|
Win::PropSheet_SetWizButtons(
|
|
Win::GetParent(hwnd),
|
|
PSWIZB_NEXT | PSWIZB_BACK);
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
int
|
|
RemoteDesktopPage::Validate()
|
|
{
|
|
LOG_FUNCTION(RemoteDesktopPage::Validate);
|
|
|
|
int nextPage = -1;
|
|
|
|
InstallationUnitProvider::GetInstance().GetRemoteAdminInstallationUnit().SetEnableRemoteDesktop(
|
|
Win::Button_GetCheck(
|
|
Win::GetDlgItem(hwnd, IDC_ENABLE_REMOTE_DESKTOP_CHECK)));
|
|
|
|
SAKInstallationUnit& sakInstall =
|
|
InstallationUnitProvider::GetInstance().GetSAKInstallationUnit();
|
|
|
|
if (!State::GetInstance().Is64Bit() &&
|
|
(!sakInstall.IsNASAdminInstalled() ||
|
|
!sakInstall.IsWebAdminInstalled()))
|
|
{
|
|
nextPage = IDD_SAK_PAGE;
|
|
}
|
|
else
|
|
{
|
|
nextPage = IDD_MILESTONE_PAGE;
|
|
}
|
|
|
|
LOG(String::format(
|
|
L"nextPage = %1!d!",
|
|
nextPage));
|
|
|
|
return nextPage;
|
|
}
|
|
|
|
|
|
|
|
|
|
|