2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-11-05 02:05:21 +03:00
|
|
|
#include "cmCursesForm.h"
|
|
|
|
|
2016-09-01 22:55:09 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2014-01-04 09:47:13 +04:00
|
|
|
cmsys::ofstream cmCursesForm::DebugFile;
|
2001-12-04 19:16:04 +03:00
|
|
|
bool cmCursesForm::Debug = false;
|
|
|
|
|
2001-11-05 02:05:21 +03:00
|
|
|
cmCursesForm::cmCursesForm()
|
|
|
|
{
|
2016-06-27 23:44:16 +03:00
|
|
|
this->Form = CM_NULLPTR;
|
2001-11-05 02:05:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
cmCursesForm::~cmCursesForm()
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->Form) {
|
2006-03-16 18:44:55 +03:00
|
|
|
unpost_form(this->Form);
|
|
|
|
free_form(this->Form);
|
2016-06-27 23:44:16 +03:00
|
|
|
this->Form = CM_NULLPTR;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2001-11-05 02:05:21 +03:00
|
|
|
}
|
2001-12-04 19:16:04 +03:00
|
|
|
|
|
|
|
void cmCursesForm::DebugStart()
|
|
|
|
{
|
|
|
|
cmCursesForm::Debug = true;
|
|
|
|
cmCursesForm::DebugFile.open("ccmakelog.txt");
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCursesForm::DebugEnd()
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmCursesForm::Debug) {
|
2001-12-04 19:16:04 +03:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2001-12-04 19:16:04 +03:00
|
|
|
|
|
|
|
cmCursesForm::Debug = false;
|
|
|
|
cmCursesForm::DebugFile.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cmCursesForm::LogMessage(const char* msg)
|
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (!cmCursesForm::Debug) {
|
2001-12-04 19:16:04 +03:00
|
|
|
return;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2001-12-04 19:16:04 +03:00
|
|
|
|
|
|
|
cmCursesForm::DebugFile << msg << std::endl;
|
|
|
|
}
|