aboutsummaryrefslogtreecommitdiff
path: root/gdb/tui/tui-out.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-12-12 19:22:07 -0700
committerTom Tromey <tom@tromey.com>2024-03-11 16:27:26 -0600
commit0a909fdd47b94e2d2fd9c0387fb644a98cb35d3b (patch)
tree1d0ff21d200755fde75cd1547bc18cf129f7082a /gdb/tui/tui-out.h
parent0824937af0c0822e629a7076c3f5dd39df3b16be (diff)
downloadgdb-0a909fdd47b94e2d2fd9c0387fb644a98cb35d3b.zip
gdb-0a909fdd47b94e2d2fd9c0387fb644a98cb35d3b.tar.gz
gdb-0a909fdd47b94e2d2fd9c0387fb644a98cb35d3b.tar.bz2
Remove tui-out.[ch]
The other day on irc, we were discussing the "m_line" hack in tui-out.c, and I mentioned that it would be nice to replace this with a new ui_out_flag. Later, I looked at ui_out_flag and found: ui_source_list = (1 << 0), ... and sure enough, this is tested already. This patch removes tui-out.[ch] and changes the TUI to use an ordinary cli-out object without this flag set. As far as I can tell, this doesn't affect behavior at all -- the TUI tests all pass, and interactively I tried switching stack frames, "list", etc, and it all seems to work. New in v2: fixed the problem pointed out by Keith, and added a test case for that scenario. Reviewed-By: Andrew Burgess <aburgess@redhat.com>
Diffstat (limited to 'gdb/tui/tui-out.h')
-rw-r--r--gdb/tui/tui-out.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/gdb/tui/tui-out.h b/gdb/tui/tui-out.h
deleted file mode 100644
index e4ebb1e..0000000
--- a/gdb/tui/tui-out.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/* Copyright (C) 2016-2024 Free Software Foundation, Inc.
-
- 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_OUT_H
-#define TUI_TUI_OUT_H
-
-#include "cli-out.h"
-
-/* A ui_out class for the TUI. This is just like the CLI's ui_out,
- except that it overrides output methods to detect when a source
- line is being printed and show the source in the TUI's source
- window instead of printing the line in the console window. */
-class tui_ui_out : public cli_ui_out
-{
-public:
-
- explicit tui_ui_out (ui_file *stream);
-
-protected:
-
- void do_field_signed (int fldno, int width, ui_align align, const char *fldname,
- LONGEST value) override;
- void do_field_string (int fldno, int width, ui_align align, const char *fldname,
- const char *string, const ui_file_style &style) override;
- void do_field_fmt (int fldno, int width, ui_align align, const char *fldname,
- const ui_file_style &style,
- const char *format, va_list args) override
- ATTRIBUTE_PRINTF (7, 0);
- void do_text (const char *string) override;
-
-private:
-
- /* These fields are used to make print_source_lines show the source
- in the TUI's source window instead of in the console.
- M_START_OF_LINE is incremented whenever something is output to
- the ui_out. If an integer field named "line" is printed on the
- ui_out, and nothing else has been printed yet (both
- M_START_OF_LINE and M_LINE are still 0), we assume
- print_source_lines is starting to print a source line, and thus
- record the line number in M_LINE. Afterwards, when we see a
- string field named "fullname" being output, we take the fullname
- and the recorded line and show the source line in the TUI's
- source window. tui_ui_out::do_text() suppresses text output
- until it sees an endline being printed, at which point these
- variables are reset back to 0. */
- int m_line = 0;
- int m_start_of_line = 0;
-};
-
-#endif /* TUI_TUI_OUT_H */