2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-01-21 23:30:43 +03:00
|
|
|
|
2009-09-28 19:43:28 +04: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
|
|
|
|
2009-09-28 19:43:28 +04: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 "cmCursesStringWidget.h"
|
|
|
|
#include "cmCursesLabelWidget.h"
|
|
|
|
#include "cmCursesBoolWidget.h"
|
|
|
|
#include "cmCursesPathWidget.h"
|
|
|
|
#include "cmCursesFilePathWidget.h"
|
|
|
|
#include "cmCursesDummyWidget.h"
|
2001-11-05 16:37:22 +03:00
|
|
|
#include "../cmSystemTools.h"
|
2001-11-05 02:05:21 +03:00
|
|
|
|
2002-05-01 19:34:27 +04:00
|
|
|
cmCursesCacheEntryComposite::cmCursesCacheEntryComposite(const char* key,
|
2006-03-16 18:44:55 +03:00
|
|
|
int labelwidth,
|
2002-10-24 02:03:27 +04:00
|
|
|
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, " ");
|
2008-03-08 00:32:09 +03:00
|
|
|
this->Entry = 0;
|
|
|
|
this->Entry = new cmCursesStringWidget(this->EntryWidth, 1, 1, 1);
|
2001-11-05 02:05:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
cmCursesCacheEntryComposite::cmCursesCacheEntryComposite(
|
2002-09-11 22:05:45 +04:00
|
|
|
const char* key, const cmCacheManager::CacheIterator& it, bool isNew,
|
2002-05-01 19:34:27 +04:00
|
|
|
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;
|
2002-09-11 22:05:45 +04:00
|
|
|
switch ( it.GetType() )
|
2001-11-05 02:05:21 +03:00
|
|
|
{
|
|
|
|
case cmCacheManager::BOOL:
|
2006-03-16 18:44:55 +03:00
|
|
|
this->Entry = new cmCursesBoolWidget(this->EntryWidth, 1, 1, 1);
|
2002-09-11 22:05:45 +04:00
|
|
|
if (cmSystemTools::IsOn(it.GetValue()))
|
2002-10-24 02:03:27 +04:00
|
|
|
{
|
2006-03-16 18:44:55 +03:00
|
|
|
static_cast<cmCursesBoolWidget*>(this->Entry)->SetValueAsBool(true);
|
2002-10-24 02:03:27 +04:00
|
|
|
}
|
2001-11-05 02:05:21 +03:00
|
|
|
else
|
2002-10-24 02:03:27 +04:00
|
|
|
{
|
2006-03-16 18:44:55 +03:00
|
|
|
static_cast<cmCursesBoolWidget*>(this->Entry)->SetValueAsBool(false);
|
2002-10-24 02:03:27 +04:00
|
|
|
}
|
2001-11-05 02:05:21 +03:00
|
|
|
break;
|
|
|
|
case cmCacheManager::PATH:
|
2006-03-16 18:44:55 +03:00
|
|
|
this->Entry = new cmCursesPathWidget(this->EntryWidth, 1, 1, 1);
|
|
|
|
static_cast<cmCursesPathWidget*>(this->Entry)->SetString(
|
2002-10-24 02:03:27 +04:00
|
|
|
it.GetValue());
|
2001-11-05 02:05:21 +03:00
|
|
|
break;
|
|
|
|
case cmCacheManager::FILEPATH:
|
2006-03-16 18:44:55 +03:00
|
|
|
this->Entry = new cmCursesFilePathWidget(this->EntryWidth, 1, 1, 1);
|
|
|
|
static_cast<cmCursesFilePathWidget*>(this->Entry)->SetString(
|
2002-10-24 02:03:27 +04:00
|
|
|
it.GetValue());
|
2001-11-05 02:05:21 +03:00
|
|
|
break;
|
|
|
|
case cmCacheManager::STRING:
|
2006-03-16 18:44:55 +03:00
|
|
|
this->Entry = new cmCursesStringWidget(this->EntryWidth, 1, 1, 1);
|
|
|
|
static_cast<cmCursesStringWidget*>(this->Entry)->SetString(
|
2002-10-24 02:03:27 +04:00
|
|
|
it.GetValue());
|
2002-09-11 22:05:45 +04:00
|
|
|
break;
|
|
|
|
case cmCacheManager::UNINITIALIZED:
|
|
|
|
cmSystemTools::Error("Found an undefined variable: ", it.GetName());
|
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;
|
|
|
|
}
|
|
|
|
}
|