CMake/Source/CursesDialog/cmCursesCacheEntryComposite...

104 lines
3.3 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 "cmCursesStringWidget.h"
#include "cmCursesLabelWidget.h"
#include "cmCursesBoolWidget.h"
#include "cmCursesPathWidget.h"
#include "cmCursesFilePathWidget.h"
#include "cmCursesDummyWidget.h"
#include "../cmSystemTools.h"
2001-11-05 02:05:21 +03:00
cmCursesCacheEntryComposite::cmCursesCacheEntryComposite(const char* key,
2006-03-16 18:44:55 +03: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);
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 char* key, const cmCacheManager::CacheIterator& it, 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;
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);
if (cmSystemTools::IsOn(it.GetValue()))
{
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 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(
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(
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(
it.GetValue());
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;
}
}