2007-03-27 17:47:10 +00:00
|
|
|
/*
|
|
|
|
* CiderPress
|
|
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
|
|
* See the file LICENSE for distribution terms.
|
|
|
|
*/
|
|
|
|
#if 0
|
|
|
|
/*
|
|
|
|
* Support for entering registration data.
|
|
|
|
*/
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "EnterRegDialog.h"
|
|
|
|
#include "MyApp.h"
|
|
|
|
#include "HelpTopics.h"
|
|
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(EnterRegDialog, CDialog)
|
2014-11-04 00:26:53 +00:00
|
|
|
ON_EN_CHANGE(IDC_REGENTER_USER, OnUserChange)
|
|
|
|
ON_EN_CHANGE(IDC_REGENTER_COMPANY, OnCompanyChange)
|
|
|
|
ON_EN_CHANGE(IDC_REGENTER_REG, OnRegChange)
|
|
|
|
ON_COMMAND(IDHELP, OnHelp)
|
2007-03-27 17:47:10 +00:00
|
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Disable the "OK" button initially.
|
|
|
|
*/
|
2014-11-21 21:18:20 +00:00
|
|
|
BOOL EnterRegDialog::OnInitDialog(void)
|
2007-03-27 17:47:10 +00:00
|
|
|
{
|
2014-11-04 00:26:53 +00:00
|
|
|
//CWnd* pWnd = GetDlgItem(IDOK);
|
2014-11-18 05:13:13 +00:00
|
|
|
//ASSERT(pWnd != NULL);
|
2014-11-04 00:26:53 +00:00
|
|
|
//pWnd->EnableWindow(false);
|
|
|
|
|
|
|
|
fMyEdit.ReplaceDlgCtrl(this, IDC_REGENTER_REG);
|
|
|
|
fMyEdit.SetProperties(MyEdit::kCapsOnly | MyEdit::kNoWhiteSpace);
|
|
|
|
|
|
|
|
/* place a reasonable cap on the field lengths, since these go
|
|
|
|
straight into the registry */
|
|
|
|
CEdit* pEdit;
|
|
|
|
pEdit = (CEdit*) GetDlgItem(IDC_REGENTER_USER);
|
2014-11-18 05:13:13 +00:00
|
|
|
ASSERT(pEdit != NULL);
|
2014-11-04 00:26:53 +00:00
|
|
|
pEdit->SetLimitText(120);
|
|
|
|
pEdit = (CEdit*) GetDlgItem(IDC_REGENTER_COMPANY);
|
2014-11-18 05:13:13 +00:00
|
|
|
ASSERT(pEdit != NULL);
|
2014-11-04 00:26:53 +00:00
|
|
|
pEdit->SetLimitText(120);
|
|
|
|
pEdit = (CEdit*) GetDlgItem(IDC_REGENTER_REG);
|
2014-11-18 05:13:13 +00:00
|
|
|
ASSERT(pEdit != NULL);
|
2014-11-04 00:26:53 +00:00
|
|
|
pEdit->SetLimitText(40);
|
|
|
|
|
|
|
|
return CDialog::OnInitDialog();
|
2007-03-27 17:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Shuffle data in and out of the edit fields. We do an extra validation
|
|
|
|
* step on the registration key before accepting it.
|
|
|
|
*/
|
2014-11-21 21:18:20 +00:00
|
|
|
void EnterRegDialog::DoDataExchange(CDataExchange* pDX)
|
2007-03-27 17:47:10 +00:00
|
|
|
{
|
2014-11-04 00:26:53 +00:00
|
|
|
DDX_Text(pDX, IDC_REGENTER_USER, fUserName);
|
|
|
|
DDX_Text(pDX, IDC_REGENTER_COMPANY, fCompanyName);
|
|
|
|
DDX_Text(pDX, IDC_REGENTER_REG, fRegKey);
|
|
|
|
|
|
|
|
/* validate the reg field */
|
|
|
|
if (pDX->m_bSaveAndValidate) {
|
|
|
|
ASSERT(!fUserName.IsEmpty());
|
|
|
|
ASSERT(!fRegKey.IsEmpty());
|
|
|
|
|
|
|
|
if (gMyApp.fRegistry.IsValidRegistrationKey(fUserName, fCompanyName,
|
|
|
|
fRegKey))
|
|
|
|
{
|
2014-11-18 21:05:15 +00:00
|
|
|
LOGI("Correct key entered: '%ls' '%ls' '%ls'",
|
2014-11-04 00:26:53 +00:00
|
|
|
(LPCTSTR)fUserName, (LPCTSTR)fCompanyName, (LPCTSTR)fRegKey);
|
|
|
|
} else {
|
2014-11-18 21:05:15 +00:00
|
|
|
LOGI("Incorrect key entered, rejecting");
|
2014-11-04 00:26:53 +00:00
|
|
|
CString appName, msg;
|
|
|
|
appName.LoadString(IDS_MB_APP_NAME);
|
|
|
|
msg.LoadString(IDS_REG_BAD_ENTRY);
|
|
|
|
MessageBox(msg, appName, MB_ICONWARNING|MB_OK);
|
|
|
|
pDX->Fail();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
OnUserChange();
|
|
|
|
OnCompanyChange();
|
|
|
|
OnRegChange();
|
|
|
|
}
|
2007-03-27 17:47:10 +00:00
|
|
|
}
|
|
|
|
|
2014-11-21 21:18:20 +00:00
|
|
|
void EnterRegDialog::HandleEditChange(int editID, int crcID)
|
2007-03-27 17:47:10 +00:00
|
|
|
{
|
2014-11-04 00:26:53 +00:00
|
|
|
CString userStr, regStr;
|
|
|
|
CEdit* pEdit;
|
|
|
|
CWnd* pWnd;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update the CRC for the modified control.
|
|
|
|
*/
|
|
|
|
pEdit = (CEdit*) GetDlgItem(editID);
|
2014-11-18 05:13:13 +00:00
|
|
|
ASSERT(pEdit != NULL);
|
2014-11-04 00:26:53 +00:00
|
|
|
pEdit->GetWindowText(userStr);
|
|
|
|
unsigned short crc;
|
|
|
|
crc = gMyApp.fRegistry.ComputeStringCRC(userStr);
|
|
|
|
userStr.Format("%04X", crc);
|
|
|
|
pWnd = GetDlgItem(crcID);
|
2014-11-18 05:13:13 +00:00
|
|
|
ASSERT(pWnd != NULL);
|
2014-11-04 00:26:53 +00:00
|
|
|
pWnd->SetWindowText(userStr);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Update the OK button.
|
|
|
|
*/
|
|
|
|
pEdit = (CEdit*) GetDlgItem(IDC_REGENTER_USER);
|
2014-11-18 05:13:13 +00:00
|
|
|
ASSERT(pEdit != NULL);
|
2014-11-04 00:26:53 +00:00
|
|
|
pEdit->GetWindowText(userStr);
|
|
|
|
|
|
|
|
pEdit = (CEdit*) GetDlgItem(IDC_REGENTER_REG);
|
2014-11-18 05:13:13 +00:00
|
|
|
ASSERT(pEdit != NULL);
|
2014-11-04 00:26:53 +00:00
|
|
|
pEdit->GetWindowText(regStr);
|
|
|
|
|
|
|
|
pWnd = GetDlgItem(IDOK);
|
2014-11-18 05:13:13 +00:00
|
|
|
ASSERT(pWnd != NULL);
|
2014-11-04 00:26:53 +00:00
|
|
|
pWnd->EnableWindow(!userStr.IsEmpty() && !regStr.IsEmpty());
|
2007-03-27 17:47:10 +00:00
|
|
|
}
|
|
|
|
|
2014-11-21 21:18:20 +00:00
|
|
|
void EnterRegDialog::OnUserChange(void)
|
2007-03-27 17:47:10 +00:00
|
|
|
{
|
2014-11-04 00:26:53 +00:00
|
|
|
HandleEditChange(IDC_REGENTER_USER, IDC_REGENTER_USERCRC);
|
2007-03-27 17:47:10 +00:00
|
|
|
}
|
2014-11-21 21:18:20 +00:00
|
|
|
|
|
|
|
void EnterRegDialog::OnCompanyChange(void)
|
2007-03-27 17:47:10 +00:00
|
|
|
{
|
2014-11-04 00:26:53 +00:00
|
|
|
HandleEditChange(IDC_REGENTER_COMPANY, IDC_REGENTER_COMPCRC);
|
2007-03-27 17:47:10 +00:00
|
|
|
}
|
2014-11-21 21:18:20 +00:00
|
|
|
|
|
|
|
void EnterRegDialog::OnRegChange(void)
|
2007-03-27 17:47:10 +00:00
|
|
|
{
|
2014-11-04 00:26:53 +00:00
|
|
|
HandleEditChange(IDC_REGENTER_REG, IDC_REGENTER_REGCRC);
|
2007-03-27 17:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-21 21:18:20 +00:00
|
|
|
void EnterRegDialog::OnHelp(void)
|
2007-03-27 17:47:10 +00:00
|
|
|
{
|
2014-11-04 00:26:53 +00:00
|
|
|
WinHelp(HELP_TOPIC_ENTER_REG_DATA, HELP_CONTEXT);
|
2007-03-27 17:47:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-11-21 21:18:20 +00:00
|
|
|
/*static*/ int EnterRegDialog::GetRegInfo(CWnd* pWnd)
|
2007-03-27 17:47:10 +00:00
|
|
|
{
|
2014-11-04 00:26:53 +00:00
|
|
|
CString user, company, reg, versions, expire;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get current data (if any). This call only fails if the registry itself
|
|
|
|
* appears to be generally inaccessible.
|
|
|
|
*/
|
|
|
|
if (gMyApp.fRegistry.GetRegistration(&user, &company, ®, &versions,
|
|
|
|
&expire) != 0)
|
|
|
|
{
|
|
|
|
CString msg;
|
|
|
|
msg.LoadString(IDS_REG_FAILURE);
|
|
|
|
ShowFailureMsg(pWnd, msg, IDS_FAILED);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Post the dialog.
|
|
|
|
*/
|
|
|
|
EnterRegDialog dlg(pWnd);
|
|
|
|
int result = -1;
|
|
|
|
|
|
|
|
if (dlg.DoModal() == IDOK) {
|
|
|
|
user = dlg.fUserName;
|
|
|
|
company = dlg.fCompanyName;
|
|
|
|
reg = dlg.fRegKey;
|
|
|
|
|
|
|
|
/* data was validated by EnterRegDialog, so just save it to registry */
|
|
|
|
if (gMyApp.fRegistry.SetRegistration(user, company, reg, versions,
|
|
|
|
expire) != 0)
|
|
|
|
{
|
|
|
|
CString msg;
|
|
|
|
msg.LoadString(IDS_REG_FAILURE);
|
|
|
|
ShowFailureMsg(pWnd, msg, IDS_FAILED);
|
|
|
|
} else {
|
|
|
|
result = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2007-03-27 17:47:10 +00:00
|
|
|
}
|
|
|
|
|
2014-11-21 21:18:20 +00:00
|
|
|
#endif /*0*/
|