gecko-dev/cck/ib/comp.cpp

108 строки
3.1 KiB
C++
Исходник Обычный вид История

#include "stdafx.h"
#include "globals.h"
#include "ib.h"
#include "comp.h"
#define MAX_SIZE 1024
extern CString rootPath;
extern CString configName;
extern CString configPath;
extern CString workspacePath;
extern CString cdPath;
extern CString tempPath;
extern CString iniPath;
extern CString scriptPath;
extern CString nscpxpiPath;
extern COMPONENT SelectedComponents[100];
extern int numComponents;
extern "C" __declspec(dllexport)
int BuildComponentList(COMPONENT *comps, int *compNum)
{
*compNum = 0;
// Get all the component info from each component section
CString component;
char archive[MAX_SIZE];
char name[MAX_SIZE];
char desc[MAX_SIZE];
char attr[MAX_SIZE];
component.Format("Component%d", *compNum);
GetPrivateProfileString(component, "Archive", "", archive, MAX_SIZE, iniPath);
while (*archive)
{
GetPrivateProfileString(component, "Description Short", "",
name, MAX_SIZE, iniPath);
GetPrivateProfileString(component, "Description Long", "",
desc, MAX_SIZE, iniPath);
GetPrivateProfileString(component, "Attributes", "",
attr, MAX_SIZE, iniPath);
comps[*compNum].compname = component;
comps[*compNum].name = CString(name);
comps[*compNum].desc = CString(desc);
comps[*compNum].selected = (strstr(attr, "SELECTED") != NULL);
comps[*compNum].invisible = (strstr(attr, "INVISIBLE") != NULL);
comps[*compNum].launchapp = (strstr(attr, "LAUNCHAPP") != NULL);
(*compNum)++;
component.Format("Component%d", *compNum);
GetPrivateProfileString(component, "Archive", "", archive, MAX_SIZE, iniPath);
}
return TRUE;
}
extern "C" __declspec(dllexport)
int GenerateComponentList(CString parms, WIDGET *curWidget)
{
rootPath = GetGlobal("Root");
configName = GetGlobal("CustomizationList");
configPath = rootPath + "Configs\\" + configName;
workspacePath = configPath + "\\Workspace";
nscpxpiPath;
if (SearchPath(workspacePath, "NSCPXPI", NULL, 0, NULL, NULL))
nscpxpiPath = workspacePath + "\\NSCPXPI";
else
nscpxpiPath = rootPath + "NSCPXPI";
iniPath = nscpxpiPath + "\\config.ini";
BuildComponentList(SelectedComponents, &numComponents);
int i;
CString WidgetValue("");
for (i=0; i<numComponents; i++)
{
curWidget->options.name[i] = new char[strlen(SelectedComponents[i].compname)+1];
strcpy(curWidget->options.name[i], SelectedComponents[i].compname);
curWidget->options.value[i] = new char[strlen(SelectedComponents[i].name)+1];
strcpy(curWidget->options.value[i], SelectedComponents[i].name);
curWidget->optDesc.name[i] = new char[strlen(SelectedComponents[i].compname)+1];
strcpy(curWidget->optDesc.name[i], SelectedComponents[i].compname);
curWidget->optDesc.value[i] = new char[strlen(SelectedComponents[i].desc)+1];
strcpy(curWidget->optDesc.value[i], SelectedComponents[i].desc);
// INVISIBLE just means not selected, let user decide whether to
// include them again. SELECTED components get checkmarks.
if (SelectedComponents[i].selected)
{
WidgetValue += ",";
WidgetValue += SelectedComponents[i].name;
}
}
curWidget->numOfOptions = numComponents;
curWidget->numOfOptDesc = numComponents;
if (curWidget->value.IsEmpty())
curWidget->value = WidgetValue;
return TRUE;
}