cpp-terminal
cpp-terminal copied to clipboard
C++ library for writing multiplatform terminal applications
Hey, i encountered some problems with cpp-terminal while working inside of visual studio code. The window class causes wrong colors on wrong parts on the screen and visual studio crashes...
We need to merge the `Term::Window` and `Term::WIndow_24bit` classes some day to avoid having the same code twice (and fix things twice too). The first idea of: ``` struct Color...
cpp-terminal is currently not checking that much for legal inputs on some functions. For example: `Term::Window_24bit scr(0, 0, 10, 10);` returns a segmentation fault, because the used vectors of the...
I think it would be a great thing to have functions to determine things like color support (4bit / 24bit) and maybe even some more information on what the current...
Here is how it looks like for me: It's actually blinking. And when I press an arrow, it disappears.
I think it would be good to provide warnings for problematic keys. That would include: - CTRL+C (stops the program, can be deactivated) - CTRL+Z (the same as CTRL+C but...
Even after the fix of the alt and ctrl keys ALT+N remains broken. I'm not sure yet what's exactly the problem, but it's inside of the `utf8_to_utf32()` functions because it's...
As discussed in #119 it would be a good feature to make it possible to use Dear ImGUI inside of cpp-terminal.
We have to unify the color type as follows: ```diff diff --git a/cpp-terminal/terminal.cpp b/cpp-terminal/terminal.cpp index 69a303f..ff076b8 100644 --- a/cpp-terminal/terminal.cpp +++ b/cpp-terminal/terminal.cpp @@ -624,6 +624,13 @@ void Term::Window_24bit::clear() { } bool...