1 /* TUI layout window management.
3 Copyright (C) 1998-2024 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/>. */
22 #ifndef TUI_TUI_LAYOUT_H
23 #define TUI_TUI_LAYOUT_H
28 #include "tui/tui-data.h"
29 #include "gdbsupport/iterator-range.h"
31 #include <unordered_map>
33 /* Values that can be returned when handling a request to adjust a
35 enum tui_adjust_result
37 /* Requested window was not found here. */
39 /* Window was found but not handled. */
41 /* Window was found and handled. */
45 /* The basic object in a TUI layout. This represents a single piece
46 of screen real estate. Subclasses determine the exact
52 DISABLE_COPY_AND_ASSIGN (tui_layout_base
);
54 virtual ~tui_layout_base () = default;
56 /* Clone this object. Ordinarily a layout is cloned before it is
57 used, so that any necessary modifications do not affect the
59 virtual std::unique_ptr
<tui_layout_base
> clone () const = 0;
61 /* Change the size and location of this layout. When
62 PRESERVE_CMD_WIN_SIZE_P is true the current size of the command window
63 is preserved, otherwise, the command window will resize just like any
65 virtual void apply (int x
, int y
, int width
, int height
,
66 bool preserve_cmd_win_size_p
) = 0;
68 /* Return the minimum and maximum height or width of this layout.
69 HEIGHT is true to fetch height, false to fetch width. */
70 virtual void get_sizes (bool height
, int *min_value
, int *max_value
) = 0;
72 /* True if the topmost (for vertical layouts), or the leftmost (for
73 horizontal layouts) item in this layout is boxed. */
74 virtual bool first_edge_has_border_p () const = 0;
76 /* True if the bottommost (for vertical layouts), or the rightmost (for
77 horizontal layouts) item in this layout is boxed. */
78 virtual bool last_edge_has_border_p () const = 0;
80 /* Return the name of this layout's window, or nullptr if this
81 layout does not represent a single window. */
82 virtual const char *get_name () const
87 /* Set the height of the window named NAME to NEW_HEIGHT, updating
88 the sizes of the other windows around it. */
89 virtual tui_adjust_result
set_height (const char *name
, int new_height
) = 0;
91 /* Set the width of the window named NAME to NEW_WIDTH, updating
92 the sizes of the other windows around it. */
93 virtual tui_adjust_result
set_width (const char *name
, int new_width
) = 0;
95 /* Remove some windows from the layout, leaving the command window
96 and the window being passed in here. */
97 virtual void remove_windows (const char *name
) = 0;
99 /* Replace the window named NAME in the layout with the window named
101 virtual void replace_window (const char *name
, const char *new_window
) = 0;
103 /* Append the specification to this window to OUTPUT. DEPTH is the
104 depth of this layout in the hierarchy (zero-based). */
105 virtual void specification (ui_file
*output
, int depth
) = 0;
107 /* Return a FINGERPRINT string containing an abstract representation of
108 the location of the cmd window in this layout.
110 When called on a complete, top-level layout, the fingerprint will be a
111 non-empty string made of 'V' and 'H' characters, followed by a single
112 'C' character. Each 'V' and 'H' represents a vertical or horizontal
113 layout that must be passed through in order to find the cmd
114 window. A vertical or horizontal layout of just one window does not add
115 a 'V' or 'H' character.
117 Of course, layouts are built recursively, so, when called on a partial
118 layout, if this object represents a single window, then either the
119 empty string is returned (for non-cmd windows), or a string
120 containing a single 'C' is returned.
122 For object representing layouts, if the layout contains the cmd
123 window then we will get back a valid fingerprint string (may contain 'V'
124 and 'H', ends with 'C'), or, if this layout doesn't contain the cmd
125 window, an empty string is returned. */
126 virtual std::string
layout_fingerprint () const = 0;
128 /* Add all windows to the WINDOWS vector. */
129 virtual void get_windows (std::vector
<tui_win_info
*> *windows
) = 0;
131 /* The most recent space allocation. */
139 tui_layout_base () = default;
142 /* A TUI layout object that displays a single window. The window is
144 class tui_layout_window
: public tui_layout_base
148 explicit tui_layout_window (const char *name
)
153 DISABLE_COPY_AND_ASSIGN (tui_layout_window
);
155 std::unique_ptr
<tui_layout_base
> clone () const override
;
157 void apply (int x
, int y
, int width
, int height
,
158 bool preserve_cmd_win_size_p
) override
;
160 const char *get_name () const override
162 return m_contents
.c_str ();
165 tui_adjust_result
set_height (const char *name
, int new_height
) override
167 return m_contents
== name
? FOUND
: NOT_FOUND
;
170 tui_adjust_result
set_width (const char *name
, int new_width
) override
172 return m_contents
== name
? FOUND
: NOT_FOUND
;
175 bool first_edge_has_border_p () const override
;
177 bool last_edge_has_border_p () const override
;
179 void remove_windows (const char *name
) override
183 void replace_window (const char *name
, const char *new_window
) override
;
185 void specification (ui_file
*output
, int depth
) override
;
187 std::string
layout_fingerprint () const override
;
189 /* See tui_layout_base::get_windows. */
190 void get_windows (std::vector
<tui_win_info
*> *windows
) override
192 if (m_window
!= nullptr && m_window
->is_visible ())
194 /* Only get visible windows. */
195 windows
->push_back (m_window
);
201 void get_sizes (bool height
, int *min_value
, int *max_value
) override
;
205 /* Type of content to display. */
206 std::string m_contents
;
208 /* When a layout is applied, this is updated to point to the window
210 tui_win_info
*m_window
= nullptr;
213 /* A TUI layout that holds other layouts. */
214 class tui_layout_split
: public tui_layout_base
218 /* Create a new layout. If VERTICAL is true, then windows in this
219 layout will be arranged vertically. */
220 explicit tui_layout_split (bool vertical
= true)
221 : m_vertical (vertical
)
225 DISABLE_COPY_AND_ASSIGN (tui_layout_split
);
227 /* Add a new split layout to this layout. WEIGHT is the desired
228 size, which is relative to the other weights given in this
230 void add_split (std::unique_ptr
<tui_layout_split
> &&layout
, int weight
);
232 /* Add a new window to this layout. NAME is the name of the window
233 to add. WEIGHT is the desired size, which is relative to the
234 other weights given in this layout. */
235 void add_window (const char *name
, int weight
);
237 std::unique_ptr
<tui_layout_base
> clone () const override
;
239 void apply (int x
, int y
, int width
, int height
,
240 bool preserve_cmd_win_size_p
) override
;
242 tui_adjust_result
set_height (const char *name
, int new_height
) override
244 /* Pass false as the final argument to indicate change of height. */
245 return set_size (name
, new_height
, false);
248 tui_adjust_result
set_width (const char *name
, int new_width
) override
250 /* Pass true as the final argument to indicate change of width. */
251 return set_size (name
, new_width
, true);
254 bool first_edge_has_border_p () const override
;
256 bool last_edge_has_border_p () const override
;
258 void remove_windows (const char *name
) override
;
260 void replace_window (const char *name
, const char *new_window
) override
;
262 void specification (ui_file
*output
, int depth
) override
;
264 std::string
layout_fingerprint () const override
;
266 /* See tui_layout_base::get_windows. */
267 void get_windows (std::vector
<tui_win_info
*> *windows
) override
269 for (auto &item
: m_splits
)
270 item
.layout
->get_windows (windows
);
275 void get_sizes (bool height
, int *min_value
, int *max_value
) override
;
279 /* Used to implement set_height and set_width member functions. When
280 SET_WIDTH_P is true, set the width, otherwise, set the height of the
281 window named NAME to NEW_SIZE, updating the sizes of the other windows
282 around it as needed. The result indicates if the window NAME was
283 found and had its size adjusted, was found but was not adjusted, or
284 was not found at all. */
285 tui_adjust_result
set_size (const char *name
, int new_size
,
288 /* Set the weights from the current heights (when m_vertical is true) or
289 widths (when m_vertical is false). */
290 void set_weights_from_sizes ();
292 /* Structure used when resizing, or applying a layout. An instance of
293 this structure is created for each sub-layout. */
296 /* The calculated size for this sub-layout. */
299 /* The minimum and maximum sizes for this sub-layout, obtained by
300 calling the get_sizes member function. */
304 /* True if this window will share a box border with the previous
305 window in the list. */
309 /* Used for debug, prints the contents of INFO using tui_debug_printf.
310 Only call this when the global debug_tui is true. */
311 static void tui_debug_print_size_info (const std::vector
<size_info
> &info
);
313 /* Used for debug, returns a string describing the current weight of each
315 std::string
tui_debug_weights_to_string () const;
319 /* The requested weight. */
322 std::unique_ptr
<tui_layout_base
> layout
;
326 std::vector
<split
> m_splits
;
328 /* True if the windows in this split are arranged vertically. */
332 /* Add the specified window to the layout in a logical way. This
333 means setting up the most logical layout given the window to be
334 added. Only the source or disassembly window can be added this
336 extern void tui_add_win_to_layout (enum tui_win_type
);
338 /* Set the initial layout. */
339 extern void tui_set_initial_layout ();
341 /* Switch to the next layout. */
342 extern void tui_next_layout ();
344 /* Show the register window. Like "layout regs". */
345 extern void tui_regs_layout ();
347 /* Remove some windows from the layout, leaving only the focused
348 window and the command window; if no window has the focus, then
349 some other window is chosen to remain. */
350 extern void tui_remove_some_windows ();
352 /* Apply the current layout. When PRESERVE_CMD_WIN_SIZE_P is true the
353 current size of the command window is preserved, otherwise, the command
354 window will resize just like any other window. */
355 extern void tui_apply_current_layout (bool);
357 /* Adjust the window height of WIN to NEW_HEIGHT. */
358 extern void tui_adjust_window_height (struct tui_win_info
*win
,
361 /* Adjust the window width of WIN to NEW_WIDTH. */
362 extern void tui_adjust_window_width (struct tui_win_info
*win
,
365 /* The type of a function that is used to create a TUI window. */
367 typedef std::function
<tui_win_info
* (const char *name
)> window_factory
;
369 /* The type for a data structure that maps a window name to that window's
371 typedef std::unordered_map
<std::string
, window_factory
> window_types_map
;
373 /* Register a new TUI window type. NAME is the name of the window
374 type. FACTORY is a function that can be called to instantiate the
377 extern void tui_register_window (const char *name
, window_factory
&&factory
);
379 /* An iterator class that exposes just the window names from the
380 known_window_types map in tui-layout.c. This is just a wrapper around
381 an iterator of the underlying known_window_types map, but this just
382 exposes the window names. */
384 struct known_window_names_iterator
386 using known_window_types_iterator
= window_types_map::iterator
;
388 known_window_names_iterator (known_window_types_iterator
&&iter
)
389 : m_iter (std::move (iter
))
392 known_window_names_iterator
&operator++ ()
398 const std::string
&operator* () const
399 { return (*m_iter
).first
; }
401 bool operator!= (const known_window_names_iterator
&other
) const
402 { return m_iter
!= other
.m_iter
; }
406 /* The underlying iterator. */
407 known_window_types_iterator m_iter
;
410 /* A range adapter that makes it possible to iterate over the names of all
411 known tui windows. */
413 using known_window_names_range
414 = iterator_range
<known_window_names_iterator
>;
416 /* Return a range that can be used to walk over the name of all known tui
417 windows in a range-for loop. */
419 extern known_window_names_range
all_known_window_names ();
421 #endif /* TUI_TUI_LAYOUT_H */