mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-09-28 16:29:34 +08:00

FTXUI supported only the 16 colors palette. This patch adds support for the 256 palette and the TrueColor(8×8×8) mode. This was made by kerdelos@ and fixes issue: https://github.com/ArthurSonzogni/FTXUI/issues/45 Co-authored-by: Damien D <kerdelos@gmail.com> Co-authored-by: Arthur Sonzogni <sonzogniarthur@gmail.com>
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
#include "ftxui/screen/terminal.hpp"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <cstdlib>
|
|
|
|
#if defined(_WIN32)
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#define NOMINMAX
|
|
#include <Windows.h>
|
|
#else
|
|
#include <sys/ioctl.h>
|
|
#include <unistd.h>
|
|
#endif
|
|
|
|
#include <iostream>
|
|
|
|
namespace ftxui {
|
|
|
|
Terminal::Dimensions Terminal::Size() {
|
|
#if defined(__EMSCRIPTEN__)
|
|
return Dimensions{80, 43};
|
|
#elif defined(_WIN32)
|
|
CONSOLE_SCREEN_BUFFER_INFO csbi;
|
|
int columns, rows;
|
|
|
|
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi);
|
|
columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
|
|
rows = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
|
|
return Dimensions{columns, rows};
|
|
#else
|
|
winsize w;
|
|
ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);
|
|
return Dimensions{w.ws_col, w.ws_row};
|
|
#endif
|
|
}
|
|
|
|
bool Terminal::CanSupportTrueColors() {
|
|
std::string COLORTERM = std::getenv("COLORTERM");
|
|
return COLORTERM.compare("24bit") || COLORTERM.compare("trueColor");
|
|
}
|
|
|
|
} // namespace ftxui
|
|
|
|
// Copyright 2020 Arthur Sonzogni. All rights reserved.
|
|
// Use of this source code is governed by the MIT license that can be found in
|
|
// the LICENSE file.
|