Make TUI borders respect "set style enabled"
[deliverable/binutils-gdb.git] / gdb / tui / tui-wingeneral.c
1 /* General window behavior.
2
3 Copyright (C) 1998-2020 Free Software Foundation, Inc.
4
5 Contributed by Hewlett-Packard Company.
6
7 This file is part of GDB.
8
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.
13
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.
18
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/>. */
21
22 #include "defs.h"
23 #include "tui/tui.h"
24 #include "tui/tui-data.h"
25 #include "tui/tui-io.h"
26 #include "tui/tui-wingeneral.h"
27 #include "tui/tui-win.h"
28 #include "tui/tui-stack.h"
29 #include "cli/cli-style.h"
30
31 #include "gdb_curses.h"
32
33 /* See tui-data.h. */
34
35 void
36 tui_gen_win_info::refresh_window ()
37 {
38 if (handle != NULL)
39 wrefresh (handle.get ());
40 }
41
42 /* Draw a border arround the window. */
43 static void
44 box_win (struct tui_win_info *win_info,
45 bool highlight_flag)
46 {
47 WINDOW *win;
48 int attrs;
49
50 win = win_info->handle.get ();
51 if (highlight_flag)
52 attrs = tui_active_border_attrs;
53 else
54 attrs = tui_border_attrs;
55
56 /* tui_apply_style resets the style entirely, so be sure to call it
57 before applying ATTRS. */
58 if (cli_styling)
59 tui_apply_style (win, (highlight_flag
60 ? tui_active_border_style.style ()
61 : tui_border_style.style ()));
62 wattron (win, attrs);
63 #ifdef HAVE_WBORDER
64 wborder (win, tui_border_vline, tui_border_vline,
65 tui_border_hline, tui_border_hline,
66 tui_border_ulcorner, tui_border_urcorner,
67 tui_border_llcorner, tui_border_lrcorner);
68 #else
69 box (win, tui_border_vline, tui_border_hline);
70 #endif
71 if (!win_info->title.empty ())
72 {
73 /* Emit "+-TITLE-+" -- so 2 characters on the right and 2 on
74 the left. */
75 int max_len = win_info->width - 2 - 2;
76
77 if (win_info->title.size () <= max_len)
78 mvwaddstr (win, 0, 3, win_info->title.c_str ());
79 else
80 {
81 std::string truncated
82 = "..." + win_info->title.substr (win_info->title.size ()
83 - max_len + 3);
84 mvwaddstr (win, 0, 3, truncated.c_str ());
85 }
86 }
87 wattroff (win, attrs);
88 tui_apply_style (win, ui_file_style ());
89 }
90
91
92 void
93 tui_unhighlight_win (struct tui_win_info *win_info)
94 {
95 if (win_info != NULL
96 && win_info->can_box ()
97 && win_info->handle != NULL)
98 {
99 box_win (win_info, false);
100 win_info->refresh_window ();
101 win_info->set_highlight (false);
102 }
103 }
104
105
106 void
107 tui_highlight_win (struct tui_win_info *win_info)
108 {
109 if (win_info != NULL
110 && win_info->can_box ()
111 && win_info->handle != NULL)
112 {
113 box_win (win_info, true);
114 win_info->refresh_window ();
115 win_info->set_highlight (true);
116 }
117 }
118
119 void
120 tui_win_info::check_and_display_highlight_if_needed ()
121 {
122 if (can_box ())
123 {
124 if (is_highlighted)
125 tui_highlight_win (this);
126 else
127 tui_unhighlight_win (this);
128 }
129 }
130
131
132 void
133 tui_gen_win_info::make_window ()
134 {
135 handle.reset (newwin (height, width, y, x));
136 if (handle != NULL)
137 scrollok (handle.get (), TRUE);
138 }
139
140 void
141 tui_win_info::make_window ()
142 {
143 tui_gen_win_info::make_window ();
144 if (handle != NULL && can_box ())
145 box_win (this, false);
146 }
147
148 /* We can't really make windows visible, or invisible. So we have to
149 delete the entire window when making it visible, and create it
150 again when making it visible. */
151 void
152 tui_gen_win_info::make_visible (bool visible)
153 {
154 if (is_visible () == visible)
155 return;
156
157 if (visible)
158 make_window ();
159 else
160 handle.reset (nullptr);
161 }
162
163 /* See tui-wingeneral.h. */
164
165 void
166 tui_make_all_invisible (void)
167 {
168 for (tui_win_info *win_info : all_tui_windows ())
169 win_info->make_visible (false);
170 }
171
172 /* Function to refresh all the windows currently displayed. */
173
174 void
175 tui_refresh_all ()
176 {
177 struct tui_locator_window *locator = tui_locator_win_info_ptr ();
178
179 for (tui_win_info *win_info : all_tui_windows ())
180 {
181 if (win_info->is_visible ())
182 win_info->refresh_window ();
183 }
184 if (locator->is_visible ())
185 locator->refresh_window ();
186 }
This page took 0.037681 seconds and 4 git commands to generate.