CMake/Source/CursesDialog/cmCursesCacheEntryComposite...

117 lines
3.8 KiB
C++
Raw 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 "../cmState.h"
#include "../cmSystemTools.h"
#include "../cmake.h"
#include "cmCursesBoolWidget.h"
#include "cmCursesDummyWidget.h"
#include "cmCursesFilePathWidget.h"
#include "cmCursesLabelWidget.h"
#include "cmCursesOptionsWidget.h"
#include "cmCursesPathWidget.h"
#include "cmCursesStringWidget.h"
#include <assert.h>
2001-11-05 02:05:21 +03:00
cmCursesCacheEntryComposite::cmCursesCacheEntryComposite(
const std::string& key, int labelwidth, int entrywidth)
: 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, " ");
2016-06-27 23:44:16 +03:00
this->Entry = CM_NULLPTR;
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)
: 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);
if (isNew) {
2006-03-16 18:44:55 +03:00
this->IsNewLabel = new cmCursesLabelWidget(1, 1, 1, 1, "*");
} 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
2016-06-27 23:44:16 +03:00
this->Entry = CM_NULLPTR;
2015-04-06 11:52:45 +03:00
const char* value = cm->GetState()->GetCacheEntryValue(key);
assert(value);
switch (cm->GetState()->GetCacheEntryType(key)) {
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);
} 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: {
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;
}
2001-11-05 02:05:21 +03:00
}
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()
{
if (this->Label) {
2006-03-16 18:44:55 +03:00
return this->Label->GetValue();
} else {
2016-06-27 23:44:16 +03:00
return CM_NULLPTR;
}
2001-11-30 00:44:22 +03:00
}