1 /* Output generating routines for GDB CLI.
3 Copyright (C) 1999-2023 Free Software Foundation, Inc.
5 Contributed by Cygnus Solutions.
6 Written by Fernando Nasser for Cygnus.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
28 /* Output an int field. */
31 tui_ui_out::do_field_signed (int fldno
, int width
, ui_align alignment
,
32 const char *fldname
, LONGEST value
)
34 if (suppress_output ())
37 /* Don't print line number, keep it for later. */
38 if (m_start_of_line
== 0 && strcmp (fldname
, "line") == 0)
46 cli_ui_out::do_field_signed (fldno
, width
, alignment
, fldname
, value
);
49 /* Other cli_field_* end up here so alignment and field separators are
50 both handled by tui_field_string. */
53 tui_ui_out::do_field_string (int fldno
, int width
, ui_align align
,
54 const char *fldname
, const char *string
,
55 const ui_file_style
&style
)
57 if (suppress_output ())
62 if (fldname
&& m_line
> 0 && strcmp (fldname
, "fullname") == 0)
65 cli_ui_out::do_field_string (fldno
, width
, align
, fldname
, string
, style
);
69 tui_ui_out::do_field_fmt (int fldno
, int width
, ui_align align
,
70 const char *fldname
, const ui_file_style
&style
,
71 const char *format
, va_list args
)
73 if (suppress_output ())
78 cli_ui_out::do_field_fmt (fldno
, width
, align
, fldname
, style
, format
, args
);
82 tui_ui_out::do_text (const char *string
)
84 if (suppress_output ())
90 /* Printing a source line, so suppress regular output -- the
91 line was shown on the TUI's source window by tui_show_source
93 if (strchr (string
, '\n') != 0)
95 /* We've reached the end of the line, so go back to letting
96 text output go to the console. */
102 if (strchr (string
, '\n'))
105 cli_ui_out::do_text (string
);
108 tui_ui_out::tui_ui_out (ui_file
*stream
)
109 : cli_ui_out (stream
, 0)