mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-14 10:47:59 +08:00

The colors are based on the entry type (or value for booleans), paths and filepaths sharing the same color.
30 lines
769 B
C++
30 lines
769 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#include "cmCursesColor.h"
|
|
|
|
#include "cmCursesStandardIncludes.h"
|
|
|
|
bool cmCursesColor::HasColors()
|
|
{
|
|
#ifdef HAVE_CURSES_USE_DEFAULT_COLORS
|
|
return has_colors();
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
void cmCursesColor::InitColors()
|
|
{
|
|
#ifdef HAVE_CURSES_USE_DEFAULT_COLORS
|
|
if (HasColors()) {
|
|
start_color();
|
|
use_default_colors();
|
|
init_pair(cmCursesColor::BoolOff, COLOR_RED, -1);
|
|
init_pair(cmCursesColor::BoolOn, COLOR_GREEN, -1);
|
|
init_pair(cmCursesColor::String, COLOR_BLUE, -1);
|
|
init_pair(cmCursesColor::Path, COLOR_YELLOW, -1);
|
|
init_pair(cmCursesColor::Options, COLOR_MAGENTA, -1);
|
|
}
|
|
#endif
|
|
}
|