summaryrefslogtreecommitdiff
path: root/test/terminal.fl
AgeCommit message (Collapse)Author
2025-11-17Add display_columns() controllerGreg Ercolano
Also fixed 'c' shortcut described in the onscreen help to show "Color Bars".
2025-03-30Fixing a few more compiler warnings.Matthias Melcher
2025-03-06Update version numbers to 1.5.0Albrecht Schlosser
2024-12-09Update Fluid (.fl) files for release 1.4.1Albrecht Schlosser
2024-10-06Update FLUID .fl files in the test/.Matthias Melcher
2024-06-30Fix compiler warningsGreg Ercolano
2024-04-06Rename putchar() to plot_char() (#944)Greg Ercolano
Some old platforms (NetBSD, AIX) implement the common stdio "putchar()" function as a global macro which poisons the global namespace, preventing all C and C++ programs from using "putchar()" as a function or method. There was a long thread about this in fltk.coredev during the period Mar 25 2024 ~ Apr 4 2024, subject "RFC: Fl_Terminal::putchar() in public API" as to why we have no choice but to not use putchar() as a method name.
2024-03-19Update dependencies, whitespace, and Fl_File_Chooser.cxxAlbrecht Schlosser
Rewrite src/Fl_File_Chooser.cxx from its .fl source file
2024-02-16Added attribute checks to test/terminal for recent changes.Greg Ercolano
2024-01-03Limit test/terminal window sizeGreg Ercolano
Prevents window from squishing buttons horizontally. Allows tty height to shrink to no less than a single line.
2023-11-21Added output_translate(): controls lf -> crlf translationGreg Ercolano
2023-11-16Added clear(), some methods protected->publicGreg Ercolano
New public methods: void clear(void); void clear(Fl_Color val); old protected methods made public: void clear_screen(bool scroll_to_hist=true); // ESC [ 2 J void clear_screen_home(bool scroll_to_hist=true); // ESC [ H ESC [ 2 J void cursor_home(void); // ESC [ 0 H test/terminal modified to test these, and added separate tests for both the API and ANSI code ways to do these ops.
2023-11-15Fixes test/terminal box typeMatthias Melcher
2023-11-15Uses the correct Fl_Terminal type in terminal.fl as wellMatthias Melcher
2023-11-14Added textcolor() and color(), doc fixes.Greg Ercolano
textcolor() needed for consistency, color() behavior documented. Both added to the test/terminal app. Elaborated on the special background "see through" color value + behavior, tested with color() in test/terminal app.
2023-11-14Fix compiler warning (suggest-override)Albrecht Schlosser
2023-11-14Fix dependencies and whitespace issuesAlbrecht Schlosser
2023-11-14Fl_Terminal widget (#800)erco77
Pull Fl_Terminal widget from Greg's fork