2004-01-18 Michael Chastain <mec.gnu@mindspring.com>
[deliverable/binutils-gdb.git] / gdb / tui / tuiIO.h
CommitLineData
f377b406 1/* TUI support I/O functions.
e09d2eba 2 Copyright 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
f377b406
SC
3 Contributed by Hewlett-Packard Company.
4
5 This file is part of GDB.
6
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.
11
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.
16
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. */
21
c906108c
SS
22#ifndef _TUI_IO_H
23#define _TUI_IO_H
c906108c
SS
24
25#include <stdio.h>
26
a198b876
SC
27/* Print the string in the curses command window. */
28extern void tui_puts (const char *);
c906108c 29
a198b876
SC
30/* Setup the IO for curses or non-curses mode. */
31extern void tui_setup_io (int mode);
32
33/* Initialize the IO for gdb in curses mode. */
34extern void tui_initialize_io (void);
35
36/* Get a character from the command window. */
37extern int tui_getc (FILE*);
c906108c 38
e09d2eba
SC
39/* Readline callback.
40 Redisplay the command line with its prompt after readline has
41 changed the edited text. */
42extern void tui_redisplay_readline (void);
43
2b68e2c5
SC
44extern struct ui_out *tui_out;
45extern struct ui_out *tui_old_uiout;
c906108c
SS
46
47#define m_tuiStartNewLine tuiStartNewLines(1)
48#define m_isStartSequence(ch) (ch == 27)
49#define m_isEndSequence(ch) (ch == 126)
50#define m_isBackspace(ch) (ch == 8)
51#define m_isDeleteChar(ch) (ch == KEY_DC)
52#define m_isDeleteLine(ch) (ch == KEY_DL)
53#define m_isDeleteToEol(ch) (ch == KEY_EOL)
54#define m_isNextPage(ch) (ch == KEY_NPAGE)
55#define m_isPrevPage(ch) (ch == KEY_PPAGE)
56#define m_isLeftArrow(ch) (ch == KEY_LEFT)
57#define m_isRightArrow(ch) (ch == KEY_RIGHT)
58
59#define m_isCommandChar(ch) (m_isNextPage(ch) || m_isPrevPage(ch) || \
60 m_isLeftArrow(ch) || m_isRightArrow(ch) || \
61 (ch == KEY_UP) || (ch == KEY_DOWN) || \
62 (ch == KEY_SF) || (ch == KEY_SR) || \
63 (ch == (int)'\f') || m_isStartSequence(ch))
64
65#define m_isXdbStyleCommandChar(ch) (m_isNextPage(ch) || m_isPrevPage(ch))
66
67
c5aa993b 68#endif
a198b876 69
This page took 0.412496 seconds and 4 git commands to generate.