1 1.1 christos /* General window behavior. 2 1.1 christos 3 1.1.1.4 christos Copyright (C) 1998-2017 Free Software Foundation, Inc. 4 1.1 christos 5 1.1 christos Contributed by Hewlett-Packard Company. 6 1.1 christos 7 1.1 christos This file is part of GDB. 8 1.1 christos 9 1.1 christos This program is free software; you can redistribute it and/or modify 10 1.1 christos it under the terms of the GNU General Public License as published by 11 1.1 christos the Free Software Foundation; either version 3 of the License, or 12 1.1 christos (at your option) any later version. 13 1.1 christos 14 1.1 christos This program is distributed in the hope that it will be useful, 15 1.1 christos but WITHOUT ANY WARRANTY; without even the implied warranty of 16 1.1 christos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 1.1 christos GNU General Public License for more details. 18 1.1 christos 19 1.1 christos You should have received a copy of the GNU General Public License 20 1.1 christos along with this program. If not, see <http://www.gnu.org/licenses/>. */ 21 1.1 christos 22 1.1 christos #ifndef TUI_WINGENERAL_H 23 1.1 christos #define TUI_WINGENERAL_H 24 1.1 christos 25 1.1 christos struct tui_win_info; 26 1.1 christos struct tui_gen_win_info; 27 1.1 christos 28 1.1 christos extern void tui_unhighlight_win (struct tui_win_info *); 29 1.1 christos extern void tui_make_visible (struct tui_gen_win_info *); 30 1.1 christos extern void tui_make_invisible (struct tui_gen_win_info *); 31 1.1 christos extern void tui_make_all_visible (void); 32 1.1 christos extern void tui_make_all_invisible (void); 33 1.1 christos extern void tui_make_window (struct tui_gen_win_info *, int); 34 1.1 christos extern struct tui_win_info *tui_copy_win (struct tui_win_info *); 35 1.1 christos extern void tui_box_win (struct tui_gen_win_info *, int); 36 1.1 christos extern void tui_highlight_win (struct tui_win_info *); 37 1.1 christos extern void tui_check_and_display_highlight_if_needed (struct tui_win_info *); 38 1.1 christos extern void tui_refresh_all (struct tui_win_info **); 39 1.1 christos extern void tui_delete_win (WINDOW *window); 40 1.1 christos extern void tui_refresh_win (struct tui_gen_win_info *); 41 1.1 christos 42 1.1 christos #endif 43