2002-01-21 23:30:43 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: Insight Segmentation & Registration Toolkit
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Insight Consortium. All rights reserved.
|
|
|
|
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
2001-11-05 02:05:21 +03:00
|
|
|
#include "cmCursesBoolWidget.h"
|
2001-12-13 21:28:41 +03:00
|
|
|
#include "cmCursesMainForm.h"
|
2001-11-05 02:05:21 +03:00
|
|
|
|
|
|
|
cmCursesBoolWidget::cmCursesBoolWidget(int width, int height,
|
|
|
|
int left, int top) :
|
|
|
|
cmCursesWidget(width, height, left, top)
|
|
|
|
{
|
|
|
|
m_Type = cmCacheManager::BOOL;
|
|
|
|
set_field_fore(m_Field, A_NORMAL);
|
|
|
|
set_field_back(m_Field, A_STANDOUT);
|
|
|
|
field_opts_off(m_Field, O_STATIC);
|
|
|
|
this->SetValueAsBool(false);
|
|
|
|
}
|
|
|
|
|
2001-12-13 21:28:41 +03:00
|
|
|
bool cmCursesBoolWidget::HandleInput(int& key, cmCursesMainForm* fm, WINDOW* w)
|
2001-11-05 02:05:21 +03:00
|
|
|
{
|
2001-12-13 21:28:41 +03:00
|
|
|
|
2001-11-05 02:05:21 +03:00
|
|
|
// 10 == enter
|
2001-11-06 06:10:52 +03:00
|
|
|
if (key == 10 || key == KEY_ENTER)
|
2001-11-05 02:05:21 +03:00
|
|
|
{
|
|
|
|
if (this->GetValueAsBool())
|
|
|
|
{
|
|
|
|
this->SetValueAsBool(false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->SetValueAsBool(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
touchwin(w);
|
|
|
|
wrefresh(w);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCursesBoolWidget::SetValueAsBool(bool value)
|
|
|
|
{
|
|
|
|
if (value)
|
|
|
|
{
|
|
|
|
this->SetValue("ON");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->SetValue("OFF");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cmCursesBoolWidget::GetValueAsBool()
|
|
|
|
{
|
|
|
|
if (m_Value == "ON")
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|