1 /* TUI layout window management.
3 Copyright (C) 1998-2021 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"
30 /* Values that can be returned when handling a request to adjust a
32 enum tui_adjust_result
34 /* Requested window was not found here. */
36 /* Window was found but not handled. */
38 /* Window was found and handled. */
42 /* The basic object in a TUI layout. This represents a single piece
43 of screen real estate. Subclasses determine the exact
49 DISABLE_COPY_AND_ASSIGN (tui_layout_base
);
51 virtual ~tui_layout_base () = default;
53 /* Clone this object. Ordinarily a layout is cloned before it is
54 used, so that any necessary modifications do not affect the
56 virtual std::unique_ptr
<tui_layout_base
> clone () const = 0;
58 /* Change the size and location of this layout. */
59 virtual void apply (int x
, int y
, int width
, int height
) = 0;
61 /* Return the minimum and maximum height or width of this layout.
62 HEIGHT is true to fetch height, false to fetch width. */
63 virtual void get_sizes (bool height
, int *min_value
, int *max_value
) = 0;
65 /* True if the topmost item in this layout is boxed. */
66 virtual bool top_boxed_p () const = 0;
68 /* True if the bottommost item in this layout is boxed. */
69 virtual bool bottom_boxed_p () const = 0;
71 /* Return the name of this layout's window, or nullptr if this
72 layout does not represent a single window. */
73 virtual const char *get_name () const
78 /* Adjust the size of the window named NAME to NEW_HEIGHT, updating
79 the sizes of the other windows around it. */
80 virtual tui_adjust_result
adjust_size (const char *name
, int new_height
) = 0;
82 /* Remove some windows from the layout, leaving the command window
83 and the window being passed in here. */
84 virtual void remove_windows (const char *name
) = 0;
86 /* Replace the window named NAME in the layout with the window named
88 virtual void replace_window (const char *name
, const char *new_window
) = 0;
90 /* Append the specification to this window to OUTPUT. DEPTH is the
91 depth of this layout in the hierarchy (zero-based). */
92 virtual void specification (ui_file
*output
, int depth
) = 0;
94 /* Add all windows to the WINDOWS vector. */
95 virtual void get_windows (std::vector
<tui_win_info
*> *windows
) = 0;
97 /* The most recent space allocation. */
105 tui_layout_base () = default;
108 /* A TUI layout object that displays a single window. The window is
110 class tui_layout_window
: public tui_layout_base
114 explicit tui_layout_window (const char *name
)
119 DISABLE_COPY_AND_ASSIGN (tui_layout_window
);
121 std::unique_ptr
<tui_layout_base
> clone () const override
;
123 void apply (int x
, int y
, int width
, int height
) override
;
125 const char *get_name () const override
127 return m_contents
.c_str ();
130 tui_adjust_result
adjust_size (const char *name
, int new_height
) override
132 return m_contents
== name
? FOUND
: NOT_FOUND
;
135 bool top_boxed_p () const override
;
137 bool bottom_boxed_p () const override
;
139 void remove_windows (const char *name
) override
143 void replace_window (const char *name
, const char *new_window
) override
;
145 void specification (ui_file
*output
, int depth
) override
;
147 /* See tui_layout_base::get_windows. */
148 void get_windows (std::vector
<tui_win_info
*> *windows
) override
150 windows
->push_back (m_window
);
155 void get_sizes (bool height
, int *min_value
, int *max_value
) override
;
159 /* Type of content to display. */
160 std::string m_contents
;
162 /* When a layout is applied, this is updated to point to the window
164 tui_win_info
*m_window
= nullptr;
167 /* A TUI layout that holds other layouts. */
168 class tui_layout_split
: public tui_layout_base
172 /* Create a new layout. If VERTICAL is true, then windows in this
173 layout will be arranged vertically. */
174 explicit tui_layout_split (bool vertical
= true)
175 : m_vertical (vertical
)
179 DISABLE_COPY_AND_ASSIGN (tui_layout_split
);
181 /* Add a new split layout to this layout. WEIGHT is the desired
182 size, which is relative to the other weights given in this
184 void add_split (std::unique_ptr
<tui_layout_split
> &&layout
, int weight
);
186 /* Add a new window to this layout. NAME is the name of the window
187 to add. WEIGHT is the desired size, which is relative to the
188 other weights given in this layout. */
189 void add_window (const char *name
, int weight
);
191 std::unique_ptr
<tui_layout_base
> clone () const override
;
193 void apply (int x
, int y
, int width
, int height
) override
;
195 tui_adjust_result
adjust_size (const char *name
, int new_height
) override
;
197 bool top_boxed_p () const override
;
199 bool bottom_boxed_p () const override
;
201 void remove_windows (const char *name
) override
;
203 void replace_window (const char *name
, const char *new_window
) override
;
205 void specification (ui_file
*output
, int depth
) override
;
207 /* See tui_layout_base::get_windows. */
208 void get_windows (std::vector
<tui_win_info
*> *windows
) override
210 for (auto &item
: m_splits
)
211 item
.layout
->get_windows (windows
);
216 void get_sizes (bool height
, int *min_value
, int *max_value
) override
;
220 /* Set the weights from the current heights. */
221 void set_weights_from_heights ();
225 /* The requested weight. */
228 std::unique_ptr
<tui_layout_base
> layout
;
232 std::vector
<split
> m_splits
;
234 /* True if the windows in this split are arranged vertically. */
237 /* True if this layout has already been applied at least once. */
238 bool m_applied
= false;
241 /* Add the specified window to the layout in a logical way. This
242 means setting up the most logical layout given the window to be
243 added. Only the source or disassembly window can be added this
245 extern void tui_add_win_to_layout (enum tui_win_type
);
247 /* Set the initial layout. */
248 extern void tui_set_initial_layout ();
250 /* Switch to the next layout. */
251 extern void tui_next_layout ();
253 /* Show the register window. Like "layout regs". */
254 extern void tui_regs_layout ();
256 /* Remove some windows from the layout, leaving only the focused
257 window and the command window; if no window has the focus, then
258 some other window is chosen to remain. */
259 extern void tui_remove_some_windows ();
261 /* Apply the current layout. */
262 extern void tui_apply_current_layout ();
264 /* Adjust the window height of WIN to NEW_HEIGHT. */
265 extern void tui_adjust_window_height (struct tui_win_info
*win
,
268 /* The type of a function that is used to create a TUI window. */
270 typedef std::function
<tui_win_info
* (const char *name
)> window_factory
;
272 /* Register a new TUI window type. NAME is the name of the window
273 type. FACTORY is a function that can be called to instantiate the
276 extern void tui_register_window (const char *name
, window_factory
&&factory
);
278 #endif /* TUI_TUI_LAYOUT_H */