GDB (xrefs)
Loading...
Searching...
No Matches
tui.h
Go to the documentation of this file.
1/* External/Public TUI Header File.
2
3 Copyright (C) 1998-2023 Free Software Foundation, Inc.
4
5 Contributed by Hewlett-Packard Company.
6
7 This file is part of GDB.
8
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.
13
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.
18
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/>. */
21
22#ifndef TUI_TUI_H
23#define TUI_TUI_H
24
25/* Flag to control tui debugging. */
26
27extern bool debug_tui;
28
29/* Print a "tui" debug statement. */
30
31#define tui_debug_printf(fmt, ...) \
32 debug_prefixed_printf_cond (debug_tui, "tui", fmt, ##__VA_ARGS__)
33
34/* Print "tui" enter/exit debug statements. */
35
36#define TUI_SCOPED_DEBUG_ENTER_EXIT \
37 scoped_debug_enter_exit (debug_tui, "tui")
38
39struct ui_file;
40
41/* Types of error returns. */
43{
46};
47
48/* Types of windows. */
50{
56 /* This must ALWAYS be AFTER the major windows last. */
58};
59
60extern CORE_ADDR tui_get_low_disassembly_address (struct gdbarch *,
61 CORE_ADDR, CORE_ADDR);
62extern void tui_show_assembly (struct gdbarch *gdbarch, CORE_ADDR addr);
63extern bool tui_is_window_visible (enum tui_win_type type);
64extern bool tui_get_command_dimension (unsigned int *width,
65 unsigned int *height);
66
67/* Initialize readline and configure the keymap for the switching key
68 shortcut. May be called more than once without issue. */
70
71/* Enter in the tui mode (curses). */
72extern void tui_enable (void);
73
74/* Leave the tui mode. */
75extern void tui_disable (void);
76
78{
79 /* Plain command mode to enter gdb commands. */
81
82 /* SingleKey mode with some keys bound to gdb commands. */
84
85 /* Read/edit one command and return to SingleKey after it's
86 processed. */
88};
89
91
92/* Change the TUI key mode by installing the appropriate readline
93 keymap. */
94extern void tui_set_key_mode (enum tui_key_mode mode);
95
96extern bool tui_active;
97
98#endif /* TUI_TUI_H */
bool tui_get_command_dimension(unsigned int *width, unsigned int *height)
Definition tui.c:580
void tui_disable(void)
Definition tui.c:510
void tui_ensure_readline_initialized()
Definition tui.c:281
tui_status
Definition tui.h:43
@ TUI_SUCCESS
Definition tui.h:44
@ TUI_FAILURE
Definition tui.h:45
void tui_show_assembly(struct gdbarch *gdbarch, CORE_ADDR addr)
Definition tui.c:560
tui_win_type
Definition tui.h:50
@ DISASSEM_WIN
Definition tui.h:52
@ CMD_WIN
Definition tui.h:54
@ STATUS_WIN
Definition tui.h:55
@ DATA_WIN
Definition tui.h:53
@ SRC_WIN
Definition tui.h:51
@ MAX_MAJOR_WINDOWS
Definition tui.h:57
bool debug_tui
Definition tui.c:55
enum tui_key_mode tui_current_key_mode
Definition tui.c:75
bool tui_is_window_visible(enum tui_win_type type)
Definition tui.c:568
CORE_ADDR tui_get_low_disassembly_address(struct gdbarch *, CORE_ADDR, CORE_ADDR)
Definition tui-disasm.c:424
void tui_enable(void)
Definition tui.c:368
bool tui_active
Definition tui.c:72
void tui_set_key_mode(enum tui_key_mode mode)
Definition tui.c:270
tui_key_mode
Definition tui.h:78
@ TUI_ONE_COMMAND_MODE
Definition tui.h:87
@ TUI_SINGLE_KEY_MODE
Definition tui.h:83
@ TUI_COMMAND_MODE
Definition tui.h:80