1 /* Specific command window processing.
3 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
6 Contributed by Hewlett-Packard Company.
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 2 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, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
28 #include "tui/tui-data.h"
29 #include "tui/tui-win.h"
30 #include "tui/tui-io.h"
41 /*****************************************
42 ** STATIC LOCAL FUNCTIONS FORWARD DECLS **
43 ******************************************/
47 /*****************************************
48 ** PUBLIC FUNCTIONS **
49 ******************************************/
51 /* Dispatch the correct tui function based upon the control character. */
53 tui_dispatch_ctrl_char (unsigned int ch)
55 TuiWinInfoPtr winInfo = tui_win_with_focus ();
56 WINDOW *w = cmdWin->generic.handle;
59 ** If the command window has the logical focus, or no-one does
60 ** assume it is the command window; in this case, pass the
61 ** character on through and do nothing here.
63 if (winInfo == (TuiWinInfoPtr) NULL || winInfo == cmdWin)
67 unsigned int c = 0, chCopy = ch;
71 /* If this is an xterm, page next/prev keys aren't returned
72 ** by keypad as a single char, so we must handle them here.
73 ** Seems like a bug in the curses library?
75 term = (char *) getenv ("TERM");
76 for (i = 0; (term && term[i]); i++)
77 term[i] = toupper (term[i]);
78 if ((strcmp (term, "XTERM") == 0) && key_is_start_sequence (ch))
80 unsigned int pageCh = 0, tmpChar;
83 while (!key_is_end_sequence (tmpChar))
85 tmpChar = (int) wgetch (w);
94 else if (tmpChar == 54)
107 tui_scroll_forward (winInfo, 0);
110 tui_scroll_backward (winInfo, 0);
114 tui_scroll_forward (winInfo, 1);
118 tui_scroll_backward (winInfo, 1);
121 tui_scroll_left (winInfo, 1);
124 tui_scroll_right (winInfo, 1);
127 tui_refresh_all_win ();