1 /* External/Public TUI Header File.
2 Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
3 Contributed by Hewlett-Packard Company.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
38 /* Opaque data type */
41 Opaque (*OpaqueFuncPtr) (va_list);
42 typedef char **OpaqueList;
43 typedef OpaqueList OpaquePtr;
45 /* Generic function pointer */
46 typedef void (*TuiVoidFuncPtr) (va_list);
47 typedef int (*TuiIntFuncPtr) (va_list);
49 typedef Opaque (*TuiOpaqueFuncPtr) (va_list);
51 typedef OpaqueFuncPtr TuiOpaqueFuncPtr;
53 extern void strcat_to_buf (char *, int, const char *);
55 /* Types of error returns */
61 TuiStatus, *TuiStatusPtr;
63 /* Types of windows */
70 /* This must ALWAYS be AFTER the major windows last */
72 /* auxillary windows */
76 /* This must ALWAYS be next to last */
78 UNDEFINED_WIN /* LAST */
80 TuiWinType, *TuiWinTypePtr;
82 /* This is a point definition */
83 typedef struct _TuiPoint
87 TuiPoint, *TuiPointPtr;
89 /* GENERAL TUI FUNCTIONS */
91 extern void tuiFree (char *);
92 extern CORE_ADDR tuiGetLowDisassemblyAddress (CORE_ADDR, CORE_ADDR);
93 extern void tui_show_assembly (CORE_ADDR addr);
94 extern int tui_is_window_visible (TuiWinType type);
95 extern int tui_get_command_dimension (int *width, int *height);
97 /* Initialize readline and configure the keymap for the switching
99 extern void tui_initialize_readline (void);
101 /* Enter in the tui mode (curses). */
102 extern void tui_enable (void);
104 /* Leave the tui mode. */
105 extern void tui_disable (void);
109 /* Plain command mode to enter gdb commands. */
112 /* SingleKey mode with some keys bound to gdb commands. */
115 /* Read/edit one command and return to SingleKey after it's processed. */
119 extern enum tui_key_mode tui_current_key_mode;
121 /* Change the TUI key mode by installing the appropriate readline keymap. */
122 extern void tui_set_key_mode (enum tui_key_mode mode);
124 extern void tui_initialize_io (void);
126 extern void tui_initialize_readline (void);
128 extern int tui_active;
130 extern void tui_install_hooks (void);
131 extern void tui_remove_hooks (void);
133 extern void tui_show_source (const char *file, int line);
135 extern struct ui_out *tui_out_new (struct ui_file *stream);
138 extern TuiStatus tui_set_layout (const char *);
141 extern void tuiUpdateAllExecInfos (void);