FTXUI
5.0.0
C++ functional terminal UI.
|
Data Structures | |
class | Private |
Public Member Functions | |
void | TrackMouse (bool enable=true) |
Set whether mouse is tracked and events reported. called outside of the main loop. E.g ScreenInteractive::Loop(...) . More... | |
void | Loop (Component) |
Execute the main loop. More... | |
void | Exit () |
Exit the main loop. More... | |
Closure | ExitLoopClosure () |
Return a function to exit the main loop. More... | |
void | Post (Task task) |
Add a task to the main loop. It will be executed later, after every other scheduled tasks. More... | |
void | PostEvent (Event event) |
Add an event to the main loop. It will be executed later, after every other scheduled events. More... | |
void | RequestAnimationFrame () |
Add a task to draw the screen one more time, until all the animations are done. More... | |
CapturedMouse | CaptureMouse () |
Try to get the unique lock about behing able to capture the mouse. More... | |
Closure | WithRestoredIO (Closure) |
Decorate a function. It executes the same way, but with the currently active screen terminal hooks temporarilly uninstalled during its execution. More... | |
void | ForceHandleCtrlC (bool force) |
Force FTXUI to handle or not handle Ctrl-C, even if the component catches the Event::CtrlC. More... | |
void | ForceHandleCtrlZ (bool force) |
Force FTXUI to handle or not handle Ctrl-Z, even if the component catches the Event::CtrlZ. More... | |
std::string | ToString () const |
void | Print () const |
void | Clear () |
Clear all the pixel from the screen. More... | |
std::string | ResetPosition (bool clear=false) const |
Return a string to be printed in order to reset the cursor position to the beginning of the screen. More... | |
void | ApplyShader () |
Cursor | cursor () const |
void | SetCursor (Cursor cursor) |
uint8_t | RegisterHyperlink (const std::string &link) |
const std::string & | Hyperlink (uint8_t id) const |
std::string & | at (int x, int y) |
Access a character in a cell at a given position. More... | |
const std::string & | at (int x, int y) const |
Access a character in a cell at a given position. More... | |
Pixel & | PixelAt (int x, int y) |
Access a cell (Pixel) at a given position. More... | |
const Pixel & | PixelAt (int x, int y) const |
Access a cell (Pixel) at a given position. More... | |
int | dimx () const |
int | dimy () const |
Static Public Member Functions | |
static ScreenInteractive | FixedSize (int dimx, int dimy) |
static ScreenInteractive | Fullscreen () |
static ScreenInteractive | FullscreenPrimaryScreen () |
static ScreenInteractive | FullscreenAlternateScreen () |
static ScreenInteractive | FitComponent () |
static ScreenInteractive | TerminalOutput () |
static ScreenInteractive * | Active () |
Return the currently active screen, or null if none. More... | |
static Screen | Create (Dimensions dimension) |
Create a screen with the given dimension. More... | |
static Screen | Create (Dimensions width, Dimensions height) |
Create a screen with the given dimension along the x-axis and y-axis. More... | |
Data Fields | |
friend | Private |
Box | stencil |
Protected Attributes | |
Cursor | cursor_ |
std::vector< std::string > | hyperlinks_ = {""} |
int | dimx_ |
int | dimy_ |
std::vector< std::vector< Pixel > > | pixels_ |
Definition at line 29 of file screen_interactive.hpp.
|
static |
Definition at line 359 of file screen_interactive.cpp.
|
static |
Create a ScreenInteractive taking the full terminal size. This is using the alternate screen buffer to avoid messing with the terminal content.
ScreenInteractive::FullscreenAlternateScreen()
Definition at line 373 of file screen_interactive.cpp.
|
static |
Create a ScreenInteractive taking the full terminal size. The primary screen buffer is being used. It means if the terminal is resized, the previous content might mess up with the terminal content.
Definition at line 382 of file screen_interactive.cpp.
|
static |
Create a ScreenInteractive taking the full terminal size. This is using the alternate screen buffer to avoid messing with the terminal content.
Definition at line 395 of file screen_interactive.cpp.
|
static |
Definition at line 415 of file screen_interactive.cpp.
|
static |
Definition at line 405 of file screen_interactive.cpp.
void TrackMouse | ( | bool | enable = true | ) |
Set whether mouse is tracked and events reported. called outside of the main loop. E.g ScreenInteractive::Loop(...)
.
enable | Whether to enable mouse event tracking. |
ScreenInteractive::Loop
. Definition at line 440 of file screen_interactive.cpp.
|
static |
Return the currently active screen, or null if none.
Definition at line 581 of file screen_interactive.cpp.
Execute the main loop.
component | The component to draw. |
Definition at line 494 of file screen_interactive.cpp.
void Exit | ( | ) |
Exit the main loop.
Definition at line 944 of file screen_interactive.cpp.
Closure ExitLoopClosure | ( | ) |
Return a function to exit the main loop.
Definition at line 938 of file screen_interactive.cpp.
void Post | ( | Task | task | ) |
Add a task to the main loop. It will be executed later, after every other scheduled tasks.
Definition at line 447 of file screen_interactive.cpp.
void PostEvent | ( | Event | event | ) |
Add an event to the main loop. It will be executed later, after every other scheduled events.
Definition at line 460 of file screen_interactive.cpp.
void RequestAnimationFrame | ( | ) |
Add a task to draw the screen one more time, until all the animations are done.
Definition at line 466 of file screen_interactive.cpp.
CapturedMouse CaptureMouse | ( | ) |
Try to get the unique lock about behing able to capture the mouse.
Definition at line 482 of file screen_interactive.cpp.
Decorate a function. It executes the same way, but with the currently active screen terminal hooks temporarilly uninstalled during its execution.
fn | The function to decorate. |
Definition at line 559 of file screen_interactive.cpp.
void ForceHandleCtrlC | ( | bool | force | ) |
Force FTXUI to handle or not handle Ctrl-C, even if the component catches the Event::CtrlC.
Definition at line 569 of file screen_interactive.cpp.
void ForceHandleCtrlZ | ( | bool | force | ) |
Force FTXUI to handle or not handle Ctrl-Z, even if the component catches the Event::CtrlZ.
Definition at line 575 of file screen_interactive.cpp.
|
staticinherited |
Create a screen with the given dimension.
Definition at line 388 of file screen.cpp.
|
staticinherited |
Create a screen with the given dimension along the x-axis and y-axis.
Definition at line 382 of file screen.cpp.
|
inherited |
Produce a std::string that can be used to print the Screen on the terminal.
Definition at line 409 of file screen.cpp.
|
inherited |
Definition at line 446 of file screen.cpp.
|
inherited |
Clear all the pixel from the screen.
Definition at line 488 of file screen.cpp.
|
inherited |
Return a string to be printed in order to reset the cursor position to the beginning of the screen.
Definition at line 469 of file screen.cpp.
|
inherited |
Definition at line 500 of file screen.cpp.
|
inlineinherited |
Definition at line 62 of file screen.hpp.
|
inlineinherited |
Definition at line 63 of file screen.hpp.
|
inherited |
Definition at line 527 of file screen.cpp.
|
inherited |
Definition at line 540 of file screen.cpp.
|
inherited |
|
inherited |
|
inherited |
|
inherited |
friend Private |
Definition at line 139 of file screen_interactive.hpp.
|
protectedinherited |
Definition at line 71 of file screen.hpp.
|
protectedinherited |
Definition at line 72 of file screen.hpp.
|
protectedinherited |