1 /* General window behavior.
3 Copyright (C) 1998-2019 Free Software Foundation, Inc.
5 Contributed by Hewlett-Packard Company.
7 This file is part of GDB.
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.
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.
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/>. */
24 #include "tui/tui-data.h"
25 #include "tui/tui-wingeneral.h"
26 #include "tui/tui-win.h"
28 #include "gdb_curses.h"
30 /***********************
32 ***********************/
34 /* Refresh the window. */
36 tui_refresh_win (struct tui_gen_win_info
*win_info
)
38 if (win_info
->type
== DATA_WIN
&& win_info
->content_size
> 0)
42 for (i
= 0; (i
< win_info
->content_size
); i
++)
44 struct tui_gen_win_info
*data_item_win_ptr
;
46 data_item_win_ptr
= &win_info
->content
[i
]->which_element
.data_window
;
47 if (data_item_win_ptr
!= NULL
48 && data_item_win_ptr
->handle
!= (WINDOW
*) NULL
)
49 wrefresh (data_item_win_ptr
->handle
);
52 else if (win_info
->type
== CMD_WIN
)
58 if (win_info
->handle
!= (WINDOW
*) NULL
)
59 wrefresh (win_info
->handle
);
66 /* Function to delete the curses window, checking for NULL. */
68 tui_delete_win (WINDOW
*window
)
70 if (window
!= (WINDOW
*) NULL
)
77 /* Draw a border arround the window. */
79 box_win (struct tui_gen_win_info
*win_info
,
82 if (win_info
&& win_info
->handle
)
87 win
= win_info
->handle
;
88 if (highlight_flag
== HILITE
)
89 attrs
= tui_active_border_attrs
;
91 attrs
= tui_border_attrs
;
95 wborder (win
, tui_border_vline
, tui_border_vline
,
96 tui_border_hline
, tui_border_hline
,
97 tui_border_ulcorner
, tui_border_urcorner
,
98 tui_border_llcorner
, tui_border_lrcorner
);
100 box (win
, tui_border_vline
, tui_border_hline
);
103 mvwaddstr (win
, 0, 3, win_info
->title
);
104 wattroff (win
, attrs
);
110 tui_unhighlight_win (struct tui_win_info
*win_info
)
113 && win_info
->generic
.handle
!= (WINDOW
*) NULL
)
115 box_win ((struct tui_gen_win_info
*) win_info
, NO_HILITE
);
116 wrefresh (win_info
->generic
.handle
);
117 tui_set_win_highlight (win_info
, 0);
123 tui_highlight_win (struct tui_win_info
*win_info
)
126 && win_info
->can_highlight
127 && win_info
->generic
.handle
!= (WINDOW
*) NULL
)
129 box_win ((struct tui_gen_win_info
*) win_info
, HILITE
);
130 wrefresh (win_info
->generic
.handle
);
131 tui_set_win_highlight (win_info
, 1);
136 tui_check_and_display_highlight_if_needed (struct tui_win_info
*win_info
)
138 if (win_info
!= NULL
&& win_info
->generic
.type
!= CMD_WIN
)
140 if (win_info
->is_highlighted
)
141 tui_highlight_win (win_info
);
143 tui_unhighlight_win (win_info
);
151 tui_make_window (struct tui_gen_win_info
*win_info
, int box_it
)
155 handle
= newwin (win_info
->height
,
159 win_info
->handle
= handle
;
160 if (handle
!= (WINDOW
*) NULL
)
162 if (box_it
== BOX_WINDOW
)
163 box_win (win_info
, NO_HILITE
);
164 win_info
->is_visible
= TRUE
;
165 scrollok (handle
, TRUE
);
170 /* We can't really make windows visible, or invisible. So we have to
171 delete the entire window when making it visible, and create it
172 again when making it visible. */
174 make_visible (struct tui_gen_win_info
*win_info
, int visible
)
176 /* Don't tear down/recreate command window. */
177 if (win_info
->type
== CMD_WIN
)
182 if (!win_info
->is_visible
)
184 tui_make_window (win_info
,
185 (win_info
->type
!= CMD_WIN
186 && !tui_win_is_auxillary (win_info
->type
)));
187 win_info
->is_visible
= TRUE
;
191 && win_info
->is_visible
192 && win_info
->handle
!= (WINDOW
*) NULL
)
194 win_info
->is_visible
= FALSE
;
195 tui_delete_win (win_info
->handle
);
196 win_info
->handle
= NULL
;
203 tui_make_visible (struct tui_gen_win_info
*win_info
)
205 make_visible (win_info
, 1);
209 tui_make_invisible (struct tui_gen_win_info
*win_info
)
211 make_visible (win_info
, 0);
215 /* Makes all windows invisible (except the command and locator
218 make_all_visible (int visible
)
222 for (i
= 0; i
< MAX_MAJOR_WINDOWS
; i
++)
224 if (tui_win_list
[i
] != NULL
225 && ((tui_win_list
[i
])->generic
.type
) != CMD_WIN
)
227 if (tui_win_is_source_type ((tui_win_list
[i
])->generic
.type
))
228 make_visible ((tui_win_list
[i
])->detail
.source_info
.execution_info
,
230 make_visible ((struct tui_gen_win_info
*) tui_win_list
[i
], visible
);
238 tui_make_all_visible (void)
240 make_all_visible (1);
244 tui_make_all_invisible (void)
246 make_all_visible (0);
249 /* Function to refresh all the windows currently displayed. */
252 tui_refresh_all (struct tui_win_info
**list
)
255 struct tui_gen_win_info
*locator
= tui_locator_win_info_ptr ();
257 for (type
= SRC_WIN
; (type
< MAX_MAJOR_WINDOWS
); type
++)
259 if (list
[type
] && list
[type
]->generic
.is_visible
)
261 if (type
== SRC_WIN
|| type
== DISASSEM_WIN
)
263 touchwin (list
[type
]->detail
.source_info
.execution_info
->handle
);
264 tui_refresh_win (list
[type
]->detail
.source_info
.execution_info
);
266 touchwin (list
[type
]->generic
.handle
);
267 tui_refresh_win (&list
[type
]->generic
);
270 if (locator
->is_visible
)
272 touchwin (locator
->handle
);
273 tui_refresh_win (locator
);
278 /*********************************
279 ** Local Static Functions
280 *********************************/