1999-02-03 16:49:10 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-02 05:38:33 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1999-02-03 16:49:10 +00:00
|
|
|
*
|
1999-11-02 05:38:33 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1999-02-03 16:49:10 +00:00
|
|
|
*
|
1999-11-02 05:38:33 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-02-03 16:49:10 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-02 05:38:33 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-02-03 16:49:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// WizardUI.cpp : implementation file
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
1999-10-12 00:56:51 +00:00
|
|
|
#include "afxmt.h"
|
|
|
|
|
1999-10-22 23:42:02 +00:00
|
|
|
#include "globals.h"
|
1999-02-03 16:49:10 +00:00
|
|
|
#include "WizardMachine.h"
|
1999-10-02 01:28:27 +00:00
|
|
|
#include "fstream.h"
|
1999-05-19 03:31:11 +00:00
|
|
|
#include "ImgDlg.h"
|
|
|
|
#include "SumDlg.h"
|
1999-02-03 16:49:10 +00:00
|
|
|
#include "NavText.h"
|
|
|
|
#include "NewDialog.h"
|
|
|
|
#include "ProgDlgThread.h"
|
1999-10-12 00:56:51 +00:00
|
|
|
#include "PropSheet.h"
|
|
|
|
#include "WizardUI.h"
|
1999-10-12 01:54:00 +00:00
|
|
|
#include "Interpret.h"
|
1999-10-12 00:56:51 +00:00
|
|
|
|
1999-02-03 16:49:10 +00:00
|
|
|
#include <direct.h>
|
1999-06-17 04:44:53 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
1999-02-03 16:49:10 +00:00
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
#define new DEBUG_NEW
|
|
|
|
#undef THIS_FILE
|
|
|
|
static char THIS_FILE[] = __FILE__;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CWizardUI property page
|
|
|
|
extern CWizardMachineApp theApp;
|
1999-10-12 01:54:00 +00:00
|
|
|
extern CInterpret *theInterpreter;
|
1999-02-03 16:49:10 +00:00
|
|
|
extern NODE *CurrentNode;
|
|
|
|
extern HBITMAP hBitmap;
|
|
|
|
extern CString Path;
|
|
|
|
extern char iniFilePath[MAX_SIZE];
|
|
|
|
|
|
|
|
extern BOOL inNext;
|
|
|
|
extern BOOL inPrev;
|
|
|
|
extern NODE* WizardTree;
|
|
|
|
extern char currDirPath[MAX_SIZE];
|
|
|
|
extern char customizationPath[MAX_SIZE];
|
|
|
|
|
1999-10-13 00:28:10 +00:00
|
|
|
extern BOOL IsNewValue;
|
1999-10-23 00:38:06 +00:00
|
|
|
BOOL Validate = TRUE;
|
1999-10-13 00:28:10 +00:00
|
|
|
|
1999-02-03 16:49:10 +00:00
|
|
|
extern _declspec (dllimport) WIDGET ptr_ga[1000];
|
|
|
|
CCriticalSection nextSyncCodeSegment;
|
|
|
|
CCriticalSection prevSyncCodeSegment;
|
|
|
|
|
|
|
|
CSingleLock nextLock(&nextSyncCodeSegment);
|
|
|
|
CSingleLock prevLock(&prevSyncCodeSegment);
|
|
|
|
|
|
|
|
BOOL isBuildInstaller;
|
|
|
|
BOOL isCDLayoutCreated;
|
1999-11-01 18:10:26 +00:00
|
|
|
UINT nID;
|
|
|
|
UINT wNotifyCode;
|
1999-02-03 16:49:10 +00:00
|
|
|
|
|
|
|
//extern CProgDialog myProgDialog;
|
|
|
|
|
|
|
|
IMPLEMENT_DYNCREATE(CWizardUI, CPropertyPage)
|
|
|
|
|
|
|
|
CWizardUI::CWizardUI() : CPropertyPage(CWizardUI::IDD)
|
|
|
|
{
|
|
|
|
//{{AFX_DATA_INIT(CWizardUI)
|
|
|
|
// NOTE: the ClassWizard will add member initialization here
|
|
|
|
//}}AFX_DATA_INIT
|
|
|
|
}
|
|
|
|
|
|
|
|
CWizardUI::~CWizardUI()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CWizardUI::DoDataExchange(CDataExchange* pDX)
|
|
|
|
{
|
|
|
|
CPropertyPage::DoDataExchange(pDX);
|
|
|
|
//{{AFX_DATA_MAP(CWizardUI)
|
|
|
|
// NOTE: the ClassWizard will add DDX and DDV calls here
|
|
|
|
//}}AFX_DATA_MAP
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CWizardUI, CPropertyPage)
|
|
|
|
//{{AFX_MSG_MAP(CWizardUI)
|
|
|
|
ON_WM_PAINT()
|
|
|
|
ON_WM_ERASEBKGND()
|
|
|
|
ON_WM_CTLCOLOR()
|
|
|
|
//}}AFX_MSG_MAP
|
|
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CWizardUI message handlers
|
|
|
|
|
|
|
|
BOOL CWizardUI::OnSetActive()
|
|
|
|
{
|
1999-10-14 01:21:01 +00:00
|
|
|
char* TempTitle = (char *)(LPCTSTR)(CurrentNode->localVars->title);
|
|
|
|
CString WizTitle = theInterpreter->replaceVars(TempTitle,NULL);
|
1999-10-11 23:47:49 +00:00
|
|
|
SetForegroundWindow();
|
1999-10-14 01:21:01 +00:00
|
|
|
(AfxGetMainWnd( ))->SetWindowText(WizTitle);
|
1999-06-17 04:44:53 +00:00
|
|
|
if (!(CurrentNode->isWidgetsSorted)) {
|
1999-02-03 16:49:10 +00:00
|
|
|
SortWidgetsForTabOrder();
|
|
|
|
}
|
|
|
|
CreateControls();
|
|
|
|
DisplayControls();
|
|
|
|
|
|
|
|
CPropSheet* pSheet = (CPropSheet*) GetParent();
|
|
|
|
ASSERT_VALID(pSheet);
|
|
|
|
|
1999-10-15 22:55:06 +00:00
|
|
|
pSheet->GetDlgItem(ID_WIZBACK)->SetWindowText(CurrentNode->localVars->wizbut->back);
|
|
|
|
pSheet->GetDlgItem(ID_WIZNEXT)->SetWindowText(CurrentNode->localVars->wizbut->next);
|
|
|
|
pSheet->GetDlgItem(IDCANCEL)->SetWindowText(CurrentNode->localVars->wizbut->cancel);
|
|
|
|
|
|
|
|
// Using the ini files to set the value as mentioned above
|
1999-10-29 18:35:58 +00:00
|
|
|
//we used to check for a particular value previously and then set the values
|
|
|
|
// not doing it any more cuz - the wizard neednt know the values of the buttons in inifiles
|
|
|
|
|
1999-10-25 05:14:12 +00:00
|
|
|
if (theApp.IsLastNode(CurrentNode))
|
|
|
|
{
|
|
|
|
pSheet->SetWizardButtons(PSWIZB_BACK | PSWIZB_FINISH);
|
|
|
|
pSheet->GetDlgItem(ID_WIZFINISH)->SetWindowText(CurrentNode->localVars->wizbut->next);
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (theApp.IsFirstNode(CurrentNode))
|
|
|
|
{
|
|
|
|
pSheet->SetWizardButtons(PSWIZB_NEXT);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pSheet->SetWizardButtons(PSWIZB_BACK | PSWIZB_NEXT);
|
|
|
|
}
|
1999-02-03 16:49:10 +00:00
|
|
|
|
|
|
|
// TODO: Add your specialized code here and/or call the base class
|
1999-05-19 03:31:11 +00:00
|
|
|
// SetModified(1);
|
1999-02-03 16:49:10 +00:00
|
|
|
return CPropertyPage::OnSetActive();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BOOL CWizardUI::OnKillActive()
|
|
|
|
{
|
|
|
|
// TODO: Add your specialized code here and/or call the base class
|
|
|
|
|
|
|
|
return CPropertyPage::OnKillActive();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LRESULT CWizardUI::OnWizardBack()
|
|
|
|
{
|
|
|
|
// TODO: Add your specialized code here and/or call the base class
|
1999-10-23 00:38:06 +00:00
|
|
|
if (!Validate)
|
|
|
|
{
|
|
|
|
AfxMessageBox("You Must Enter Only Numeric Values", MB_OK);
|
|
|
|
return FALSE;
|
|
|
|
}
|
1999-02-03 16:49:10 +00:00
|
|
|
if (!prevLock.IsLocked())
|
|
|
|
{
|
|
|
|
prevLock.Lock();
|
|
|
|
|
|
|
|
UpdateGlobals();
|
|
|
|
DestroyCurrentScreenWidgets();
|
1999-09-30 00:44:28 +00:00
|
|
|
while (!theApp.GoToPrevNode())
|
1999-10-02 01:28:27 +00:00
|
|
|
0; /* do nothing */
|
1999-02-03 16:49:10 +00:00
|
|
|
|
|
|
|
prevLock.Unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
return CPropertyPage::OnWizardBack();
|
|
|
|
}
|
|
|
|
|
|
|
|
LRESULT CWizardUI::OnWizardNext()
|
|
|
|
{
|
|
|
|
// TODO: Add your specialized code here and/or call the base class
|
1999-10-23 00:38:06 +00:00
|
|
|
if (!Validate)
|
|
|
|
{
|
|
|
|
AfxMessageBox("You Must Enter Only Numeric Values", MB_OK);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
1999-02-03 16:49:10 +00:00
|
|
|
if (!nextLock.IsLocked())
|
|
|
|
{
|
|
|
|
nextLock.Lock();
|
1999-10-29 18:35:58 +00:00
|
|
|
#if 0
|
1999-02-03 16:49:10 +00:00
|
|
|
if (isBuildInstaller) {
|
|
|
|
isCDLayoutCreated = FALSE;
|
|
|
|
|
1999-02-04 00:01:38 +00:00
|
|
|
/**
|
1999-02-03 16:49:10 +00:00
|
|
|
VERIFY(hModule = ::LoadLibrary("IBEngine.dll"));
|
|
|
|
VERIFY(
|
|
|
|
pMyDllPath =
|
|
|
|
(MYDLLPATH*)::GetProcAddress(
|
|
|
|
(HMODULE) hModule, "SetPath")
|
|
|
|
);
|
|
|
|
|
|
|
|
(*pMyDllPath)((char*)(LPCTSTR)Path);
|
|
|
|
LoadGlobals();
|
|
|
|
|
|
|
|
VERIFY(
|
|
|
|
pMyFunction =
|
|
|
|
(MYFUNCTION*)::GetProcAddress(
|
|
|
|
(HMODULE) hModule, "BuildInstallers")
|
|
|
|
);
|
|
|
|
(*pMyFunction)();
|
1999-02-04 00:01:38 +00:00
|
|
|
**/
|
|
|
|
MessageBox("CD Image would be created", "OK", MB_OK);
|
1999-02-03 16:49:10 +00:00
|
|
|
isBuildInstaller = FALSE;
|
|
|
|
}
|
1999-10-29 18:35:58 +00:00
|
|
|
#endif
|
1999-02-03 16:49:10 +00:00
|
|
|
UpdateGlobals();
|
|
|
|
DestroyCurrentScreenWidgets();
|
1999-09-30 00:44:28 +00:00
|
|
|
while (!theApp.GoToNextNode())
|
1999-10-02 01:28:27 +00:00
|
|
|
0; /* do nothing */
|
1999-02-03 16:49:10 +00:00
|
|
|
|
|
|
|
nextLock.Unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
return CPropertyPage::OnWizardNext();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void CWizardUI::OnPaint()
|
|
|
|
{
|
|
|
|
CPaintDC dc(this);
|
|
|
|
//dc(this); // device context for painting
|
|
|
|
|
|
|
|
// TODO: Add your message handler code here
|
|
|
|
|
|
|
|
CRect rect(0, 0, 4, 8);
|
|
|
|
MapDialogRect(&rect);
|
|
|
|
|
|
|
|
int baseWidth = rect.Width();
|
|
|
|
int baseHeight = rect.Height();
|
|
|
|
|
|
|
|
if (containsImage) {
|
|
|
|
CClientDC cdc(this);
|
|
|
|
HBITMAP hbmpOld;
|
|
|
|
CDC dcMem;
|
|
|
|
|
|
|
|
dcMem.CreateCompatibleDC(&cdc);
|
|
|
|
|
|
|
|
if (CurrentNode) {
|
|
|
|
for(int i=0; i < CurrentNode->numImages; i++)
|
|
|
|
{
|
|
|
|
hbmpOld = (HBITMAP)::SelectObject(dcMem, CurrentNode->images[i]->hBitmap);
|
|
|
|
|
|
|
|
dc.BitBlt((int)((float)(CurrentNode->images[i]->location.x) * (float)baseWidth / 4.0),
|
|
|
|
(int)((float)(CurrentNode->images[i]->location.y) * (float)baseHeight / 8.0),
|
|
|
|
(int)((float)(CurrentNode->images[i]->size.width) * (float)baseWidth / 4.0),
|
|
|
|
(int)((float)(CurrentNode->images[i]->size.height) * (float)baseHeight / 8.0),
|
|
|
|
&dcMem,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
SRCCOPY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do not call CPropertyPage::OnPaint() for painting messages
|
|
|
|
}
|
|
|
|
|
1999-09-30 00:29:48 +00:00
|
|
|
BOOL CWizardUI::ActCommand(WIDGET *curWidget)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-09-30 00:29:48 +00:00
|
|
|
BOOL CWizardUI::SortList(WIDGET *curWidget)
|
|
|
|
{
|
|
|
|
#ifdef ACTUALLYNEEDTODOSOMETHINGLIKETHIS
|
1999-10-22 23:42:02 +00:00
|
|
|
WIDGET* listWidget = findWidget((char*) (LPCTSTR)curWidget->target);
|
1999-09-30 00:29:48 +00:00
|
|
|
int count = ((CListBox*)(listWidget->control))->GetCount();
|
|
|
|
char* items[MAX_SIZE];
|
|
|
|
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
items[i] = new char[MAX_SIZE];
|
|
|
|
((CListBox*)(listWidget->control))->GetText(i, items[i]);
|
|
|
|
}
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-05-19 03:31:11 +00:00
|
|
|
|
1999-09-30 00:29:48 +00:00
|
|
|
// Please use qsort() if this code becomes active again...
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-09-30 00:29:48 +00:00
|
|
|
if (curWidget->action.function == "SortByName")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (curWidget->action.function == "SortByPhone")
|
|
|
|
{
|
|
|
|
}
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-09-30 00:29:48 +00:00
|
|
|
((CListBox*)(listWidget->control))->ResetContent();
|
|
|
|
for (int k = 0; k < count; k++) {
|
|
|
|
((CListBox*)(listWidget->control))->AddString(CString(items[k]));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return TRUE;
|
|
|
|
}
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-19 20:30:18 +00:00
|
|
|
BOOL CWizardUI::SetDescription(WIDGET *w)
|
|
|
|
{
|
1999-10-22 23:42:02 +00:00
|
|
|
WIDGET *t = findWidget((char *) (LPCTSTR) w->target);
|
2000-03-28 19:48:46 +00:00
|
|
|
if (!t || (t->type != "Text" && t->type != "BoldText" && t->type != "GlobalText"))
|
1999-10-19 20:30:18 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
int selected = 0;
|
|
|
|
if (w->type == "ListBox")
|
|
|
|
selected = ((CListBox *)w->control)->GetCurSel();
|
|
|
|
else if (w->type == "CheckListBox")
|
|
|
|
selected = ((CCheckListBox *)w->control)->GetCurSel();
|
2000-07-25 20:25:54 +00:00
|
|
|
else if ((w->type == "ComboBox") || (w->type == "DropBox"))
|
1999-10-19 20:30:18 +00:00
|
|
|
selected = ((CComboBox *)w->control)->GetCurSel();
|
|
|
|
|
|
|
|
if (selected == -1 || selected >= w->numOfOptDesc)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
((CEdit *)t->control)->SetWindowText(w->optDesc.value[selected]);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
1999-09-30 00:29:48 +00:00
|
|
|
BOOL CWizardUI::OnCommand(WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
1999-11-01 18:10:26 +00:00
|
|
|
nID = LOWORD(wParam);
|
|
|
|
wNotifyCode = HIWORD(wParam);
|
1999-11-05 00:36:17 +00:00
|
|
|
WIDGET *w;
|
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
// Get screen values exchanged
|
|
|
|
UpdateData(TRUE);
|
|
|
|
|
1999-09-30 00:29:48 +00:00
|
|
|
for(int i=0; i < CurrentNode->numWidgets; i++)
|
|
|
|
{
|
|
|
|
WIDGET* curWidget = CurrentNode->pageWidgets[i];
|
1999-10-19 02:41:48 +00:00
|
|
|
if (curWidget->widgetID != nID)
|
1999-09-30 00:29:48 +00:00
|
|
|
continue;
|
1999-10-23 00:38:06 +00:00
|
|
|
if (curWidget->type == "EditBox")
|
|
|
|
{
|
|
|
|
if (wNotifyCode == EN_KILLFOCUS)
|
|
|
|
if(((CEdit*)curWidget->control)->GetModify())
|
|
|
|
{
|
|
|
|
if (((CString)(curWidget->action.onCommand)).GetLength() > 0)
|
|
|
|
theInterpreter->interpret(curWidget->action.onCommand, curWidget);
|
|
|
|
// AfxMessageBox("modified", MB_OK);
|
|
|
|
// ((CEdit*)curWidget->control)->SetModify(FALSE);
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-23 00:38:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (curWidget->action.onCommand)
|
1999-11-05 00:36:17 +00:00
|
|
|
{
|
|
|
|
// Save any screen changes to affected widgets
|
|
|
|
w = findWidget(curWidget->target);
|
|
|
|
if (w)
|
|
|
|
w->value = GetScreenValue(w);
|
|
|
|
curWidget->value = GetScreenValue(curWidget);
|
|
|
|
|
|
|
|
// Evaluate new state
|
1999-10-23 00:38:06 +00:00
|
|
|
theInterpreter->interpret(curWidget->action.onCommand, curWidget);
|
1999-10-19 20:30:18 +00:00
|
|
|
|
1999-11-05 00:36:17 +00:00
|
|
|
// Reflect new state into screen
|
|
|
|
UpdateScreenWidget(curWidget);
|
|
|
|
if (w)
|
|
|
|
UpdateScreenWidget(w);
|
|
|
|
}
|
|
|
|
|
1999-10-23 00:38:06 +00:00
|
|
|
if (curWidget->numOfOptDesc > 0)
|
|
|
|
SetDescription(curWidget);
|
|
|
|
}
|
1999-09-30 00:29:48 +00:00
|
|
|
break;
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return CPropertyPage::OnCommand(wParam, lParam);
|
|
|
|
}
|
|
|
|
|
1999-09-30 00:29:48 +00:00
|
|
|
// This is a comparison function for the TabOrder qsort() call
|
|
|
|
// Return -1 for "less than", 0 for "equals", and 1 for "greater than"
|
|
|
|
int TabSort(const void *w1, const void *w2)
|
|
|
|
{
|
|
|
|
WIDGET *widget1 = *((WIDGET **) w1);
|
|
|
|
WIDGET *widget2 = *((WIDGET **) w2);
|
|
|
|
|
|
|
|
// Primary key is y coordinate
|
|
|
|
if (widget1->location.y > widget2->location.y)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (widget1->location.y < widget2->location.y)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
// Primary key is equal, Secondary key is x coordinate
|
1999-10-18 19:39:42 +00:00
|
|
|
return (widget1->location.x - widget2->location.x);
|
1999-09-30 00:29:48 +00:00
|
|
|
}
|
|
|
|
|
1999-02-03 16:49:10 +00:00
|
|
|
void CWizardUI::SortWidgetsForTabOrder()
|
|
|
|
{
|
1999-09-30 00:29:48 +00:00
|
|
|
qsort(CurrentNode->pageWidgets, CurrentNode->numWidgets, sizeof(WIDGET *), TabSort);
|
1999-02-03 16:49:10 +00:00
|
|
|
CurrentNode->isWidgetsSorted = TRUE;
|
|
|
|
}
|
|
|
|
|
1999-10-19 00:27:21 +00:00
|
|
|
void CWizardUI::EnableWidget(WIDGET *curWidget)
|
|
|
|
{
|
|
|
|
// all controls are enabled by default, only do something if not enabled...
|
|
|
|
int enabled = TRUE;
|
1999-10-19 03:46:54 +00:00
|
|
|
if (!curWidget->action.onInit.IsEmpty())
|
1999-10-19 00:27:21 +00:00
|
|
|
{
|
1999-10-19 01:30:18 +00:00
|
|
|
// Cheat the interpret overhead since this is called a lot!
|
1999-11-05 00:36:17 +00:00
|
|
|
CString enableStr = theInterpreter->replaceVars(curWidget->action.onInit,NULL);
|
1999-10-19 01:30:18 +00:00
|
|
|
if (enableStr == "Enable(0)")
|
1999-10-19 00:27:21 +00:00
|
|
|
enabled = FALSE;
|
1999-10-19 02:41:48 +00:00
|
|
|
else if (enableStr == "Enable2()")
|
|
|
|
enabled = FALSE;
|
1999-10-19 00:27:21 +00:00
|
|
|
curWidget->control->EnableWindow(enabled);
|
|
|
|
}
|
|
|
|
}
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-11-05 00:36:17 +00:00
|
|
|
void CWizardUI::UpdateScreenWidget(WIDGET *curWidget)
|
|
|
|
{
|
|
|
|
int selRv = CB_ERR;
|
|
|
|
int selectedSomething = FALSE;
|
|
|
|
|
|
|
|
if(curWidget->type == "CheckListBox")
|
|
|
|
{
|
1999-11-05 00:49:23 +00:00
|
|
|
// This is needed because we don't save this value anywhere
|
1999-11-05 00:36:17 +00:00
|
|
|
int selected = ((CCheckListBox*)curWidget->control)->GetCurSel();
|
|
|
|
if (selected == CB_ERR)
|
|
|
|
selected = 0;
|
|
|
|
|
|
|
|
((CCheckListBox*)curWidget->control)->ResetContent();
|
|
|
|
|
|
|
|
for (int i = 0; i < curWidget->numOfOptions; i++)
|
|
|
|
if (curWidget->options.value[i])
|
|
|
|
((CCheckListBox*)curWidget->control)->AddString(curWidget->options.value[i]);
|
|
|
|
|
|
|
|
if (curWidget->value && curWidget->value != "")
|
|
|
|
{
|
|
|
|
char indices[MAX_SIZE];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
strcpy(indices, curWidget->value);
|
|
|
|
char *s = strtok(indices, ",");
|
|
|
|
for (; s; s=strtok(NULL, ","))
|
|
|
|
{
|
|
|
|
i = ((CCheckListBox*)curWidget->control)->FindString(0, s);
|
|
|
|
if (i != -1)
|
|
|
|
{
|
|
|
|
((CCheckListBox*)curWidget->control)->SetCheck(i, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
selRv = ((CCheckListBox*)curWidget->control)->SetCurSel(selected);
|
|
|
|
if (selRv == CB_ERR)
|
|
|
|
((CCheckListBox*)curWidget->control)->SetCurSel(0);
|
|
|
|
|
|
|
|
if (curWidget->numOfOptDesc > 0)
|
|
|
|
SetDescription(curWidget);
|
|
|
|
}
|
|
|
|
if(curWidget->type == "ListBox")
|
|
|
|
{
|
|
|
|
((CListBox*)curWidget->control)->ResetContent();
|
|
|
|
|
|
|
|
for (int i = 0; i < curWidget->numOfOptions; i++)
|
|
|
|
if (curWidget->options.value[i])
|
|
|
|
((CListBox*)curWidget->control)->AddString(curWidget->options.value[i]);
|
|
|
|
|
|
|
|
if (curWidget->value && curWidget->value != "")
|
|
|
|
{
|
|
|
|
char indices[MAX_SIZE];
|
|
|
|
|
|
|
|
strcpy(indices, curWidget->value);
|
|
|
|
char *s = strtok(indices, ",");
|
|
|
|
for (; s; s=strtok(NULL, ","))
|
|
|
|
{
|
|
|
|
selRv = ((CListBox*)curWidget->control)->SelectString(0, s);
|
|
|
|
if (selRv != LB_ERR)
|
|
|
|
selectedSomething = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!selectedSomething)
|
|
|
|
selRv = ((CListBox*)curWidget->control)->SetCurSel(0);
|
|
|
|
}
|
2000-07-25 20:25:54 +00:00
|
|
|
else if((curWidget->type == "ComboBox") || (curWidget->type == "DropBox"))
|
1999-11-05 00:36:17 +00:00
|
|
|
{
|
|
|
|
((CComboBox*)curWidget->control)->ResetContent();
|
|
|
|
|
|
|
|
for (int i = 0; i < curWidget->numOfOptions; i++)
|
|
|
|
if (curWidget->options.value[i])
|
|
|
|
((CComboBox*)curWidget->control)->AddString(curWidget->options.value[i]);
|
|
|
|
|
|
|
|
if (curWidget->value && curWidget->value != "")
|
|
|
|
selRv = ((CComboBox*)curWidget->control)->SelectString(-1, curWidget->value);
|
|
|
|
|
|
|
|
if (selRv == CB_ERR)
|
1999-11-05 00:49:23 +00:00
|
|
|
selRv = ((CComboBox*)curWidget->control)->SetCurSel(0);
|
1999-11-05 00:36:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-02-03 16:49:10 +00:00
|
|
|
void CWizardUI::CreateControls()
|
|
|
|
{
|
1999-12-20 23:28:06 +00:00
|
|
|
int rv = TRUE;
|
1999-10-19 03:46:54 +00:00
|
|
|
|
1999-02-03 16:49:10 +00:00
|
|
|
m_pFont = new CFont;
|
|
|
|
m_pFont->CreateFont(8, 0, 0, 0, FW_NORMAL,
|
|
|
|
0, 0, 0, ANSI_CHARSET,
|
|
|
|
OUT_DEFAULT_PRECIS,
|
|
|
|
CLIP_DEFAULT_PRECIS,
|
|
|
|
DEFAULT_QUALITY,
|
|
|
|
DEFAULT_PITCH|FF_DONTCARE,
|
|
|
|
"MS Sans Serif");
|
|
|
|
|
|
|
|
m_pNavFont = new CFont;
|
|
|
|
m_pNavFont->CreateFont(8, 0, 0, 0, FW_BOLD,
|
|
|
|
0, 0, 0, ANSI_CHARSET,
|
|
|
|
OUT_DEFAULT_PRECIS,
|
|
|
|
CLIP_DEFAULT_PRECIS,
|
|
|
|
DEFAULT_QUALITY,
|
|
|
|
DEFAULT_PITCH|FF_DONTCARE,
|
|
|
|
"MS Sans Serif");
|
|
|
|
|
|
|
|
//End Font Logic Start iniFile logic
|
|
|
|
containsImage = FALSE;
|
|
|
|
if (CurrentNode->numImages > 0) {
|
|
|
|
containsImage = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
m_pControlCount = CurrentNode->numWidgets;
|
|
|
|
|
|
|
|
for (int x = 0; x < m_pControlCount; x++)
|
|
|
|
{
|
|
|
|
WIDGET* curWidget = CurrentNode->pageWidgets[x];
|
|
|
|
CString widgetType = curWidget->type;
|
|
|
|
int s_x = curWidget->location.x;
|
|
|
|
int s_y = curWidget->location.y;
|
|
|
|
int s_width = curWidget->size.width;
|
|
|
|
int s_height = curWidget->size.height;
|
1999-10-19 02:41:48 +00:00
|
|
|
UINT ID = curWidget->widgetID;
|
1999-02-03 16:49:10 +00:00
|
|
|
|
|
|
|
CRect tmpRect = CRect(s_x, s_y, (s_x + s_width), (s_y + s_height));
|
|
|
|
|
2000-01-18 22:39:01 +00:00
|
|
|
if (widgetType == "Text" || widgetType == "BoldText") {
|
1999-02-03 16:49:10 +00:00
|
|
|
curWidget->control = new CStatic;
|
1999-10-19 03:46:54 +00:00
|
|
|
rv = ((CStatic*)curWidget->control)->Create(curWidget->value, SS_LEFT, tmpRect, this, ID);
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
2000-03-28 19:48:46 +00:00
|
|
|
else if (widgetType == "GlobalText") {
|
|
|
|
curWidget->control = new CStatic;
|
|
|
|
curWidget->value = theInterpreter->replaceVars(curWidget->value,NULL);
|
|
|
|
rv = ((CStatic*)curWidget->control)->Create(curWidget->value, SS_LEFT, tmpRect, this, ID);
|
|
|
|
}
|
|
|
|
|
2000-01-18 22:39:01 +00:00
|
|
|
else if (widgetType == "DynamicText") {
|
|
|
|
curWidget->control = new CStatic;
|
|
|
|
curWidget->display = theInterpreter->GetTrimFile(curWidget->value);
|
|
|
|
rv = ((CStatic*)curWidget->control)->Create(curWidget->display, SS_LEFT, tmpRect, this, ID);
|
|
|
|
}
|
|
|
|
|
1999-02-03 16:49:10 +00:00
|
|
|
else if (widgetType == "Navigation Text") {
|
|
|
|
curWidget->control = new CNavText;
|
1999-10-19 03:46:54 +00:00
|
|
|
rv = ((CNavText*)curWidget->control)->Create(curWidget->value, SS_LEFT, tmpRect, this, ID);
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
|
|
|
else if (widgetType == "EditBox") {
|
1999-09-17 00:05:25 +00:00
|
|
|
curWidget->control = new CEdit;//Added new style parameter ES_AUTOHSCROLL- to allow *GASP* SCROLLING!!
|
1999-10-23 00:38:06 +00:00
|
|
|
/* if (rv = ((CEdit*)curWidget->control)->CreateEx(WS_EX_CLIENTEDGE,
|
1999-02-03 16:49:10 +00:00
|
|
|
_T("EDIT"),
|
|
|
|
NULL,
|
1999-09-17 00:05:25 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_BORDER |ES_AUTOHSCROLL ,
|
1999-02-03 16:49:10 +00:00
|
|
|
curWidget->location.x,
|
|
|
|
curWidget->location.y,
|
|
|
|
curWidget->size.width,
|
|
|
|
curWidget->size.height,
|
1999-10-23 00:38:06 +00:00
|
|
|
m_hWnd, ID, 0 ))
|
|
|
|
*/
|
|
|
|
if (rv = ((CEdit*)curWidget->control)->CreateEx(WS_EX_CLIENTEDGE,
|
|
|
|
_T("EDIT"),
|
|
|
|
NULL,
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_BORDER |ES_AUTOHSCROLL ,
|
|
|
|
tmpRect,this, ID, 0 ))
|
1999-10-16 02:00:18 +00:00
|
|
|
{
|
|
|
|
//Set maximum number of characters allowed per line - limit set to 200
|
|
|
|
((CEdit*)curWidget->control)->SetLimitText(int(curWidget->fieldlen.length));
|
|
|
|
((CEdit*)curWidget->control)->SetWindowText(curWidget->value);
|
1999-10-23 00:38:06 +00:00
|
|
|
((CEdit*)curWidget->control)->SetModify(FALSE);
|
1999-10-16 02:00:18 +00:00
|
|
|
}
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
|
|
|
else if (widgetType == "Button") {
|
|
|
|
curWidget->control = new CButton;
|
1999-10-19 03:46:54 +00:00
|
|
|
rv = ((CButton*)curWidget->control)->Create(curWidget->value, BS_PUSHBUTTON | WS_TABSTOP, tmpRect, this, ID);
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
|
|
|
else if (widgetType == "RadioButton") {
|
|
|
|
curWidget->control = new CButton;
|
1999-10-19 03:46:54 +00:00
|
|
|
rv = ((CButton*)curWidget->control)->Create(curWidget->title, BS_AUTORADIOBUTTON | WS_TABSTOP, tmpRect, this, ID);
|
1999-02-03 16:49:10 +00:00
|
|
|
|
|
|
|
//char* widgetName = new char[sizeof(curWidget->name)];
|
|
|
|
char widgetName[MID_SIZE];
|
|
|
|
strcpy(widgetName, curWidget->name);
|
|
|
|
|
1999-10-22 23:42:02 +00:00
|
|
|
CString theVal = GetGlobal(curWidget->group);
|
1999-02-03 16:49:10 +00:00
|
|
|
|
|
|
|
//int newLineIndex = theVal.ReverseFind('\n');
|
|
|
|
//if (newLineIndex > -1)
|
|
|
|
//theVal.SetAt(newLineIndex, '\0');
|
1999-12-20 23:28:06 +00:00
|
|
|
// if (rv)
|
|
|
|
// AfxMessageBox(theVal+curWidget->group,MB_OK);
|
1999-02-03 16:49:10 +00:00
|
|
|
theVal.TrimRight();
|
|
|
|
|
|
|
|
|
|
|
|
CString allOptions;
|
|
|
|
CString setBack;
|
|
|
|
allOptions = theApp.GetGlobalOptions(curWidget->group);
|
|
|
|
|
|
|
|
char* options[MAX_SIZE];
|
|
|
|
int numOfOptions = 0;
|
|
|
|
char* s = new char[MAX_SIZE];
|
|
|
|
s = strtok((char *) (LPCTSTR) allOptions, ",");
|
|
|
|
if (s)
|
|
|
|
{
|
|
|
|
setBack = CString(s);
|
|
|
|
}
|
|
|
|
while (s)
|
|
|
|
{
|
|
|
|
setBack = setBack + ",";
|
|
|
|
options[numOfOptions] = new char[MAX_SIZE];
|
|
|
|
strcpy(options[numOfOptions], s);
|
|
|
|
s = strtok( NULL, "," );
|
|
|
|
numOfOptions++;
|
|
|
|
if (s)
|
|
|
|
{
|
|
|
|
setBack = setBack + CString(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int index = atoi((char *)(LPCTSTR)theVal);
|
|
|
|
index--;
|
|
|
|
|
|
|
|
if (index < 0) {
|
|
|
|
index = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (setBack != "") {
|
|
|
|
setBack.SetAt(setBack.GetLength()-1, '\0');
|
|
|
|
}
|
|
|
|
|
1999-10-22 23:42:02 +00:00
|
|
|
WIDGET* rWidget = findWidget((char *) (LPCTSTR) curWidget->group);
|
1999-02-03 16:49:10 +00:00
|
|
|
|
|
|
|
rWidget->items = setBack;
|
|
|
|
|
|
|
|
int tmpVal = atoi((char *)(LPCTSTR)theVal)-1;
|
|
|
|
|
|
|
|
if (tmpVal < 0) {
|
|
|
|
tmpVal = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (strcmp(options[tmpVal], widgetName) == 0) {
|
|
|
|
((CButton*)curWidget->control)->SetCheck(1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
((CButton*)curWidget->control)->SetCheck(0);
|
|
|
|
}
|
|
|
|
}
|
2001-07-18 23:48:20 +00:00
|
|
|
else if (widgetType == "RadioButton1") {
|
|
|
|
curWidget->control = new CButton;
|
|
|
|
rv = ((CButton*)curWidget->control)->Create(curWidget->title, BS_AUTORADIOBUTTON | WS_TABSTOP, tmpRect, this, ID);
|
|
|
|
((CButton*)curWidget->control)->SetCheck(atoi(curWidget->value));
|
|
|
|
}
|
|
|
|
else if (widgetType == "RadioButton2") {
|
|
|
|
curWidget->control = new CButton;
|
|
|
|
rv = ((CButton*)curWidget->control)->Create(curWidget->title, BS_AUTORADIOBUTTON | WS_TABSTOP, tmpRect, this, ID);
|
|
|
|
((CButton*)curWidget->control)->SetCheck(atoi(curWidget->value));
|
|
|
|
}
|
1999-02-03 16:49:10 +00:00
|
|
|
else if (widgetType == "CheckBox") {
|
|
|
|
curWidget->control = new CButton;
|
1999-10-19 03:46:54 +00:00
|
|
|
rv = ((CButton*)curWidget->control)->Create(curWidget->title, BS_AUTOCHECKBOX | WS_TABSTOP, tmpRect, this, ID);
|
1999-02-03 16:49:10 +00:00
|
|
|
((CButton*)curWidget->control)->SetCheck(atoi(curWidget->value));
|
|
|
|
}
|
|
|
|
else if (widgetType == "ListBox")
|
|
|
|
{
|
|
|
|
curWidget->control = new CListBox;
|
1999-11-05 00:36:17 +00:00
|
|
|
rv = ((CListBox*)curWidget->control)->Create(
|
|
|
|
LBS_STANDARD | // LBS_MULTIPLESEL |
|
|
|
|
WS_HSCROLL | WS_VSCROLL | WS_TABSTOP,
|
|
|
|
tmpRect, this, ID);
|
1999-02-03 16:49:10 +00:00
|
|
|
((CListBox*)curWidget->control)->ModifyStyleEx(NULL, WS_EX_CLIENTEDGE, 0);
|
|
|
|
|
|
|
|
}
|
1999-10-16 02:00:18 +00:00
|
|
|
else if (widgetType == "CheckListBox")
|
|
|
|
{
|
1999-11-04 20:19:27 +00:00
|
|
|
// Don't use LBS_STANDARD since it includes LBS_SORT which we don't want!
|
1999-10-16 02:00:18 +00:00
|
|
|
curWidget->control = new CCheckListBox;
|
1999-10-19 03:46:54 +00:00
|
|
|
rv = ((CCheckListBox*)curWidget->control)->Create(
|
1999-11-04 20:19:27 +00:00
|
|
|
LBS_HASSTRINGS | LBS_OWNERDRAWFIXED | LBS_NOTIFY |
|
|
|
|
WS_HSCROLL | WS_VSCROLL | WS_BORDER | WS_TABSTOP,
|
|
|
|
tmpRect, this, ID);
|
1999-10-16 02:00:18 +00:00
|
|
|
((CCheckListBox*)curWidget->control)->ModifyStyleEx(NULL, WS_EX_CLIENTEDGE, 0);
|
|
|
|
|
|
|
|
}
|
2000-07-25 20:25:54 +00:00
|
|
|
else if ((widgetType == "ComboBox") ||(widgetType == "DropBox")) {
|
1999-02-03 16:49:10 +00:00
|
|
|
curWidget->control = new CComboBox;
|
2000-03-27 21:34:55 +00:00
|
|
|
rv = ((CComboBox*)curWidget->control)->Create(CBS_DROPDOWNLIST | WS_TABSTOP|WS_VSCROLL , tmpRect, this, ID);
|
1999-02-03 16:49:10 +00:00
|
|
|
|
|
|
|
}
|
1999-12-01 23:09:55 +00:00
|
|
|
else if ((widgetType == "GroupBox") || (widgetType == "BoldGroup")) {
|
1999-02-03 16:49:10 +00:00
|
|
|
curWidget->control = new CButton;
|
1999-10-19 03:46:54 +00:00
|
|
|
rv = ((CButton*)curWidget->control)->Create(curWidget->value, BS_GROUPBOX, tmpRect, this, ID);
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
|
|
|
else if (widgetType == "ProgressBar") {
|
|
|
|
curWidget->control = new CProgressCtrl;
|
1999-10-19 03:46:54 +00:00
|
|
|
rv = ((CProgressCtrl*)curWidget->control)->Create(WS_TABSTOP, tmpRect, this, ID);
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-19 03:46:54 +00:00
|
|
|
if (!rv)
|
|
|
|
{
|
|
|
|
CWnd myWnd;
|
1999-12-20 23:28:06 +00:00
|
|
|
myWnd.MessageBox("Create failed on a widget.", widgetType, MB_OK);
|
1999-10-19 03:46:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
|
1999-11-05 00:36:17 +00:00
|
|
|
// Set the font of the widget
|
1999-10-18 20:22:21 +00:00
|
|
|
if (curWidget->type == "BoldText")
|
|
|
|
{
|
1999-02-03 16:49:10 +00:00
|
|
|
curWidget->control->SetFont(m_pNavFont);
|
|
|
|
}
|
1999-12-01 23:09:55 +00:00
|
|
|
else if (curWidget->type == "BoldGroup")
|
|
|
|
{
|
|
|
|
curWidget->control->SetFont(m_pNavFont);
|
|
|
|
}
|
|
|
|
|
1999-10-19 03:46:54 +00:00
|
|
|
else if (curWidget->control && curWidget->control->m_hWnd)
|
1999-02-03 16:49:10 +00:00
|
|
|
{
|
|
|
|
curWidget->control->SetFont(m_pFont);
|
|
|
|
}
|
|
|
|
}
|
1999-10-19 20:30:18 +00:00
|
|
|
|
|
|
|
// Handle initializations AFTER all controls created...
|
|
|
|
for (x = 0; x < m_pControlCount; x++)
|
|
|
|
{
|
|
|
|
WIDGET* curWidget = CurrentNode->pageWidgets[x];
|
|
|
|
CString widgetType = curWidget->type;
|
|
|
|
|
1999-11-05 00:36:17 +00:00
|
|
|
if (!curWidget->action.onInit.IsEmpty())
|
|
|
|
theInterpreter->interpret(curWidget->action.onInit, curWidget);
|
1999-10-19 20:30:18 +00:00
|
|
|
|
1999-11-05 00:36:17 +00:00
|
|
|
UpdateScreenWidget(curWidget);
|
1999-10-19 20:30:18 +00:00
|
|
|
}
|
1999-11-05 00:36:17 +00:00
|
|
|
|
|
|
|
// Handle enablement AFTER all initializations completed...
|
|
|
|
for (x = 0; x < m_pControlCount; x++)
|
|
|
|
EnableWidget(CurrentNode->pageWidgets[x]);
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CWizardUI::DisplayControls()
|
|
|
|
{
|
|
|
|
CRect rect(0, 0, 4, 8);
|
|
|
|
MapDialogRect(&rect);
|
|
|
|
|
|
|
|
int baseWidth = rect.Width();
|
|
|
|
int baseHeight = rect.Height();
|
|
|
|
|
|
|
|
extern NODE *CurrentNode;
|
|
|
|
|
|
|
|
WIDGET* curWidget;
|
|
|
|
for (int i = m_pControlCount-1; i >= 0; i--) {
|
|
|
|
curWidget = CurrentNode->pageWidgets[i];
|
|
|
|
|
1999-10-19 03:46:54 +00:00
|
|
|
if (curWidget->control && curWidget->control->m_hWnd)
|
1999-02-03 16:49:10 +00:00
|
|
|
{
|
|
|
|
curWidget->control->SetWindowPos(
|
|
|
|
&wndTop,
|
|
|
|
(int)((float)(curWidget->location.x) * (float)baseWidth / 4.0),
|
|
|
|
(int)((float)(curWidget->location.y) * (float)baseHeight / 8.0),
|
|
|
|
(int)((float)(curWidget->size.width) * (float)baseWidth / 4.0),
|
|
|
|
(int)((float)(curWidget->size.height) * (float)baseHeight / 8.0),
|
|
|
|
SWP_SHOWWINDOW);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CWizardUI::DestroyCurrentScreenWidgets()
|
|
|
|
{
|
|
|
|
WIDGET* curWidget;
|
1999-10-16 02:00:18 +00:00
|
|
|
for (int i = 0; i < m_pControlCount; i++)
|
|
|
|
{
|
1999-02-03 16:49:10 +00:00
|
|
|
curWidget = CurrentNode->pageWidgets[i];
|
|
|
|
|
1999-10-16 02:00:18 +00:00
|
|
|
if (curWidget->control)
|
|
|
|
{
|
|
|
|
BOOL retFalg = curWidget->control->DestroyWindow();
|
|
|
|
delete curWidget->control;
|
|
|
|
curWidget->control = NULL;
|
|
|
|
}
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
CString CWizardUI::GetScreenValue(WIDGET *curWidget)
|
1999-02-03 16:49:10 +00:00
|
|
|
{
|
1999-10-02 01:28:27 +00:00
|
|
|
//
|
|
|
|
// NOTE: Assumes caller has already done UpdateData(TRUE);
|
|
|
|
//
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
CString widgetType = curWidget->type;
|
|
|
|
CString rv("");
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-19 03:46:54 +00:00
|
|
|
if (!curWidget->control || !curWidget->control->m_hWnd)
|
1999-10-19 02:41:48 +00:00
|
|
|
rv = curWidget->value; // !!! Fix this so we're not copying strings all the time
|
|
|
|
// Should be able to just pass in an "assign" boolean
|
|
|
|
else if (widgetType == "CheckBox") {
|
1999-10-19 00:27:21 +00:00
|
|
|
// Mask off everything but the checked/not checked state
|
|
|
|
// Ignore indeterminate state
|
|
|
|
int state = ((CButton*)curWidget->control)->GetState() & 0x0003;
|
|
|
|
if (state == 2)
|
|
|
|
state = 0;
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
char temp[MIN_SIZE];
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
itoa(state, temp, 10);
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
rv = CString(temp);
|
|
|
|
}
|
|
|
|
else if (widgetType == "RadioButton")
|
|
|
|
{
|
1999-10-19 00:27:21 +00:00
|
|
|
// Mask off everything but the checked/not checked state
|
|
|
|
// Ignore indeterminate state
|
1999-10-19 02:41:48 +00:00
|
|
|
int state = ((CButton*)curWidget->control)->GetState() & 0x0003;
|
1999-10-19 00:27:21 +00:00
|
|
|
if (state == 2)
|
|
|
|
state = 0;
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
CString allOptions;
|
|
|
|
CString setBack;
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-22 23:42:02 +00:00
|
|
|
WIDGET* rWidget = findWidget((char *) (LPCTSTR) curWidget->group);
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
allOptions = rWidget->items;
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
char* options[MAX_SIZE];
|
|
|
|
int numOfOptions = 0;
|
|
|
|
char* s = new char[MAX_SIZE];
|
|
|
|
s = strtok((char *) (LPCTSTR) allOptions, ",");
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
if (curWidget->name == CString(s) && state == 1)
|
|
|
|
{
|
|
|
|
rWidget->value = "1";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (s)
|
|
|
|
{
|
|
|
|
setBack = CString(s);
|
|
|
|
}
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
int i=1;
|
|
|
|
while (s)
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
setBack = setBack + ",";
|
|
|
|
options[numOfOptions] = new char[MID_SIZE];
|
|
|
|
strcpy(options[numOfOptions], s);
|
|
|
|
s = strtok( NULL, "," );
|
|
|
|
|
1999-02-03 16:49:10 +00:00
|
|
|
if (s)
|
|
|
|
{
|
1999-10-02 01:28:27 +00:00
|
|
|
setBack = setBack + CString(s);
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
char temp[MIN_SIZE];
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
itoa(i, temp, 10);
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
if (curWidget->name == CString(s) && state == 1)
|
|
|
|
{
|
|
|
|
rWidget->value = CString(temp);
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
1999-10-02 01:28:27 +00:00
|
|
|
|
|
|
|
numOfOptions++;
|
|
|
|
}
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
setBack.SetAt(setBack.GetLength()-1, '\0');
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
rWidget->items = setBack;
|
|
|
|
}
|
2001-07-18 23:48:20 +00:00
|
|
|
else if (widgetType == "RadioButton1") {
|
|
|
|
int state = ((CButton*)curWidget->control)->GetState() & 0x0003;
|
|
|
|
if (state == 2)
|
|
|
|
state = 0;
|
|
|
|
|
|
|
|
char temp[MIN_SIZE];
|
|
|
|
|
|
|
|
itoa(state, temp, 10);
|
|
|
|
|
|
|
|
rv = CString(temp);
|
|
|
|
}
|
|
|
|
else if (widgetType == "RadioButton2") {
|
|
|
|
int state = ((CButton*)curWidget->control)->GetState() & 0x0003;
|
|
|
|
if (state == 2)
|
|
|
|
state = 0;
|
|
|
|
|
|
|
|
char temp[MIN_SIZE];
|
|
|
|
|
|
|
|
itoa(state, temp, 10);
|
|
|
|
|
|
|
|
rv = CString(temp);
|
|
|
|
}
|
1999-10-02 01:28:27 +00:00
|
|
|
else if (widgetType == "EditBox") {
|
|
|
|
char myLine[MAX_SIZE];
|
|
|
|
curWidget->control->GetWindowText(myLine, 250);
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-10-02 01:28:27 +00:00
|
|
|
CString line = (CString)myLine;
|
|
|
|
rv = line;
|
|
|
|
}
|
|
|
|
else if (widgetType == "ListBox")
|
|
|
|
{
|
|
|
|
LPINT choices;
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-11-05 00:36:17 +00:00
|
|
|
if (FALSE /* MULTIPLESEL something or other */ )
|
|
|
|
{
|
|
|
|
int count;
|
|
|
|
count = (((CListBox *)curWidget->control))->GetSelCount();
|
|
|
|
choices = (int *) GlobalAlloc(0, count * sizeof(LPINT));
|
|
|
|
((CListBox *)curWidget->control)->GetSelItems(count, choices);
|
1999-02-03 16:49:10 +00:00
|
|
|
|
1999-11-05 00:36:17 +00:00
|
|
|
rv = "";
|
|
|
|
CString temp;
|
|
|
|
for (int i=0; i < count; i++)
|
|
|
|
{
|
|
|
|
((CListBox *)curWidget->control)->GetText(choices[i], temp);
|
|
|
|
rv = rv + temp;
|
|
|
|
if ( i+1 < count)
|
|
|
|
rv += ",";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
1999-10-02 01:28:27 +00:00
|
|
|
{
|
1999-11-05 00:36:17 +00:00
|
|
|
int selected = ((CListBox *)curWidget->control)->GetCurSel();
|
|
|
|
if (selected == LB_ERR)
|
|
|
|
rv = "";
|
|
|
|
else
|
|
|
|
((CListBox *)curWidget->control)->GetText(selected, rv);
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
1999-10-02 01:28:27 +00:00
|
|
|
}
|
1999-10-16 02:00:18 +00:00
|
|
|
else if (widgetType == "CheckListBox")
|
|
|
|
{
|
|
|
|
int count = (((CCheckListBox *)curWidget->control))->GetCount();
|
|
|
|
|
|
|
|
rv = "";
|
|
|
|
CString temp;
|
|
|
|
for (int i=0; i < count; i++)
|
|
|
|
{
|
|
|
|
if (((CCheckListBox *)curWidget->control)->GetCheck(i))
|
|
|
|
{
|
|
|
|
((CCheckListBox *)curWidget->control)->GetText(i, temp);
|
|
|
|
if ( i > 0)
|
|
|
|
rv += ",";
|
|
|
|
rv += temp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-07-25 20:25:54 +00:00
|
|
|
else if ((widgetType == "ComboBox") || (widgetType == "DropBox"))
|
1999-10-02 01:28:27 +00:00
|
|
|
{
|
|
|
|
int selectedIndex = ((CComboBox*)curWidget->control)->GetCurSel();
|
|
|
|
if (selectedIndex != -1)
|
1999-02-03 16:49:10 +00:00
|
|
|
{
|
1999-10-02 01:28:27 +00:00
|
|
|
char tmpStr[MIN_SIZE];
|
|
|
|
((CComboBox*)curWidget->control)->GetLBText(selectedIndex, tmpStr);
|
|
|
|
rv = tmpStr;
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
|
|
|
}
|
2000-01-18 22:39:01 +00:00
|
|
|
/* else if (widgetType == "DynamicText")
|
1999-10-23 00:38:06 +00:00
|
|
|
{
|
|
|
|
char myLine[MAX_SIZE];
|
|
|
|
curWidget->control->GetWindowText(myLine, 250);
|
2000-01-18 22:39:01 +00:00
|
|
|
|
1999-10-23 00:38:06 +00:00
|
|
|
CString line = (CString)myLine;
|
2000-01-18 22:39:01 +00:00
|
|
|
if((line.Compare(curWidget->display)) == 0)
|
|
|
|
rv = curWidget->value;
|
|
|
|
|
1999-10-23 00:38:06 +00:00
|
|
|
}
|
2000-01-18 22:39:01 +00:00
|
|
|
*/
|
1999-10-02 01:28:27 +00:00
|
|
|
else
|
|
|
|
rv = curWidget->value; // !!! Fix this so we're not copying strings all the time
|
|
|
|
// Should be able to just pass in an "assign" boolean
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CWizardUI::UpdateGlobals()
|
|
|
|
{
|
|
|
|
UpdateData(TRUE); // Get data from screen into controls
|
|
|
|
|
|
|
|
|
|
|
|
WIDGET* curWidget;
|
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < m_pControlCount; i++)
|
|
|
|
{
|
|
|
|
curWidget = CurrentNode->pageWidgets[i];
|
|
|
|
curWidget->value = GetScreenValue(curWidget);
|
|
|
|
}
|
1999-10-13 00:28:10 +00:00
|
|
|
IsNewValue = TRUE;
|
1999-02-03 16:49:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CWizardUI::LoadGlobals()
|
|
|
|
{
|
|
|
|
VERIFY(hGlobal = ::LoadLibrary("GlobalApi.dll"));
|
|
|
|
VERIFY(
|
|
|
|
pMySetGlobal =
|
|
|
|
(MYSETGLOBAL*)::GetProcAddress(
|
|
|
|
(HMODULE) hGlobal, "SetGlobal")
|
|
|
|
);
|
|
|
|
|
1999-10-22 23:42:02 +00:00
|
|
|
//CString animatedLogo = GetGlobal("AnimatedLogoURL");
|
1999-02-03 16:49:10 +00:00
|
|
|
|
|
|
|
(*pMySetGlobal)("Platform", "32");
|
|
|
|
(*pMySetGlobal)("Custom Inbox Path", (char*)(LPCTSTR)(Path+"IBDemo\\defaults\\inbox"));
|
|
|
|
(*pMySetGlobal)("Overwrite CFG", "YES");
|
|
|
|
(*pMySetGlobal)("Custom Readme Path", (char*)(LPCTSTR)(Path+"IBDemo\\defaults\\readme.txt"));
|
|
|
|
(*pMySetGlobal)("Custom License Path", (char*)(LPCTSTR)(Path+"IBDemo\\defaults\\license.txt"));
|
|
|
|
(*pMySetGlobal)("Custom CFG Path", (char*)(LPCTSTR)(Path+"IBDemo\\defaults\\netscape.cfg"));
|
|
|
|
(*pMySetGlobal)("Custom Bookmark Path", (char*)(LPCTSTR)(Path+"IBDemo\\defaults\\bookmark.htm"));
|
|
|
|
(*pMySetGlobal)("Custom Addressbook Path", (char*)(LPCTSTR)(Path+"IBDemo\\defaults\\pab.na2"));
|
|
|
|
(*pMySetGlobal)("Install Splash Path", (char*)(LPCTSTR)(Path+"IBDemo\\source\\setup.bmp"));
|
|
|
|
|
|
|
|
// The command line specifies the output path
|
|
|
|
// If it is NULL, set a default output path
|
|
|
|
UpdateData(TRUE);
|
|
|
|
(*pMySetGlobal)("Output Path", (char*)(LPCTSTR)(Path+"Output"));
|
|
|
|
}
|
|
|
|
|
|
|
|
void CWizardUI::ReadIniFile()
|
|
|
|
{
|
|
|
|
// TODO: Add extra validation here
|
|
|
|
|
|
|
|
VERIFY(
|
|
|
|
pMyFunction =
|
|
|
|
(MYFUNCTION*)::GetProcAddress(
|
|
|
|
(HMODULE) hModule, "ReadMyFile")
|
|
|
|
);
|
|
|
|
|
|
|
|
(*pMyFunction)();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CWizardUI::MergeFiles()
|
|
|
|
{
|
|
|
|
|
|
|
|
// TODO: Add your control notification handler code here
|
|
|
|
|
|
|
|
VERIFY(
|
|
|
|
pMyFunction =
|
|
|
|
(MYFUNCTION*)::GetProcAddress(
|
|
|
|
(HMODULE) hModule, "MergeFiles")
|
|
|
|
);
|
|
|
|
|
|
|
|
(*pMyFunction)();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CWizardUI::CreateMedia()
|
|
|
|
{
|
|
|
|
|
|
|
|
// TODO: Add your control notification handler code here
|
|
|
|
|
|
|
|
VERIFY(
|
|
|
|
pMyFunction =
|
|
|
|
(MYFUNCTION*)::GetProcAddress(
|
|
|
|
(HMODULE) hModule, "CreateMedia")
|
|
|
|
);
|
|
|
|
|
|
|
|
(*pMyFunction)();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CWizardUI::ExitDemo()
|
|
|
|
{
|
|
|
|
|
|
|
|
// TODO: Add extra cleanup here
|
|
|
|
FreeLibrary(hModule);
|
|
|
|
FreeLibrary(hGlobal);
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL CWizardUI::OnEraseBkgnd(CDC* pDC)
|
|
|
|
{
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
HBRUSH CWizardUI::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
|
|
|
|
{
|
|
|
|
HBRUSH hbr = CPropertyPage::OnCtlColor(pDC, pWnd, nCtlColor);
|
|
|
|
|
|
|
|
// TODO: Return a different brush if the default is not desired
|
|
|
|
return hbr;
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL CWizardUI::OnWizardFinish()
|
|
|
|
{
|
|
|
|
// TODO: Add your specialized code here and/or call the base class
|
|
|
|
UpdateGlobals();
|
|
|
|
|
1999-10-11 19:23:25 +00:00
|
|
|
if (CurrentNode->navControls->onNextAction)
|
1999-10-12 01:54:00 +00:00
|
|
|
if (!theInterpreter->interpret(CurrentNode->navControls->onNextAction, NULL))
|
1999-10-11 19:23:25 +00:00
|
|
|
return FALSE;
|
1999-02-03 16:49:10 +00:00
|
|
|
return CPropertyPage::OnWizardFinish();
|
|
|
|
}
|
|
|
|
|
1999-05-19 03:31:11 +00:00
|
|
|
BOOL CWizardUI::OnApply()
|
|
|
|
{
|
|
|
|
// TODO: Add your specialized code here and/or call the base class
|
|
|
|
|
|
|
|
return CPropertyPage::OnApply();
|
|
|
|
}
|
|
|
|
|