mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-28 20:43:45 +08:00
55c10aca2e
With styling enabled, I think the way we display the TUI's highlighted/current line is very ugly and distracting. The problem in my view is that we reverse foreground/background in colored text as well, leading to rainbow of background colors. This patch changes that to something that I find much more sensible -- only reverse the default foreground/background colors, leave styled text colors alone. If the foreground color is not the default (because the text was styled), leave the foreground color as is. If e.g., the terminal is fg=BLACK, and bg=WHITE, and the style wants to print text in RED, reverse the background color (print in BLACK), but still print the text in RED. Note: The new ui_file_style::set_fg method isn't called set_foreground instead, because set_foreground is a macro in /usr/lib/term.h (ncurses). gdb/ChangeLog: 2019-03-18 Pedro Alves <palves@redhat.com> * tui/tui-io.c (reverse_mode_p, reverse_save_bg, reverse_save_fg): New globals. (apply_style): New, factored out from ... (apply_ansi_escape): ... this. Handle reverse video mode. (tui_set_reverse_mode): New function. * tui/tui-io.h (tui_set_reverse_mode): New declaration. * tui/tui-winsource.c (tui_show_source_line): Use tui_set_reverse_mode instead of setting A_STANDOUT. * ui-style.h (struct ui_file_style) <set_reverse, set_fg, set_bg>: New setter methods.
58 lines
1.8 KiB
C++
58 lines
1.8 KiB
C++
/* TUI support I/O functions.
|
|
|
|
Copyright (C) 1998-2019 Free Software Foundation, Inc.
|
|
|
|
Contributed by Hewlett-Packard Company.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef TUI_TUI_IO_H
|
|
#define TUI_TUI_IO_H
|
|
|
|
#include "gdb_curses.h"
|
|
|
|
struct ui_out;
|
|
class cli_ui_out;
|
|
|
|
/* Print the string in the curses command window. */
|
|
extern void tui_puts (const char *, WINDOW * = nullptr);
|
|
|
|
/* Print LENGTH characters from the buffer pointed to by BUF to the
|
|
curses command window. */
|
|
extern void tui_write (const char *buf, size_t length);
|
|
|
|
/* Setup the IO for curses or non-curses mode. */
|
|
extern void tui_setup_io (int mode);
|
|
|
|
/* Initialize the IO for gdb in curses mode. */
|
|
extern void tui_initialize_io (void);
|
|
|
|
/* Readline callback.
|
|
Redisplay the command line with its prompt after readline has
|
|
changed the edited text. */
|
|
extern void tui_redisplay_readline (void);
|
|
|
|
/* Expand TABs into spaces. */
|
|
extern char *tui_expand_tabs (const char *, int);
|
|
|
|
/* Enter/leave reverse video mode. */
|
|
extern void tui_set_reverse_mode (WINDOW *w, bool reverse);
|
|
|
|
extern struct ui_out *tui_out;
|
|
extern cli_ui_out *tui_old_uiout;
|
|
|
|
#endif /* TUI_TUI_IO_H */
|