CMake/Source/CursesDialog/cmCursesCacheEntryComposite...

131 lines
4.1 KiB
C++
Raw Permalink Normal View History

/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
2002-01-21 23:30:43 +03:00
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
2002-01-21 23:30:43 +03:00
This software is distributed WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License for more information.
============================================================================*/
2001-11-05 02:05:21 +03:00
#include "cmCursesCacheEntryComposite.h"
#include "cmCursesOptionsWidget.h"
2001-11-05 02:05:21 +03:00
#include "cmCursesStringWidget.h"
#include "cmCursesLabelWidget.h"
#include "cmCursesBoolWidget.h"
#include "cmCursesPathWidget.h"
#include "cmCursesFilePathWidget.h"
#include "cmCursesDummyWidget.h"
#include "../cmSystemTools.h"
#include "../cmake.h"
2015-04-06 11:52:45 +03:00
#include "../cmState.h"
#include <assert.h>
2001-11-05 02:05:21 +03:00
cmCursesCacheEntryComposite::cmCursesCacheEntryComposite(
const std::string& key,
int labelwidth,
int entrywidth) :
2006-03-16 18:44:55 +03:00
Key(key), LabelWidth(labelwidth), EntryWidth(entrywidth)
2001-11-05 02:05:21 +03:00
{
2006-03-16 18:44:55 +03:00
this->Label = new cmCursesLabelWidget(this->LabelWidth, 1, 1, 1, key);
this->IsNewLabel = new cmCursesLabelWidget(1, 1, 1, 1, " ");
this->Entry = 0;
this->Entry = new cmCursesStringWidget(this->EntryWidth, 1, 1, 1);
2001-11-05 02:05:21 +03:00
}
cmCursesCacheEntryComposite::cmCursesCacheEntryComposite(
const std::string& key, cmake *cm, bool isNew,
int labelwidth, int entrywidth)
2006-03-16 18:44:55 +03:00
: Key(key), LabelWidth(labelwidth), EntryWidth(entrywidth)
2001-11-05 02:05:21 +03:00
{
2006-03-16 18:44:55 +03:00
this->Label = new cmCursesLabelWidget(this->LabelWidth, 1, 1, 1, key);
2001-11-05 02:05:21 +03:00
if (isNew)
{
2006-03-16 18:44:55 +03:00
this->IsNewLabel = new cmCursesLabelWidget(1, 1, 1, 1, "*");
2001-11-05 02:05:21 +03:00
}
else
{
2006-03-16 18:44:55 +03:00
this->IsNewLabel = new cmCursesLabelWidget(1, 1, 1, 1, " ");
2001-11-05 02:05:21 +03:00
}
2006-03-16 18:44:55 +03:00
this->Entry = 0;
2015-04-06 11:52:45 +03:00
const char* value = cm->GetState()->GetCacheEntryValue(key);
assert(value);
2015-04-06 11:52:45 +03:00
switch (cm->GetState()->GetCacheEntryType(key))
2001-11-05 02:05:21 +03:00
{
case cmState::BOOL:
2006-03-16 18:44:55 +03:00
this->Entry = new cmCursesBoolWidget(this->EntryWidth, 1, 1, 1);
if (cmSystemTools::IsOn(value))
{
2006-03-16 18:44:55 +03:00
static_cast<cmCursesBoolWidget*>(this->Entry)->SetValueAsBool(true);
}
2001-11-05 02:05:21 +03:00
else
{
2006-03-16 18:44:55 +03:00
static_cast<cmCursesBoolWidget*>(this->Entry)->SetValueAsBool(false);
}
2001-11-05 02:05:21 +03:00
break;
case cmState::PATH:
2006-03-16 18:44:55 +03:00
this->Entry = new cmCursesPathWidget(this->EntryWidth, 1, 1, 1);
static_cast<cmCursesPathWidget*>(this->Entry)->SetString(value);
2001-11-05 02:05:21 +03:00
break;
case cmState::FILEPATH:
2006-03-16 18:44:55 +03:00
this->Entry = new cmCursesFilePathWidget(this->EntryWidth, 1, 1, 1);
static_cast<cmCursesFilePathWidget*>(this->Entry)->SetString(value);
2001-11-05 02:05:21 +03:00
break;
case cmState::STRING:
{
2015-04-06 11:52:45 +03:00
const char* stringsProp = cm->GetState()
->GetCacheEntryProperty(key, "STRINGS");
if(stringsProp)
{
cmCursesOptionsWidget* ow =
new cmCursesOptionsWidget(this->EntryWidth, 1, 1, 1);
this->Entry = ow;
std::vector<std::string> options;
cmSystemTools::ExpandListArgument(stringsProp, options);
for(std::vector<std::string>::iterator
si = options.begin(); si != options.end(); ++si)
{
ow->AddOption(*si);
}
ow->SetOption(value);
}
else
{
this->Entry = new cmCursesStringWidget(this->EntryWidth, 1, 1, 1);
static_cast<cmCursesStringWidget*>(this->Entry)->SetString(value);
}
break;
}
case cmState::UNINITIALIZED:
cmSystemTools::Error("Found an undefined variable: ",
key.c_str());
2001-11-05 02:05:21 +03:00
break;
default:
// TODO : put warning message here
break;
}
}
cmCursesCacheEntryComposite::~cmCursesCacheEntryComposite()
{
2006-03-16 18:44:55 +03:00
delete this->Label;
delete this->IsNewLabel;
delete this->Entry;
2001-11-05 02:05:21 +03:00
}
2001-11-30 00:44:22 +03:00
const char* cmCursesCacheEntryComposite::GetValue()
{
2006-03-16 18:44:55 +03:00
if (this->Label)
2001-11-30 00:44:22 +03:00
{
2006-03-16 18:44:55 +03:00
return this->Label->GetValue();
2001-11-30 00:44:22 +03:00
}
else
{
return 0;
}
}