3bfe529244c6b2324b4f592c84418c4856d31e13
1 /* TUI display locator.
3 Copyright (C) 1998-2019 Free Software Foundation, Inc.
5 Contributed by Hewlett-Packard Company.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #ifndef TUI_TUI_STACK_H
23 #define TUI_TUI_STACK_H
25 #include "tui/tui-data.h"
29 /* Locator window class. */
31 struct tui_locator_window
: public tui_gen_win_info
34 : tui_gen_win_info (LOCATOR_WIN
)
40 int max_height () const override
45 int min_height () const override
50 void rerender () override
;
52 /* Update the locator, with the provided arguments.
54 Returns true if any of the locator's fields were actually
55 changed, and false otherwise. */
56 bool set_locator_info (struct gdbarch
*gdbarch
,
57 const struct symtab_and_line
&sal
,
58 const char *procname
);
60 /* Set the full_name portion of the locator. */
61 void set_locator_fullname (const char *fullname
);
63 std::string full_name
;
64 std::string proc_name
;
67 /* Architecture associated with code at this location. */
68 struct gdbarch
*gdbarch
= nullptr;
72 /* Create the status line to display as much information as we can
73 on this single line: target name, process number, current
74 function, current line, current PC, SingleKey mode. */
76 std::string
make_status_line () const;
79 extern void tui_update_locator_fullname (struct symtab
*symtab
);
80 extern void tui_show_locator_content (void);
81 extern int tui_show_frame_info (struct frame_info
*);
83 #endif /* TUI_TUI_STACK_H */
This page took 0.030578 seconds and 3 git commands to generate.